I have been getting frustrated with this tiny little problem. So I have a search bar in the menu of my site. On the right side it has a go button. In IE and Chrome the button is the correct size and 3px padding works. The problem is that in Firefox the correct padding is 2px. This is getting quite annoying. Is there anyway to specify a different padding for firefox than Chrome? Here is the code for the button.
Code:
a.comment-edit-link, a.comment-reply-link, a.button, input[type="submit"], input[type="button"], ul.button-nav li a, div.generic-button a {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
background: none repeat scroll 0 0 #<?php echo $font_color; ?>;
border-bottom: 1px solid #aaaaaa;
border-right: 1px solid #aaaaaa;
border-top: none;
border-left: none;
color: #<?php echo $container_bg_color; ?>;
font-family: arial, sans-serif;
font-size: 12px;
cursor: pointer;
font-weight: normal;
padding: 3px 5px;
text-decoration: none;
text-shadow: none;
vertical-align: top;
margin-left: 3px;
} Thanks for your help!