Widget (Side Bar) Font Size

Is there any way to adjust the font size and font color on the Side Bar for the widgets that appear there?

Thank you.

Hello Pati

Hope you are having a good day and thank you for your question :slight_smile:

Please add this CSS in appearance - customize - additional CSS

#secondary p {
font-size: 15px;
color: red;
font-weight: 400;
}

Thanks!
Colorlib Support Team

Thank you kindly!
How do I add a code for making the text Italics?

Hi There,

Thanks for the follow-up.

To make the font italics, you need to use the font style option as below.

#secondary p {
font-style: italic;
}

Hope this helps.

Perfect. It worked. Thank you.

For the color, you just put “RED”, but I would like it to be another color like a #995ea6 coded color, but when I tried that, it just appears as black.

Hello Patti

This is how your code looks like:

#secondary p {
font-size: 10px;
color: 995ea6;
font-weight: 500;
}

It should be like this:

#secondary p {
font-size: 10px;
color: #995ea6;
font-weight: 500;
}

Ohhhhh! Got it! Thank you so much!

You are welcome Patty :slight_smile:

I will close this case but you are free to open new tickets