Change Logo size on mobile ?

Hi !
Is it possible to change the logo size on mobile ? With CSS edit for example !

Thanks !

Hi @alex1,

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

Yes we can achieve this by developing CSS code.

ould you please share me your site URL and the Logo image URL that you want to display on mobile so that i can help you to achieve it?

Best Regards,
Movin

Of course, for the logo mobile, It’s not a problem now, i’ll made the image later :slight_smile:

http://www.taspas1po.fr

You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

@media (max-width: 768px){
#logo img {
    max-width: 300px;
}
}

Please change the logo size 300px in the above CSS code to whatever you want to display on mobile.

Thank you !

You are most welcome here :slight_smile: