Hello,
I have this issue that the input tag has a class that's the same as other input tag.
I want to change the icon to something else but it affects the other input that's not related to the icon.
I wonder if it is possible to create a css based on the input's div parent.
<div id="search">
<input type="submit" id="edit-submit" name="op" value="Search" class="form-submit">
</div>
so in CSS i would like to link the .form-submit class to the div#search so it does not affect other inputs.
I was thinkig of something like this
div#search#edit-submit.form-submit
{
}
but this does not work.
Thank You.