go41

the info you need to know


von Joern
Keine Kommentare

you are quite in the right place in style.css but you use font-color instead of the correct 'color'start here:#page-bar a:hover { text-decoration:none; display:block;font-color:#000000; }and change to:#page-bar a:hover { text-decoration:none; display:block; color:#000000; }this should change almost all text to white on…


von Joern
Keine Kommentare

you could duplicate the pages list in footer.php by copy all ul /ul stuff from header.php to footer.phpPut it below the line div id="front-popular" above div id="recentpost" like this:Code:<div id="front-popular" class="clearfloat"><ul id="page-bar" class="left clearfloat"><li><a href="<?php echo get_option('home'); ?>/">Home</a></li><?php wp_list_pages('sort_column=menu_order&title_li='); ?></ul><div…