• Resolved lionzpaw

    (@lionzpaw)


    Hi, The menu that appears for mobile is showing unusal characters preceding the word Menu. It displays as follows:

    a%oo? Menu

    How can I fix this?

    mdesigns.ca/photography

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author GavickPro

    (@gavickpro)

    Hello,

    Did you modified the style.css file?

    Thread Starter lionzpaw

    (@lionzpaw)

    No, I didn’t edit any css and had to create a child theme to get rid of the problem.

    Thanks,
    Crystal

    Thread Starter lionzpaw

    (@lionzpaw)

    The code that was in your theme looked something like this:

    @media (max-width: 720px) {
    	.main-navigation:before {
    		content: "a%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.

    Theme Author GavickPro

    (@gavickpro)

    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.

    Thread Starter lionzpaw

    (@lionzpaw)

    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!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Menu Button Displays Bad Characters’ is closed to new replies.