Check out this piece of code:
<div id="one">
<div id="two">
<div class="cell_pad">
</div>
</div>
</div>
How can you instruct CSS to
modify the value of class "cell_pad" within the container of id="one"
?
The class .cell_pad appears multiple times in the code, but I only want to make changes to one instance of this class.
I am working with the sparky framework
for Joomla.
I have attempted the following in my stylesheet, but it did not have any effect:
#one > .cell_pad{}