Just to clarify, I'm not using tables or any other styling methods like that on my page. I have a simple table that lists services, prices, and PayPal buttons for adding to the cart.
While everything is functioning properly and looks good, there are two inline styles that I would like to move to an external style sheet.
The reason for using inline styles is because one of the PayPal buttons has a dropdown menu option, which is created using a . Since all the buttons are within the main table, the button with the dropdown menu creates a "table within a table" scenario, inheriting the styles set for the main table. The issue lies with a border around the dropdown option button.
My attempt to fix this involved adding a CSS class that sets the border to none:
.noborder {border:none;}
I then applied this class to the PayPal td section in the HTML, however, this did not resolve the issue. Only using inline styles has been effective in removing the border like this:
Does anyone have a solution for this problem?