Wordpress Sidebar Unordered List Dot Error - Need fix

by 3 replies
5
The Problem:

Inserted a new sidebar to wordpress theme - cool and easy.

But right now i have this small dot - the unordered list dot - in every widget i use.






The code:

Code:
<div id="sidebar">
	<li id="text-3" class="widget widget_text"><h2 class="widgettitle">Testimonials</h2>

Any idea to fix this people?
#programming #dot #error #fix #list #shows #sidebar #unordered #wordpress
  • You'll need to look at your theme's CSS - specifically anything related to the ul, li, #text-3, .widget or .widget_text classes.

    One (or more) of those will require the list-style-type: none; attribute.
    • [ 1 ] Thanks
  • Just thought i'd point out even though it'll probably not affect your layout, but may affect cross-browser reliability.

    an unordered list is done as follows:

    What you seem to be doing is:

    That's not really right.

    But in any case, placing the following at the bottom of your style.css stylesheet should solve the problem:

    • [ 1 ] Thanks
  • Thanks guys, problem solved.

    Over and out.

Next Topics on Trending Feed