Is there an easy way to target all 3rd layer elements?
For example, my right column layout is as follows:
<div class=right_column>
<div class=module>
<div>
<p></p>
</div>
</div>
<div class=different_module>
<div>
<p></p>
</div>
</div>
</div>
How do I target both non-classed <div> elements in this instance without specifying each one individually?
You should be able to do something like this
>is a child-selector.Here it says select and use the
divthat is a child of adivthat is a child of adiv.Here is an example: http://jsfiddle.net/hbXsE/1/
Note: the HTML you provided has a few missing
divtags and some closingspantags. I redid it for the example.