Logo not centered in mobile view

Hi! Thank you for creating such a beautiful theme.

Everything has been working perfectly for me, except that when I view my site in mobile view, the logo appears to be cut off slightly on the right: http://www.nativewander.com.

Do you have any suggestions on what I can add to my custom css to address this issue?

Thank you in advance for your help!

Hi @nativewander,

I hope you are well today and thank you for your question.

It is happening because of the following custom CSS code you are using on your site


#logo img {
    max-width: 350px;
}

To resolve the issue either remove the above custom CSS code or try using the below CSS code.


div#logo img {
    max-width: 100%;
}

Best Regards,
Movin

Thank you! I used the bottom CSS code and that worked perfectly.

You are most welcome here :slight_smile: