Tagged: arrow, color section
Hi,
I’m trying to change to color of the arrow (or rotated square) that is pointing to the next section in a Color Section.
I’ve located this code:
<div class="av-extra-border-inner" style="background-color:#ffffff;"></div>
And I’ve tried to add this to the custom CSS but it doesn’t work.
.av-extra-border-inner {
background-color: #26f000; !important;
}
I’ve been trying to learn a bit more about CSS and customization by reading this forum, but I’m not really that much into it yet. I’d appreciate if someone could tell me where I’ve made a mistake here. :-)
Regards,
Brian
Hi Brian!
Try with this:
#top .av-extra-border-inner {
background-color: #26f000 !important;
}
Best regards,
Josue
Hi Josue,
Thanks a lot, it works perfectly now!
Can you briefly explain what #top does and why it is required in this case? :-)
Regards!