Hi guys,
I want to change color of headers. Different color for different tab in Glide Page.
Is is possible? I am new to css. I think it’s possible using css.
Thanks.
Hi guys,
I want to change color of headers. Different color for different tab in Glide Page.
Is is possible? I am new to css. I think it’s possible using css.
Thanks.
Replace :nth-child(n) with your tab order:
#page-root:has(nav ul > li:nth-child(2) > .menu-item.active) .accent-bg {
background-color: red;
}
Thanks
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.