Hello,
Did you modified the style.css file?
No, I didn’t edit any css and had to create a child theme to get rid of the problem.
Thanks,
Crystal
The code that was in your theme looked something like this:
@media (max-width: 720px) {
.main-navigation:before {
content: "â%oo¡ Menu";
}
}
This is how I fixed it:
@media (max-width: 720px) {
.main-navigation:before {
content: "Menu";
}
}
@media (max-width: 480px) {
.main-navigation:before {
content: "Menu";
}
}
@media (max-width: 359px) {
.main-navigation:before {
content: "Menu";
}
}
BUt I would like to fix it properly, and not this bad hack.
The file is correct: https://github.com/GavickPro/Portfolio-Free-WordPress-Theme/blob/master/style.css#L2772
Most probably your FTP program uses wrong encoding what causes your issue – we have no similar reports from other users currently.
Hmm, I see the correct character in your code, but I didn’t FTP anything, I downloaded the theme and installed it through wordpress itself…. Very strange. I did paste the character back into the theme and it is working now.
Thanks!