My question (I’m not a web coder) , is there any way to activate the .li .ol and .ul css tags back ? I know I can use "Custom CSS" , but what to fill in that box .
I'll help you out with that line. I just need to know specifically what about the list you want to change. For example, do you just want standard bullet points for this list or something else?
Thanks for the reply. No 'specific' feature needed. Just the fact when I use bullets or numbered list into the Worpress editor it produce bullets or numbers in front of the line. (at least for and tags).like that
list-style is actually controls list-style-type and a number of other elements so the former actually gives you a little more control over the list. Both ways should work (tested on our server), but list-style will let you control more elements of the list.
ul { list-style: disc; } ol { list-style: numeric; }
To get bulleted text in one of my tabs, and it solves the problem of not getting bullets there,. However this also puts bullets in front of other elements, such as the categories in the portfolio, the social icons in the team page, etc.