@apestaartje
Can you delete or disable the autoptimize plugin while troubleshooting ?
It gets to know if something is not working, or if the cache in conflicting.
Pro tip; you can disable autoptimize on a request level by adding ?ao_noptimize=1 to the URL 🙂
Hope this helps troubleshooting,
Frank
Thanks @optimizingmatters ! Great tip.
🙂
Yes, great tip! But still no answer on my question 😉
@apestaartje
You could cheat a bit and do this :
@media screen and (min-width:1024px) {
#fixed-header-top{
padding-left: 200px;
}
}
or this :
.menu.clean-box-nav-menu {
text-align: center;
width: 100%
}
.menu.clean-box-nav-menu > li {
float: none;
}
#header-toggle {
display: none;
}
.nav-secondary .wrapper,
#fixed-header-top {
background-color: #000;
}
Hi Corrinarusso, cheat works. Thanks a lot!