I am in need of some assistance with CSS in formatting the text box for BID VALUE (input element) (See in Image 1) Image 1 https://i.sstatic.net/4fQk8.jpg The product link can be found here
When I try to widen the text box using padding, the text value inside the box disappears (seems to get hidden), and I cannot figure out what I am doing wrong.
To help illustrate my issue, I have created duplicates labeled Number 1 & 2, both with the same ID and other properties BUT
BID VALUE Number 1 has the following custom CSS:
input[name="bid_value"]
{
width:auto;
padding: 4px 120px 5px 31px;
margin: 2px 11px;
box-sizing: border-box;
text-align: left;
}
BID VALUE Number 2 does not have any custom CSS by default. It does not display the current BID VALUES clearly (all value figures), which is why I want it to be a little larger. However, when I try to do so (like in BID VALUE 1), the value disappears. Any advice on where I might be going wrong?
I would like my BID VALUE text box to look like this format shown in Image 2 https://i.sstatic.net/ScdvN.jpg The link to this format can be found here
Looking forward to your suggestions on what may be causing the issue.