Info
- 6 posts
- 2 voices
- Started 4 years ago by outchy
- Latest reply from outchy
- This topic is not resolved
paragraph breaks bust loose
-
- Posted 4 years ago #
help! for some reason, if i have more than one paragraph in a post, the next paragraph winds up above the post itself! look:
http://sk6.messageboard.chime.com/topic/welcome-to-sk6fanscom
any idea why this is happening?
link to .css:
http://sk6.messageboard.chime.com/bb-templates/superbold/style.css
Update:
it's to do with this min-height IE hack:
/* for Mozilla/Safari */
*>.box {
padding-top: 100px;
}
*>.box p {
margin-top: -100px;
}
/* for IE */
* html .box {
height: 100px;
}/* for Mozilla/Safari */
*>.box {
padding-top: 100px;
}
*>.box p {
margin-top: -100px;
}
/* for IE, with IE5/Mac backslash filter \*/
* html .box {
height: 100px;
}
/* end filter */any thoughts on how to fix it?
-
- Posted 4 years ago #
That's because you have these seriously weird rules:
* > .box p {style.css (line 683) margin-top:-100px; }You have them twice, too. Looks like you copied the same code from somewhere twice. Right at the end of the file.
I recommend that you make a _single_ change, test, repeat. Then you know what's responsible when stuff breaks.
[Edit] Yeah. Get rid of the hack. That will fix it.
Ardentfrost recommended this alternative hack a while back. http://ardentfrost.rayd.org/?p=136
-
- Posted 4 years ago #
i feel like i should send you a check, fel.
thanks :D
-
- Posted 4 years ago #
more weirdness in safari is happening. each post starts its own new box within the previous post and with every post, the text gets bigger! any idea on how to fix this?
-
- Posted 4 years ago #
That sort of thing is usually when you're not closing
divs orliand each successive one falls into the previous, but that should show up in FF and IE too. I looked for that but couldn't see it, so I can't help you. Maybe have a look around for Safari bugs that could cause this? -
- Posted 4 years ago #
i finally found it! you were right fel, i was missing a </div> in post.php. that sucker was elusive! i feel so accomplished right now :D
-
You must log in to post.