wordpress - Normal corners on select boxes - css -
all select boxes have rounded corners, want normal corners. think theme using on wordpress site overwrites normal boxes.
this site see select boxes rounded corners! http://www.fernwehreisen.de/reiseanfrage/
can point me in right direction? how normal corners via css? have tried changing border radius , on, nothing helps, because can't find class manages this. thanks.
border-radius governing css name of issue. different browsers, has different manifestations, , -webkit-border-radius 1 of them.
in addition current code, can add border-radius:0px, should take care of modern browsers.
if still doesn't work, means selector .wpcf7 select overridden theme's other css rules. blindly overcome them, can add !important after css rule.
.wpcf7 select { -webkit-border-radius: 0px !important; border-radius:0px !important } or can try refine selector yours override them. if still don't understand, google css selector , read first link.
Comments
Post a Comment