I put this code into my website to get rid of scroll bar and plus signs in header. But the plus signs are still showing on mobile. I also noticed that the text under images on mobile get cut off.
Any ideas? Thank you in advance!
.section-header .header .left .menu ul li a.plus::after {
content: none;
}
.section-header .header .left .menu ul li ul.second {
overflow: auto;
}
you can try also display:none and make sure you wrote correct css selectors
The code worked on pc but it dousn’t work for mobile.
website: antonbjarkiolsen.com
pass: passwordpassword
If you want to remove from both (mobile & desktop)
.section-header .header .side-nav-section .nav ul a.plus::after{ display:none!important}
If you want to remove only mobile
@media screen and (max-width: 600px) {
.section-header .header .side-nav-section .nav ul a.plus::after{ display:none!important}
}
1 Like