So I have a question on this one. I could be missing the obvious, maybe it’s late in the afternoon and I’m missing the obvious answer. But is this possible, and if so, how can I do it:
I have a Color Section with three 1/3rd elements inside the section. I want to change the av_one_third element, but only inside this color section and nowhere else.
.av_one_third {
margin-left: 6%;
width: 29.333333333333332%;
}
How would I go about doing this? Again, it’s probably the easiest fix ever, but I can’t figure it out.
Hey TekBull,
If you want it in just that one color section you can add a custom class to it, or use the browser inspector to find the custom class of the color section (for example: av_section_2), and place that ahead of what you have already. For example:
#av_section_2 .av_one_third {
margin-left: 6%;
width: 29.333333333333332%;
}
Best regards,
Jordan Shannon