Hi everyone, how can I increase the size of my logo on the mobile website version? It’s fine on desktop, but on mobile devices it’s small and hard to read.
Theme: Rise
Site: imagidoodle.com
A user is seeking help to enlarge their logo specifically on mobile devices.
Current situation:
Technical details:
The discussion remains open with no solutions provided yet.
Hi everyone, how can I increase the size of my logo on the mobile website version? It’s fine on desktop, but on mobile devices it’s small and hard to read.
Theme: Rise
Site: imagidoodle.com
In order to make the size of the logo increase for the mobile you need to follow these steps.
Go to Shopify Admin >> Online Store >> Edit Code >> base.css
In the end of base.css paste the following code shared below.
@media only screen and (max-width: 767px) {
.header__heading-logo {
transform: scale(1.2) !important;
}
}
Results:
Hi @ImagiDoodle always backup themes before modifying files.
And before modifying things for a CSS band-aid try a custom css SETTING first
https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css
Thank you both! @The_ScriptFlow your code worked, and I put it in the theme customizer CSS area as @PaulNewton suggested.