They there,
I'm working with a responsive theme and in order to make the images responsive I need to add the class "size-auto" to all images.
How can I add this existing class to the submit button image?
Thanks!
They there,
I'm working with a responsive theme and in order to make the images responsive I need to add the class "size-auto" to all images.
How can I add this existing class to the submit button image?
Thanks!
The submit button is not an image by default. Are you using an image button now?
One issue will be that it's an input form element of type image, so adding a class to it will not be:
<img class='size-auto'
It would be:
<input type='image'
I'm not sure if adding the "size-auto" class would work if added to an element other than an image. If you add the size-auto class to the form, does that work? It would end up like this:
<form class='size-auto'
<input type='image'