make sure your theme has a style.css;
try to change this:
<link rel="stylesheet" type="text/css" href="psd2css.css" media="screen" />
into this:
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
or into this:
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_directory' ); ?>/psd2css.css" />
this assumes that ‘psd2css.css’ is in this location /wp-content/themes/yourthemename/psd2css.css
Thank you! It worked. My headache is going away already!
🙁 Any idea why the CSS is only partially loading? Is it the stylesheet? Thanks.
http://mpoweryourbusiness.com/
not quite sure what you mean, however, there are images in the html that may need to be called using the absolute file path to the image:
so instead:
<div id="Layer-1" class=" footer empty">
<img src="images/Layer-1.png" alt="_footer_empty" class="pngimg" width="1024" height="54">
try:
<div id="Layer-1" class=" footer empty">
<img src="<?php bloginfo('template_directory'); ?>/images/Layer-1.png" alt="_footer_empty" class="pngimg" width="1024" height="54">
http://codex.wordpress.org/Function_Reference/bloginfo
That did it…you’ve been a huge help. Thanks!