Website with IE not working
#1
Posted 22 December 2010 - 12:10 PM
I think this is quite common with IE on websites. But when i preview my website on IE it comes out different and a little messed up.
Is there a way i can fix it. It works on Firefox, Crome and Opera.
#2
Posted 22 December 2010 - 12:28 PM
Post the website link or code snippets and screenshots of what is messing up in IE, and ill try help
#4
Posted 22 December 2010 - 12:58 PM
This post has been edited by MikeChipshop: 22 December 2010 - 12:59 PM
#5
Posted 22 December 2010 - 01:27 PM
Sorting out your errors will go a long way to making it work in all browsers
(I'm assuming it is an html site?)
This post has been edited by NeRo: 22 December 2010 - 01:28 PM
#6
Posted 26 January 2011 - 11:59 AM
#7
Posted 26 January 2011 - 12:38 PM
http://validator.w3....t+automatically)&doctype=Inline&ss=1&outline=1&group=0&user-agent=W3C_Validator/1.1
you've certainly got a few issues going on
#8
Posted 26 January 2011 - 04:55 PM
zed, on 26 January 2011 - 12:38 PM, said:
http://validator.w3....t+automatically)&doctype=Inline&ss=1&outline=1&group=0&user-agent=W3C_Validator/1.1
you've certainly got a few issues going on
Ok well i cant find anything on there error wise i clicked onto that links.
And will it sort my problem?
#9
Posted 26 January 2011 - 04:55 PM
zed, on 26 January 2011 - 12:38 PM, said:
http://validator.w3....t+automatically)&doctype=Inline&ss=1&outline=1&group=0&user-agent=W3C_Validator/1.1
you've certainly got a few issues going on
Ok well i cant find anything on there error wise i clicked onto that links.
And will it sort my problem?
#11
Posted 26 January 2011 - 05:07 PM
#12
Posted 26 January 2011 - 05:10 PM
zed, on 26 January 2011 - 05:07 PM, said:
ok well i'll see whats there im away from home so i can do the website.
But will those errors on the content area will be fixed?/
#14
Posted 26 January 2011 - 05:24 PM
your code has background:url(images/middle_area.gif)repeat-y;
Try sticking a space in between the ) and repeat-y;
#15
Posted 26 January 2011 - 06:13 PM
zed, on 26 January 2011 - 05:24 PM, said:
your code has background:url(images/middle_area.gif)repeat-y;
Try sticking a space in between the ) and repeat-y;
Yes thanks, im new to websites anyway there will be loads of errors ill fix it when i get back
#16
Posted 26 January 2011 - 06:31 PM
If you're new don't fall into the trap that others do and blame IE. All browsers have differences and most of the time the issues are down to the code, nothing else.
#17
Posted 27 January 2011 - 11:21 AM
zed, on 26 January 2011 - 06:31 PM, said:
If you're new don't fall into the trap that others do and blame IE. All browsers have differences and most of the time the issues are down to the code, nothing else.
yes I am useing php includes.
#19
Posted 28 January 2011 - 08:58 PM
#20
Posted 28 January 2011 - 09:02 PM
In your PHP Include files you don't need to load the CSS, you only need to do that once. At the moment you're loading it with every include.
#21
Posted 28 January 2011 - 10:03 PM
zed, on 28 January 2011 - 09:02 PM, said:
In your PHP Include files you don't need to load the CSS, you only need to do that once. At the moment you're loading it with every include.
What you mean by that ^^^^
and i want the auto in the footer because i want to it to fit for all screens
This post has been edited by Vulcan: 28 January 2011 - 10:06 PM
#22
Posted 28 January 2011 - 10:39 PM
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Guildford Rowing</title> <link rel="stylesheet" type="text/css" href="[url="http://www.guildfordrowingclub.org.uk/style.css"]style.css[/url]"/> <link type="text/css" href="[url="http://www.guildfordrowingclub.org.uk/menu.css"]menu.css[/url]" rel="stylesheet" /> <script type="text/javascript" src="[url="http://www.guildfordrowingclub.org.uk/jquery.js"]jquery.js[/url]"></script> <script type="text/javascript" src="[url="http://www.guildfordrowingclub.org.uk/menu.js"]menu.js[/url]"></script> </head> <body>
This should only happen once in a page at the beginning, Also remove
</body></html>as this should only happen once at the end of a page.
Remove the former from anything but the first include and remove the later from anything except the very end include.
#23
Posted 28 January 2011 - 10:44 PM
MikeChipshop, on 28 January 2011 - 10:39 PM, said:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Guildford Rowing</title> <link rel="stylesheet" type="text/css" href="[url="http://www.guildfordrowingclub.org.uk/style.css"]style.css[/url]"/> <link type="text/css" href="[url="http://www.guildfordrowingclub.org.uk/menu.css"]menu.css[/url]" rel="stylesheet" /> <script type="text/javascript" src="[url="http://www.guildfordrowingclub.org.uk/jquery.js"]jquery.js[/url]"></script> <script type="text/javascript" src="[url="http://www.guildfordrowingclub.org.uk/menu.js"]menu.js[/url]"></script> </head> <body>
This should only happen once in a page at the beginning, Also remove
</body></html>as this should only happen once at the end of a page.
Remove the former from anything but the first include and remove the later from anything except the very end include.
Ok Im confused. there is only one Head and Body in my index page and yes i have includes one for header, one for menu and one for footer.
Or do you mean the included files i only make it showing the divs
This post has been edited by Vulcan: 28 January 2011 - 10:45 PM
#24
Posted 28 January 2011 - 10:46 PM
#25
Posted 28 January 2011 - 10:56 PM
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Guildford Rowing</title> <link rel="stylesheet" type="text/css" href="style.css"/> <link type="text/css" href="menu.css" rel="stylesheet" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="menu.js"></script> </head> <body>
the index will have the content etc
#26
Posted 28 January 2011 - 10:57 PM
#28
Posted 28 January 2011 - 11:03 PM
If your puzzle/index already has a piece of sky and so does one of your pieces/include then the puzzle won't go together.
#29
Posted 28 January 2011 - 11:10 PM
MikeChipshop, on 28 January 2011 - 11:03 PM, said:
If your puzzle/index already has a piece of sky and so does one of your pieces/include then the puzzle won't go together.
ok ill do what i think you mean i find it hard to understand sometimes
#31
Posted 28 January 2011 - 11:18 PM
Help



















