Firefox Design Fix
- Started
- Last post
- 8 Responses
- kbags
Putting together a fairly simple website in dreamweaver with CSS and table layouts. Nothing crazy. But it looks all funky in firefox...
http://www.instinctmedia.com/cli…
Seems so simple, but I can't figure it out...anyone?
- sparker0
what does "funky" mean? what problems do you see?
first off, either put a full doctype there, or remove the one that dreamweaver inserts into new documents; because it is incorrect.
- spiralstarez0
The only real problem I see is that your getting scrollbars in Firefox.
Looking at your CSS, this is because you have 3 instances of the normalText class that all have:
overflow:scroll as the property.
make a div that wraps those three, set overflow:auto on it, and take out the overflow in normalText.
- kbags0
ey sparker, funky means it looks whack. Thanks for calling my attention What doc type should I specify?
- kbags0
Bingo, bango!
spiralstarez, you rock. Thanks for the quick CSS lesson.
- sparker0
depends on what format of (x)html you used. i would say, probably go without a doctype for now.
- kbags0
If I'm using PHP...?
- sparker0
that doesn't matter. your php is outputting html.
- kbags0
Cool, I just did some homework on this and realize I have more to do...
thanks for the edjamacation, spaker!