Home › Forums › Basel support forum › Basel: CSS to replicate Header Organic on all pages › Reply To: Basel: CSS to replicate Header Organic on all pages
April 30, 2020 at 3:27 pm
#191299
Elise Noromit
Member
Hello,
You home page and other pages have the overlap header, it is transparent and then gets black with the white text.
All the woocommerce tamplates have the header above the content. So this code is for all woocommerce template:
body.woocommerce .sticky-header.act-scroll {
background-color: yellow;
}
body.woocommerce .sticky-header.act-scroll {
background-color: yellow;
}
body.woocommerce .sticky-header.act-scroll .menu>li.current-menu-item>a{
color:red;
}
body.woocommerce .sticky-header.act-scroll .menu > li > a{
color:green;
}
body.woocommerce .sticky-header.act-scroll .menu > li > a:after{
color:green;
}
body.woocommerce .sticky-header.act-scroll .menu > li > a:hover{
color:red;
}
body.woocommerce .sticky-header.act-scroll .right-column > .search-button a{
color: red;
}
body.woocommerce .sticky-header.act-scroll .right-column>div>a {
color: red;
}
Remove the previous code and set the colors as per your needs.
Best Regards