[HELP] Website Not Loading Properly in Internet Explorer

Status
Not open for further replies.

coolboyz2323

Active Member
1,798
2011
639
125
Hello,

i need someone who can help me to fix this!

site loads good in FF, CHROME but sucks when opened in IE :facepalm:

H9Z22.jpg


Any Help Please?

Thanks!

PS: Site Link - www.cb-gfx.com [Its HTML not wordpress]
 
15 comments
Maybe this thing helps!

edit .htaccess file and then add the following code,

Code:
# Turn on Expires and set default to 0
ExpiresActive On
ExpiresDefault A0

# Force no caching for dynamic files
<FilesMatch "\.(php|cgi|pl|htm|html)$">
ExpiresActive Off
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
Header set Pragma "no-cache"
</FilesMatch>
 
Why don't you move this:

Code:
                        <h1>

						<a href="./index.html">

                                <img src="./images/tp.png" alt="image" />

                                                          

                            </a>

                        </h1>
Right after opening the header tag? Probably you'll need to give it a higher z-index too.
 
Thanks mate i will surely giv3 it a go & let u know <3

---------- Post added 25th Mar 2012 at 05:37 AM ---------- Previous post was 24th Mar 2012 at 12:55 PM ----------

@Apathetic,

Not Worked ! :/
Hi,
i tried Apathetic's fix on my localhost. it works well in IE 8 and 7.
use this code in your head
Code:
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
 
Hi,
i tried Apathetic's fix on my localhost. it works well in IE 8 and 7.
use this code in your head
Code:
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

Thanks for fixing it! <3

Thanks Appy too :) i guess i was doing it wrong way :)

Thanks WJ for fixing it for me <3
 
Status
Not open for further replies.
Back
Top