Body CSS Bug?
-
Hi all,
first off, I am very new to wordpress (but not html/css), so please correct me if I am wrong. I believe I have found a bug. In my header.php, I called two css sheets as such:
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/css/reset.css" media="screen" /> <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" media="screen" />
This loaded my reset.css sheet first, then my style.css – or so I thought. I noticed a problem when my background image wasn’t coming in as defined in my body tag from style.css. I tracked it to the reset.css, and found that simply calling the stylesheet at all prevented my style.css body tag from loading (e.g. even after removing any body definitions in reset.css). Changing the order didnt help.
My current workaround is defining what would normally go in my style.css for body in my reset.css. Is this a bug? Thanks
- The topic ‘Body CSS Bug?’ is closed to new replies.