MyBB Community Forums

Full Version: Only round bottom/top corners?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, in my theme, I currently have trow1 rounded, but I wnat only the bottom right and bottom left corner rounded.How could I do that?
Add this to .trow1 class in global.css;
-moz-border-radius-bottomleft: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-bottom-left-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
Sorry delete this..............
(2012-01-31, 03:01 AM)Yaldaram Wrote: [ -> ]Add this to .trow1 class in global.css;
-moz-border-radius-bottomleft: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-bottom-left-radius: 3px;
-webkit-border-bottom-right-radius: 3px;

Don't forget about opera. However, browsers are much better now with just border-radius...
(2012-01-31, 04:40 AM)GamerVoid Wrote: [ -> ]Don't forget about opera. However, browsers are much better now with just border-radius...

+1

Most modern browsers now accept border-radius rather than their engine-specific tags. In fact, even Firefox have dropped support for -moz-border-radius since Firefox 4.
I already managed to do this, but forgot to say.Anyways, thank you.