Get rid of border in horizontal list
-
Using wp_list_categories to make a horizontal menu bar at the top of my site. So I have:
<ul id="nav-cat" class="clearfloat"> <?php wp_list_categories('title_li=''); ?> </ul>
The problem is that I have what looks like a dotted border after every category. I really want to get rid of it, or at the very least, the last border because it looks silly. Tried doing it with css but nothing seems to work
#nav-cat, #nav-cat li, #nav cat a, #nav-cat ul { border:none; }
has no effect.
Any ideas how to get rid of the border?
My site is KZBlogn in case you want to look at what I mean.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Get rid of border in horizontal list’ is closed to new replies.