Okey first I wanna say I don't know if this is a CSS problem so I post it here. Well, I'm new with Wordpress and I'm making my first wordpress theme. The problem is as you can see, on the list (right side) Blogroll there's dots at the left side of them that looks terribly ugly. How can I remove them? (also blogroll heading is outputed as h1 instead of h2 as I want) I don't know if it has anything to do with my CSS or some WP settings.. I've tried it all.. And another thing, you see the "Categories" list. There are things under them that shows like how many posts is in there, how do I remove them? EDIT: Forgot link http://www.tutsrus.com/wordpress/ / thanks in advance, Mooseman
frankcow said: you have to set the list-style:none for those <li>'s Means you can override this in the sidebar even if you have it as none in css. Col
You haven't defined the class "rightlist" to the blogroll ul. That's why it's the only ul that is still showing the list-style-type.
I know, but it doesn't make any difference. I've defined the class "rightlist" to the blogroll now. But if you look at the source code, it outputs as this: <ul class="rightlist"> <li id="linkcat-1"><h2>Blogroll</h2> <ul> <li><a href="http://www.alexking.org/">Alex</a></li> <li><a href="http://blogs.linux.ie/xeer/">Donncha</a></li> <li><a href="http://dougal.gunters.org/">Dougal</a></li> <li><a href="http://photomatt.net/">Matt</a></li> <li><a href="http://zengun.org/weblog/">Michel</a></li> <li><a href="http://zed1.com/journalized/">Mike</a></li> <li><a href="http://boren.nu/">Ryan</a></li> </ul> </li> </ul> Code (markup): You see.. it just makes an ul outside the ul.. There gotta be a way to define that in the "<?php get_links_list(); ?>" ? And is there a way to change so it outputs the header as h1 instead of h2?
Unless there's a reason for you making the list-style-type:none specific to that class, you could always apply that css style to #rightcolumn and it would trickle its way down to all of the other lists. I'm not too good with PHP so I get lost when trying to figure out how the html is generated from the commands.
Thanks man, I got the problem solved by doing what you said. Just got a few other problems left til it's done though