PHP/HTML Glitch help

imtuned

New Member
Messages
4
Reaction score
0
Points
0

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
The screenshots are useful, but we could use a link to a live page. Also, the sample code should be minimized. The PHP code is extraneous; all that matters is the HTML and CSS.

Don't use tables for layout. HTML isn't a formatting language, it's a document structuring language. Use markup that's more semantically appropriate, such as paragraph or list elements, then set the layout using only CSS in external style sheets (not inline).
 
Last edited:

imtuned

New Member
Messages
4
Reaction score
0
Points
0
The screenshots are useful, but we could use a link to a live page. Also, the sample code should be minimized. The PHP code is extraneous; all that matters is the HTML and CSS.

Don't use tables for layout. HTML isn't a formatting language, it's a document structuring language. Use markup that's more semantically appropriate, such as paragraph or list elements, then set the layout using only CSS in external style sheets (not inline).

I did what you said about the tables and layout. That fixed my problem! I guess it was the tables, I'll make sure I don't use them anymore.

Thank you very much!
 
Top