My goal is to decrease the width of certain jQuery buttons. Though I have attempted to eliminate padding using the code below, there remains a minimum of 5 pixels on either side of the text within my button.
.button().css({ 'padding-left':'0px', 'padding-right':'0px' });
Even when changing '0px' to '200px', the button becomes excessively wide, indicating that the code does indeed target the correct element. Therefore, I am seeking a solution to reduce the extra spacing without affecting the overall size of the button.