go41

the info you need to know


von Joern
Keine Kommentare

Using WordPress 3.0.1 I just copied the source code of FireFox. For an embeded video the code looks like this with the function above in functions.php<object width="450" height="363"><param name="movie" value="http://www.youtube.com/v/wLph9-ZkMX8&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/wLph9-ZkMX8&fs=1" type="application/x-shockwave-flash" width="450" height="363"…


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…


von Joern
Keine Kommentare

I can see the problem in IE, looks like a missing /div. It is a missing </object> I would say, you have (in source code)Code:<div id="headlinevideo"><object width="480" height="295">....<embed src=....</embed></div>It should look like this with closing /object before the /div:Code:<div id="headlinevideo"><object…