Hi Team.
I created a page named Bambu. How can I achieve in making the image huge with the same quality of the pic? To make it as big as my image banner.
Store: Glowcare.se
PS: Glowcare1991
A user is trying to enlarge an image on their Bambu page while maintaining quality, wanting it to match the size of their banner image.
Proposed Solution:
Admin -> Theme -> Customize Code -> assets -> base.css.shopify-section .page-width--narrow with a media query for screens min-width 990pxCurrent Status:
Context: This is a Shopify store design issue related to the Bambu theme, involving CSS customization for image sizing.
Hi Team.
I created a page named Bambu. How can I achieve in making the image huge with the same quality of the pic? To make it as big as my image banner.
Store: Glowcare.se
PS: Glowcare1991
Hi,
To solved, you can follow those steps:
Admin → Theme → Customize Code → assets → base.css
Then add code bellow in that file:
@media screen and (min-width: 990px){
.shopify-section .page-width--narrow{
max-width: 1440px;
width: 100%;
padding: 0 9rem;
}
}