Topic: Rounded Corners
well i've been messing about with some of the extra CSS that mozilla has and i've come up with a bit of css that rounds almost every corner on the standard punbb styles, and although it doesn't work in IE it doesn't affect IEs view at all
theres a few "problems":
* the bottom of the post review cannot be curved
* the profile view for users viewing other users isn't all curved
* the same applys to all admin options
* if you search by posts the curves at the bottom are slightly dodgy (this can probably be fixed)
Anyway i dunno what it will do to other styles but if you only run the standard styles then just add this to the end of base.css
DIV.box, .pun BLOCKQUOTE, DIV.codebox, DIV.forminfo, DIV.blockpost, DIV.postfootleft, DIV.postfootright, FIELDSET, TEXTAREA {
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
}
.pun BLOCKQUOTE, DIV.codebox, DIV.forminfo, DIV.blockpost, #brdheader DIV.box, #brdstats DIV.box, #brdfooter DIV.box, H2, FIELDSET, TEXTAREA {
-moz-border-radius-topright: 10px;
-moz-border-radius-topleft: 10px;
}
DIV.icon , INPUT{ -moz-border-radius: 3px; }
#postreview DIV.box {
-moz-border-radius-bottomleft: 0px;
-moz-border-radius-bottomright: 0px;
}
DIV.postfootleft { -moz-border-radius-bottomright: 0px; }
DIV.postfootleft, DIV.postfootright { -moz-background-clip: padding; }