Site logo

Archived topic

How Do I edit the Side bar widget separately from the footer widget

3 replies · Started by Jude on July 20, 2019

Viewing posts 1–4 of 4

How do I edit my side widget separately from the footer widget?

I need to edit the widget title and Underline it.

I also want to also need to edit some features as shown in this image
http://prntscr.com/ohvu44

Hi there,

Try this for underline widget title:

.sidebar h2.widget-title {
    text-decoration: underline;
    text-decoration-color: yellow;
}

I'm not sure what you are referring to #2 and #3. Can you explain a bit?

Let me know :)

I have taken care of #3 and #4.

Please also include CSS to adjust the line colour and thickness. Thank you

We would need to use border property instead of text-decoration:

.sidebar h2.widget-title {
    border-bottom: 2px solid #000;
    display: inline-block;
}
This archived topic is closed to new replies.