Hello tereshka,
Try below css code.
navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-transparent {
background: #c6a5a54d !important; /** background:transparent !important; **/
}
Hope this will helps you.
Thanks.
I removed all my code and put the code below, and it’s transparent at first and then just black.
navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-transparent {
background: #FE4365 !important;
}
In ShopIsle doc was a post about changing color in header by this:
.navbar-custom {
background: #FE4365 !important;
}
nav.navbar.navbar-custom{
background: #FE4365 !important;
}
But it removes transparent at all((
I tried different mixes of your code and mine – nothing works as I wish((
-
This reply was modified 7 years, 10 months ago by
tereshka.
@tereshka try below css code instead of your code.
.navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-transparent {
background: transparent !important;
}
.navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-scroll-point.navbar-not-transparent,
.page .navbar-custom {
background: #FE4365 !important;
}
Hope this will helps you.
Thank you, it almost works right. There is a small black flash right before a pink color.
You can see it if you scroll down slowly one time.
And on mobile version it’s black instead of transparent.
I left the code on the site for checking.
Any ideas?
-
This reply was modified 7 years, 10 months ago by
tereshka.
@tereshka I edited above css code, please try and let me know it works or not. I did not change mobile menu color to transparent because after trans-parenting background color menu can’t see clearly.
If you really want to change color of mobile menu, try below css code.
.navbar-fixed-top .navbar-collapse {
background: rgba(0, 0, 0, 0.24) !important;
}
Two pages (posts and shop’s catalog) has black menu.
And I don’t understand, why this colorful menu jumps so harshly? There was a single image before using Companion Plugin and menu changed it’s color very smoothly and beautifully.
-
This reply was modified 7 years, 10 months ago by
tereshka.
-
This reply was modified 7 years, 10 months ago by
tereshka.
@tereshka try below css code.
.navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-transparent,
.navbar.navbar-custom.navbar-fixed-top {
background: transparent !important;
}
.navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-scroll-point.navbar-not-transparent,
.page .navbar-custom,
.navbar.navbar-custom.navbar-fixed-top.navbar-scroll-point{
background: #FE4365 !important;
}
Now it’s transparent everywhere, nice effect, but I hope to get transparent menu only on the front page.
@tereshka try below css code.
.navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-scroll-point.navbar-not-transparent,
.page .navbar-custom,
.navbar.navbar-custom.navbar-fixed-top,
.navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-transparent
.navbar.navbar-custom.navbar-fixed-top.navbar-scroll-point{
background: #FE4365 !important;
}
.home .navbar.navbar-custom.navbar-fixed-top.navbar-color-on-scroll.navbar-transparent,
.home .navbar.navbar-custom.navbar-fixed-top {
background: transparent !important;
}
Thank you very much! This is what I needed. Sorry for bothering)