I want to assign a new CSS class to default <ul>
widget in Page/Post creating page in wordpress. How can I do this?
See the image below.
I want to assign a new CSS class to default <ul>
widget in Page/Post creating page in wordpress. How can I do this?
See the image below.
You must be logged in to post a comment.
All you have to do is create and upload a new style rule for the
<ul>
with the class name you want to assign to it in yourthemes/themename/style.css
.Example
Then add in a HTML list using the “Text” view on the editor.
Example
You can also hard code styles if you want a quick fix:
<ul style="list-style-type: disc;">