Home › Forums › CSS › Overriding CSS styles hardcoded in to the software. › Re: Overriding CSS styles hardcoded in to the software.
May 18, 2012 at 10:17 am
#103034
Participant
This is just an exercise of crafting CSS selectors, the following selector will let you manipulate the image attributes.
$('.v65-productDisplay img').hide() // will hide all images inside an element classed as v65-productDisplay
If you know CSS you know how to select elements in jQuery!