• I searched around but surprisingly couldn’t find someone addressing this topic. Usually it was the opposite problem: (removing bullets) from a different widget.

    Anyway here is my site: http://www.thecanadaguide.com/?page_id=82

    The text of the text widget in the sidebar (“Quick Facts”) has proper ul coding in it, but as you can see, the bullets do not appear on the actual page. What do I need to add?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • the bullets are suppressed by:

    #rightbar ul li {
    	margin: 0;
    	padding: 0;
    	line-height: 18px;
    	list-style-type: none;
    }

    to get them back, add for example something like this to the bottom of style.css:

    #rightbar .textwidget ul li { list-style-type: disc; margin-left: 10px; }

    Thread Starter filibuster

    (@filibuster)

    Awesome! Thanks a ton Alchymyth. Just wanted to note that I’ve found your posts in other threads to be incredibly useful as well!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding bullet points to sidebar text widget’ is closed to new replies.