Site logo

Archived topic

How to set font size of the side bar title?

5 replies · Started by Juned on January 20, 2022

Viewing posts 1–6 of 6

Hi,

How do I set the font size of the right side bar title "Random Products/Services"? It's moving to 2nd line.

Link 1 is screenchot for your ready reference.
Link 2 is the live single product page.

Thanks and Regards,

Juned

Thanks.

Can you provide me css for underline for those side bar titles?

You can try this CSS if you want each character in a text string to have underline.

.widget-title {
    text-decoration: underline;
}

This means, even if the text wraps in 2 lines, all the texts will still have underline.

but if you want the element itself to have some sort of a line below the title, you can go w/ border-bottom.

Example:

.widget-title {
    border-bottom: 2px solid black;
}

Thanks Elvin.

No problem. :D

This archived topic is closed to new replies.