hello, here is the link to the website I am trying to build http://www.paranormalknowledge.com/plus/ I would like to center all those menus that you see hovering to the right and at the top, I would like to remove all the text and replace it with a logo. I had with this thread the code to the template.css file. Please let me know if you need anything else to help me out.
First off to get the links centered you need to make some changes in your style.css file. #menu_items { float:right; <---REMOVE width:800px; <---REMOVE text-align: center; } #menu_items li { float:right: <---REMOVE padding: 0 0 0 0; } Change both of those classes to what I have listed above. Then to remove the text for your logo and change it to an image you will have to open up probably the header.php file inside of your WordPress theme's directory. Inside of that look for..... <div id="header_title"> <h1> <?php bloginfo('name'); ?> <?php bloginfo('description'); ?> </h1> </div> or something similar, it may be a little bit different. This is what is displaying the text. So remove the PHP code tags and just stick an <img> tag in there with your image.