I see that the related products in the product page are using this:
<div id="av_section_1" class="avia-section alternate_color avia-section-small container_wrap fullsize">
As it is the same for all of them in the site, how can I target just the related products in the product page?
Thanks.
Hey peterolle,
single product pages contain the body class single-product so you could use
.single-product #av_section_1 {
border: red solid 2px;
}
for the whole section
but if you only want the style the related products items, it contains the classes related products so you could use
.single-product .related.products .product {
border: red solid 2px;
}
Best regards,
Mike