UL style: can it be made default?

Dear Colorlib Developers
We love the new theme!
We would like the UL items to be in the same font style, size and color as the main text
Example attached.
Could you please let us know how to do this?
Many thanks!
Team Red Dot

URL: http://blog.reddot.mu (see just after photo: starting a UL bullet list changes font, color and size: did not intend that! :slight_smile:

hey there

Hope you are having a good day and thank you for your question :slight_smile:
Please add this CSS in appearance - customize - additional CSS

ul.postList {
    color: #383838;
    font-family: 'Rasa';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 11px;
    margin-bottom: 11px;
    padding-top: 6px;
    padding-bottom: 6px;
    text-decoration: none;
    text-transform: none;
}

Thanks!
Colorlib Support Team

Dear Colorlib support team!
That worked brilliantly, thank you!
(QQ: if I change font in the Wysiwyg editor standard text for a different post, does that mean I am stuck with this ul.postList style for that post? Is there a way to tell wordpress to default to the (p) style for (ul) ?)
Best wishes
Team Red Dot

If you change font style in Wysiwyg editor it will not take style defined with custom css, so, not change style with Wysiwyg :slight_smile:

I see. Thanks for clarifying that!
Bad news :frowning: The (ul) is back to the old formatting, even though the Custom CSS code is still in place: please see the (ul) at http://blog.reddot.mu (scroll just after the first photo)
Am I doing something wrong?

Hi,

Give it a postList class like this,

<ul class="postList">
<li> ... </li>
</ul>

So that the Custom CSS will take effect.

Let us know,

Thanks,
laranz.