Quote:
Originally Posted by hobnail
Try changing the ".pc-rw img" to "div.pc-rw img", or add it with the same css and see if that works. Not that I've seen a lot of css but I've never seen a descendant selector where the parent is a bare css class; I thought there had to be an html tag, with or without a class.
|
.pc-rw will match any element with a pc-rw class. E.g.:
Code:
<p class="pc-rw">
<img alt="I'm matched by .pcrw img! :-D">
</p>
div.pc-rw will only match divs with a pc-rw class.
Code:
<p class="pc-rw">
<img alt="I'm not matched by div.pcrw img! D-:">
</p>