MyBB Community Forums

Full Version: Border-Radius
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I get rid of these lines to make them smooth?

[Image: 727967-314201170429pm.png]
You need to edit .tborder in your global.css
and put the following css code in .tborder

-webkit-border-top-left-radius: 8px;
-khtml-border-radius-topleft: 8px;
-moz-border-radius-topleft: 8px;
border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
-khtml-border-radius-topright: 8px;
-moz-border-radius-topright: 8px;
border-top-right-radius: 8px;

or change the 10 to whatever you need, change it to the same one thead is at.

edit: nevermind, changed it for you. its 8
Thanks!