• Resolved riyadenn

    (@riyadenn)


    How to customize alx widget title like change font size, center align, make a box background shape?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi riyadenn. There is more than one “alx” widget. As an example you could replace the AlxPosts widget title using this css:

    /* replace AlxPosts title */
    .widget_alx_posts > h3 {
      visibility: hidden;
    }
    .widget_alx_posts > h3:after {
      content: "My Widget Title";
      visibility: visible;
      display: block;
      font-size: 24px;
      text-align: center;
      margin-top: -30px;
    }
    Thread Starter riyadenn

    (@riyadenn)

    Thank you again, bdbrown.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Customize Alx Widget Title’ is closed to new replies.