• Hi,

    I would like to use a text widget next to other widgets, but I just realized that in the text widget there is no divider between title and content of the widget.

    Is there a way to insert this divider (like it is in other widgets)?
    Thanks and best regards!

Viewing 1 replies (of 1 total)
  • Hi there,

    You could add a divider below the title using some custom CSS.

    To add custom CSS, firstly set up a child theme or activate a custom CSS plugin. If you have Jetpack installed then you can enable its custom CSS module.

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    .footer-widget-area .widget-title {
        border-bottom: 1px solid #4f4f4f;
        padding-bottom: 10px;
    }

    You can experiment with different values in the CSS, also. For example, the colour of the border can be changed from #4f4f4f to any HEX colour code of your choice.

    Let me know how you get on with that or if any extra questions come up. ??

Viewing 1 replies (of 1 total)
  • The topic ‘Text Widget – Divider line below widget title missing’ is closed to new replies.