This is a discussion on "bad coding... only works in IE" within the Web Page Design section. This forum, and the thread "bad coding... only works in IE are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
bad coding... only works in IE
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
Right i have a large problem in the fact that i cant
get my dumb porfolio to work in FF (and probably any other browser - bar IE - my pc doesn't let them work though so i cant test thoroughly) the selection window wobbles around in IE and just totally messes up in FF. NOTE: I adapted this from the CSS Play tutorial posted somewhere around this forum here's the link to my portfoilio and the CSS is here Thanks, Dapandyman. Last edited by Dapandyman; Dec 16th, 2006 at 16:40. |
|
|
|
#2
|
|||
|
|||
|
Re: bad coding... only works in IE
the gallery in CCS Play is here:
http://www.cssplay.co.uk/menu/gallery.html |
|
#3
|
|||
|
|||
|
Re: bad coding... only works in IE
Start by sorting out your invalid html code, then you will have a basis to work on.
|
|
#4
|
|||
|
|||
|
theres still three things making my html invalid:
2 are inflicted by my (rubbish) hosts freewebs. 1 is that Quote:
|
|
#5
|
|||
|
|||
|
Re: bad coding... only works in IE
Why do you have div tags and other content OUTSIDE the html tag? You've got code, and THEN you start the html and head tag, put your code inside the proper tags, not above them
|
|
#6
|
|||
|
|||
|
Re: bad coding... only works in IE
thats very true but it comes up with more validation errors
screw that ill put the code right - no matter what the validation says, Thanks, Dapandyman. |
|
#7
|
|||
|
|||
|
Re: bad coding... only works in IE
Yeah keep the code properly as it should be, the errors even though there are more, will actually be solveable, the ones beforehand were just gobblygook because your code wasnt even in the body, what errors are coming up and i'll help you out, take some screenies of the validation errors or paste them in here
|
|
#8
|
|||
|
|||
|
Re: bad coding... only works in IE
Did u put ur code right? There is still a mess there
<title>.::Portfolio - Graphics::.</title> <link rel=stylesheet href="style.css" type="text/css"> <div id="navcontainer"> <ul id="navlist"> <li><a href="index.htm">Home</a></li> <li><a href="wport.html">Web Portfolio</a></li> <li><a href="gport.html">Graphics Portfolio</a></li> <li><a href="about.html">About Us</a></li> <li><a href="contact.html">Contact</a></li> </ul> </div> <html> <head> <title></title> <link rel="stylesheet" type="text/css" href="gport.css"> </head> <body> check it |
|
#9
|
|||
|
|||
|
Re: bad coding... only works in IE
no - i didnt get the chance...
computer go bye-bye..... |
|
#10
|
|||
|
|||
|
Re: bad coding... only works in IE
done that now looks like this:
<html> <head> <title>.::Portfolio - Graphics::.</title> <link rel=stylesheet href="style.css" type="text/css"> <div id="navcontainer"> <ul id="navlist"> <li><a href="index.htm">Home</a></li> <li><a href="wport.html">Web Portfolio</a></li> <li><a href="gport.html">Graphics Portfolio</a></li> <li><a href="about.html">About Us</a></li> <li><a href="contact.html">Contact</a></li> </ul> </div> <link rel="stylesheet" type="text/css" href="gport.css"> </head> <body> |
|
#11
|
|||
|
|||
|
Re: bad coding... only works in IE
If you get the chance, do it and then show us the types of errors you get
|
|
#12
|
|||
|
|||
|
Re: bad coding... only works in IE
Quote:
|
|
#13
|
|||
|
|||
|
Re: bad coding... only works in IE
ok validation has come up with the following problems:
|
|
#14
|
|||
|
|||
|
Re: bad coding... only works in IE
also there are 2 errors made by freewebs:
|
|
#15
|
|||
|
|||
|
Re: bad coding... only works in IE
i think the first error means i have to put all the css links in the body.
i don't know what's happening with the second one - as you can see, there's already an open 'head' tag... |
|
#16
|
|||
|
|||
|
Re: bad coding... only works in IE
Quote:
|
|
#17
|
|||
|
|||
|
Re: bad coding... only works in IE
Quote:
|