majid
majid

Reputation: 63

Add padding to select input in chrome?

The select input element for categories in my site http://www.kbay.in , has a padding like so:

padding:5px;

The padding works fine in Firefox, but in chrome only adds the top and right padding, and it looks kind of awkward, how can I fix this?

Upvotes: 4

Views: 2441

Answers (1)

Nachshon Schwartz
Nachshon Schwartz

Reputation: 15795

Your select element has (for some reason) a CSS property as follows:

padding-bottom: 0 !important;

You need to remove the !important otherwise it will not allow it to be overriden.

Upvotes: 1

Related Questions