Search code examples
wordpressstylesdefault

WordPress styling working on default page, but not specific post page


So, I have this WordPress blog.

My latest post has some html and css styling. It works fine on the default page...but click the post from the left menu bar and all my styling disappears...What gives? It appears my images are not loading...do I need to change the file path?

<div class="GlobeContainer">
   <div class="circle" id="circle">
      <img class="snowfall" src="images/SnowfallMidground.png" alt="snow" />
   </div>
   <img src="images/snowglobe.jpg" alt="snow globe" />
</div>

It appears my spans in the blog post are being styled to green and blue as expected, so it must be an issue with the location of the image...


Solution

  • Add full path for every images

    <div class="GlobeContainer">
      <div id="circle2" class="circle"><img alt="snow" src="http://jordanphillipcarter.com/wordpress/images/SnowfallMidground.png" class="snowfall"></div>
      <p><img alt="snow globe" src="http://jordanphillipcarter.com/wordpress/images/snowglobe.jpg"></p>
    </div>