I want to increase the size of my text logo (SWEAT FREE TELECOM) on Desktop only. Any advice? If I try to do it just through settings, then it changes it both for desktop and mobile. I only want to change it on Desktop. Also, I just want to increase the size of SWEAT FREE TELECOM. Through settings if I change it then it changes it for all the headings. I don’t want to do that either. So just increase the logo size on desktop is what I am trying to do. If you have any advice!
You can increase the size of your text logo on desktop only by adding custom CSS. Here’s how you can do it:
Go to Online Store > Themes in your Shopify admin.
Click on Actions > Edit code.
Find the theme.scss.liquid or theme.css file under the Assets folder.
Add the following CSS at the end of the file:
@media only screen and (min-width: 768px) {
.site-header__logo .site-header__logo-image {
font-size: 2rem; /* Adjust this value to increase the logo size */
}
}
This code will increase the size of the text logo on desktop screens only (for screens wider than 768px).