I am having issues with the customer background image on my mobile site ,it is too big

I am having issues with the customer background image on my mobile site ,it is too big

Ryanliao
Visitor
2 0 0

can i get the rigt code to fix it?

20210413202501.jpg_20210413202527.jpg

 

body,
html {
background: url({{'364052861-huge.jpg' | asset_url }});

background-color: $color-body;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;

background-position:center;
background-attachment:fixed;

background-repeat: no-repeat;


}

.page-width {
@include clearfix();
max-width: $width-site;
margin: 0 auto;
}

.main-content {
display: block;
padding-top: $section-spacing-small;

@include media-query($medium-up) {
padding-top: $section-spacing;
}
}

.section-header {
margin-bottom: $section-spacing-small;

@include media-query($medium-up) {
margin-bottom: $section-spacing;
}
}

Replies 3 (3)

leungvi8
Shopify Partner
20 1 3

Hey there,

Try using one of the background property values: https://www.w3schools.com/cssref/css3_pr_background-size.asp (maybe contain instead of cover)

examples: https://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size&preval=contain

Or if you have a url we can take a look and see.

Ryanliao
Visitor
2 0 0

i did that before ,nothing happen ...so sad

 

leungvi8
Shopify Partner
20 1 3

do you have a link to your site?