check out http://69.68.181.132/~joetalerico
In IE it looks bad, but in firefox it looks fine! Help!!
In IE it looks bad, but in firefox it looks fine! Help!!
superbovine said:he is generating the code in php, so i'd say the messy part is a bit forgivable. It is hard for newbies in php to format html code right off the bat. However, you are his html skills are awful, but seems to have manage to get php working. Although, there isn't really anything dynamic so, technically he could have just had html in a php file. he needs to work on the his image optimization on thumbnails.
xper said:Start off by using a doctype so the webb browsers know what kind of document it should render.
And try to clean up your code, it looks very messy.
Practicly all your code is wrong.
Example: you write like this: <img src=images/banner/1.jpg width=100%>
when it should be: <img src="images/banner/1.jpg">
And you have a starting <center> tag but you do not have a closing one: </center>
And your color tags is wrong to, you have this: <td bgcolor=6D7B8D>
When it should look like this <td bgcolor="#6D7B8D">
It is impossible to help you when everything is wrong, fix all this first and come back with your problem when you are done.
mac 2005 said:What is the importance of using the quote marks? I use them on occasion but not all the time, and I don't seem to see an adverse affect. So that's why I'm asking....
From a file size perspective, at least, it's enormous. 250KB is way too much to be pushing to the user. It's wasteful to download a 1482x524 image only to force it down to 900x200 (not to mention it distorts the image - everything looks squished). If you want 900x200, crop the image to that size first.jtalerico said:Should i make it smaller?
I did not tell you to remove the image width, i just showed you how it should look like to write in W3 standard.jtalerico said:I would also like to note that taking off the image width just made the image look even worse. I fixed the problem with IE I removed the 100% and made it the same width as the table it is in, which is width=900... If you want, i made the HMTL look a little better by adding the \n so it is spaced out for your reading pleasure!
jtalerico said:check out http://69.68.181.132/~joetalerico
In IE it looks bad, but in firefox it looks fine! Help!!