I’d like to change the text on my site from menu to OPEN and CLOSE instead of the text MENU which I removed the burger icon and replaced it with. I managed to use an if statment however i couldn’t set it as active as my knowledge is novice at best. This is what I currently use in my theme file. My site is www.moore-gaming.co.uk
@media only screen and (max-width: 749px) {
.site-nav__link–burger {
position: relative;
padding-left: 40px;
padding-right: 40px;
top: -2px;
&::before {
position: absolute;
content: “MENU”;
bottom: 0px;
left: 0px;
right: 0px;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.5px;
}
}
}