Any help would be greatly appriciated
store( Blissbloom.shop )
hi blissbloomaesthetic ,
what kind of help you want?
Go to Online Store > Themes > Actions > Edit Code > Assets > base.css
Paste your CSS at the bottom of base.css and click Save
@media (min-width: 1025px) {
.banner--desktop-transparent {
display: none;
}
}
This didnt seem to work
Go to Online Store > Themes > Actions > Edit Code > Assets > base.css
Paste your CSS at the top of base.css and click Save
This also didnt work
Ok dear, please share collaborator code with me so I can check.
the collab code is 1407
Please check it.
Hi, if you dont mind me asking. why do you want to remove that section from your website, because it seem to be the page that tells your customer what you do and what to do.
below is the simple step to hide the section rom desktop only:
Go to your Shopify dashboard β Online Store β Themes.
Click Customize on your active theme.
Click the three dots (β―) at the top-left corner β choose Edit code.
Open the file named base.css, theme.css, or style.css under the Assets folder.
Scroll to the bottom and paste this code:
@media screen and (min-width: 768px) {
.shopify-section.section-image-banner {
display: none !important;
}
}
That will hide the banner on desktop but keep it showing on mobile.
If it doesnβt work, right-click the banner β click Inspect, check the class name of the section, and replace .shopify-section.section-image-banner in the code with that one.