Hi there,
I have two questions.
How can I change the color of the grey lines (bottom and vertical) in the ethos header?
And how can I change the footer text and footer menu text color (in white)?
Thanks for helping!
Linda
Hi there,
I have two questions.
How can I change the color of the grey lines (bottom and vertical) in the ethos header?
And how can I change the footer text and footer menu text color (in white)?
Thanks for helping!
Linda
Hi Linda,
Thanks for reaching out.
To change the color for the specified sections, you need to add the following custom CSS code into the Theme Options > CSS.
.x-colophon.bottom .x-nav li a
{
color: #ffffff !important;
}
.x-navbar
{
border-bottom-color: #ffffff !important;
}
.x-navbar .desktop .x-nav>li:first-child>a,
.x-navbar .desktop .x-nav>li>a
{
border-right-color: #ffffff !important;
}
Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes which means we can’t fix it in case it conflicts with something on your site nor will we enhance it.
Thanks
Thanks for the reply, it worked
Can you help me with the lines around the shopping cart icon in the header menu?
And the footer text (above the footer menu)?
Hi Linda,
You need to add the following code too.
.x-navbar .x-nav > li.x-menu-item-woocommerce > a .x-cart
{
background-color: #0E1916 !important;
}
.x-colophon.bottom .x-nav li:after
{
color: #0E1916 !important;
}
Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes which means we can’t fix it in case it conflicts with something on your site nor will we enhance it.
Thanks
Thank you!
Hi Linda,
You are most welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.