A few weeks back I learnt CSS, and have heard many people say that if you can code HTML/CSS you can pretty much make a WordPress theme Just to test that I decided to apply my knowledge to recreating a Wordpress theme to see if I can make then, and it turns out I can I'm almost finished, but have one problem in the sidebar In WP on the sidebar, a few of the functions go like so: <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : wp_list_bookmarks('title_after=&title_before'); wp_list_categories('title=_li' . __('Categories:')); ?> etc... For the rest of the sidebar I had styled my h3's and am using them for the title of each item (e.g sponsors, search etc), but I don't know how I can remove that first li or ul and replace it with a heading, because I can't add heading tags into php code. Look at the image and see what I'm talking about here If you were able to follow what I said (I think it didn't make much sense) do you have any ideas how to fix this? Any WP coders out there?