A client has asked me to add bullet points to the custom menus in the right sidebar, I can't seem to get the CSS to work correctly.
Any chance someone could show me how to do it properly, so I can see where I'm going wrong!?
Thanks
http://www.forexuseful.com/
dianem326
Member
Posted 11 months ago #
Run your CSS through a validator, like W3C. You have many errors in it. Then maybe it will work properly.
http://www.w3schools.com/css/
you are not clear about css class and css id:
http://www.w3schools.com/css/css_id_class.asp
list style items need space to show; the theme resets that to 0 at the beginning, you need to add it back:
http://www.w3schools.com/Css/css_list.asp
example:
ul#menu-latest-newsletters { list-style-type: circle; margin-left:20px }
Thanks for the replies :-)