PDA

View Full Version : Rounded Corners


Switch3130
02-16-2010, 02:03 PM
How do you remove the rounded corners on your template?

BSMedia
02-16-2010, 02:41 PM
Set the border radius in stylevars to 0, or go thru the CSS files and delete all the references for the rounded corner code.

Personally I just removed most the rounded corners reference code to slim down the CSS files any way and help ensure the site displays the same in IE and FF

Switch3130
02-16-2010, 02:50 PM
Thanks.

develop_827
07-13-2013, 09:18 PM
I do it this way:

* { -moz-box-shadow: none !important; }
* { -webkit-box-shadow: none !important; }
* { box-shadow: none !important; }

* { -moz-border-radius: 0px !important; }
* { -webkit-border-radius: 0px !important; }
* { border-radius: 0px !important; }

Read here more:
http://www.vbulletin.com/forum/forum/customizing-vbulletin/vbulletin-templates-graphics-styles/410275-round-corners-etc