How do I extend the image above the fold to the full page width?

How do I extend the image above the fold to the full page width?

RheaKalo
Tourist
14 0 6

Hi there! 

My website is rheakalo.com and I would like to extend the main image above the fold to full page width.  Can anyone help?

Thanks!

Replies 4 (4)

rifat_ShopiDevs
Shopify Partner
61 6 9
Hi @RheaKalo ,
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above </head> tag:

 

 

body.template-index {
    padding-top: 0 !important;
}

body.template-index #shopify-section-header {
    background: transparent;
}

body.template-index #shopify-section-header * {
    background: transparent !important;
}

body.template-index #shopify-section-header .homeHeader .site-nav--centered {
    background: transparent !important;
}​

 

 

result 

rifat_ShopiDevs_0-1727089570669.png

Hope this can help you,
Found it helpful? Please like and mark the solution that helped you.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery and more.
EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers
RheaKalo
Tourist
14 0 6

Hi thank you!

I am not looking for that. I want to keep the image as is, but just have the width be the full page.

rifat_ShopiDevs
Shopify Partner
61 6 9

please try with this code. 

.slick-slider {
    max-width: 100%;
}

.slick-track {
    width: 100% !important;
    max-width: 100%;
}

.slick-initialized .slick-slide {
    width: 100% !important;
    max-width: 100%;
}

rifat_ShopiDevs_0-1727091183810.png

 
hope its works for you

Thank you

Found it helpful? Please like and mark the solution that helped you.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery and more.
EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers
RheaKalo
Tourist
14 0 6

this did not work for me..