Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

IE CSS troubleshooting problems in wordpress

Hey Folks,

I've a small CSS query .in IE8 image of wordpress are not showing properly . there are red X marks on the pages.here is the screenshot

http://touchstore.specbee.com/wp-content/uploads/2013/05/Doc1.docx

Can any buddy please let me know the commen reason for this and how to fix this?

And also did Metro style themes will work fine in IE8 or older version ?? because my website is not presenting properly in IE8 at 1024*768 display .i'm using Metro style theme .the site is

http://touchstore.specbee.com/ Nick Pettit

2 Answers

Nick Pettit
STAFF
Nick Pettit
Treehouse Teacher

Hi gopinath para,

This looks like an issue with image paths. Have you checked in other browsers? I would imagine the images are not showing up there, either.

Try looking at each file path, and then tracing the directory structure using the path as your guide. If you don't find the images where they should be, or the images aren't named properly, then you'll know what to fix. :)

If you're still having trouble, feel free to post your code here. Myself and other Treehouse students and teachers would be happy to help!

I think the image paths are correct Because if you open

http://touchstore.specbee.com/wp-content/uploads/2013/04/Touchstore_rx.jpg you will find the image .

And also this problems are only with IE8 ANd IE7 .in remaining All browsers including IE9 &IE10 website is working fine.is there any way to Make my default website presentation is as per IE10 version standers even the visitor opened website in older versions. is there any code in php to set the website presentation standards to IE10 even if he is coming from IE8 version .I using this php code in my Index.php

<?php if (strpos($_SERVER['HTTP_USER_AGENT'],"MSIE 8")) { header("X-UA-Compatible: IE=10");} ?>

Does this making sence ? I'm not sure :) Nick Pettit Zac Gordon