Show Slideshow not in full width - Empire

Solved

Show Slideshow not in full width - Empire

KCK22
New Member
6 0 0
Hello,
 
in the header there is the possibility to choose whether you want to activate it in full width or not.

Unfortunately, I did not find this option in the slideshow. 
Currently, the slide show is always displayed over the entire width. 
 
Unfortunately, this does not match the rest of the layout, which is not displayed in full width.

Is there a possibility that the slideshow is not displayed in full width. (See screenshot, we would like to show only the area in the red frame).



Bildschirmfoto 2022-10-05 um 08.14.16.png

 

Accepted Solution (1)
MandasaTech
Shopify Partner
723 146 151

This is an accepted solution.

Hello @KCK22,
Add this css at the bottom

Online Store->Theme->Edit code

assets->theme.css

 

 
div#shopify-section-static-slideshow {
max-width: 1200px !important;

margin: auto;
padding: 0px 22px !important;

}
@media(min-width: 280px) and (max-width: 767px){
#shopify-section-static-slideshow {
padding: 0px 10px !important;
}
}
☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page

View solution in original post

Replies 5 (5)

PageFly-Victor
Shopify Partner
7865 1786 3131

@KCK22 can you send me the url of this page?

 

KCK22
New Member
6 0 0
MandasaTech
Shopify Partner
723 146 151

This is an accepted solution.

Hello @KCK22,
Add this css at the bottom

Online Store->Theme->Edit code

assets->theme.css

 

 
div#shopify-section-static-slideshow {
max-width: 1200px !important;

margin: auto;
padding: 0px 22px !important;

}
@media(min-width: 280px) and (max-width: 767px){
#shopify-section-static-slideshow {
padding: 0px 10px !important;
}
}
☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page

MandasaTech
Shopify Partner
723 146 151

Hello @KCK22,
Please share your store URL

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page

PageFly-Victor
Shopify Partner
7865 1786 3131

@KCK22  hey bro, you can try with this code 

 

Add this css at the bottom

Online Store->Theme->Edit code

assets-> theme.css

 

#shopify-section-static-slideshow {

             padding: 0px 185px !important;

}

 

@media(min-width: 280px) and (max-width: 767px){

              #shopify-section-static-slideshow {

                          padding: 0px  !important;

               }

}