Hi,
I added wp_head() in the header and then it broke things. I tried to fix the style sheet here and there but still couldn't figure out what's wrong. I really want wp_head() to work out because without it some plug-ins give me problems.
===================================
<head>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<style type="text/css">
.story .details .read-on{ background:url(<?php bloginfo('stylesheet_directory'); ?>/images/readon_black.gif) 100% 60% no-repeat; }
#comments .pingback cite .author{ background:url(<?php bloginfo('stylesheet_directory'); ?>/images/trackback_pingback.gif) 100% 0 no-repeat; }
#footer .inside{ background:url(<?php bloginfo('stylesheet_directory'); ?>/images/footer_black.gif) 50% 0 repeat-x; ?>
</style>
<?php wp_head(); ?>
</head>
======================================
Here is before and after:
http://www.wangentz.org/pic/before.tiff
http://www.wangentz.org/pic/after.tiff
Any help will be greatly appreciated. Thanks.