PDA

View Full Version : How to get rid of these rounded corners?


lchy885
03-04-2019, 03:22 PM
Hi all

Please take a look at the following attachments,

I don't seem to find a way to get rid of these rounded corners: search box & reply box,
can't find any related radius in Style Variable Editor (Style & Templates > Style Manager > Style Variable Editor)
I have already set all radius I could find to 0.

any idea?

https://vbulletin.org/forum/attachment.php?attachmentid=157369&d=1551719716
https://vbulletin.org/forum/attachment.php?attachmentid=157370&d=1551719716

Seven Skins
03-04-2019, 10:00 PM
This should turn everything square...

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

lchy885
03-06-2019, 01:52 AM
This should turn everything square...

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

Thanks:)