Shoppica 2 theme intro slideshow image size

ThemeBurn SupportForumsOpenCart ThemesShoppica 2 OpenCart ThemeShoppica 2 theme intro slideshow image size

This topic has been marked as not resolved.

Hello,
could you tell me if there is a way to change the default slideshow image size from 920×320 px to some other dimensions. It would be great if the height of the image could be changed (for example 920×600 px).

Thank you for your help and best regards

July 25, 2015 at 1:50 am #42339

I have used this code to force different height for intro slideshow pictures as well as the code I found on other topic that fixes some issues with mobile devices.
The site works ok on PC, but on smartphones and tablets the height stays 550 px even though the width of the pic is scaled to fit the mobile screen.
Web adress: fancy-chic.com

I used this code:


#image_intro {
  width: 920px;
  height: 550px;
  padding: 0;
  margin-top: -30px;
}
#image_intro_preview {
  margin: 0;
  padding: 0;
}

#image_intro_preview .s_button_prev_holder {
  margin-left: 35px;
}
#image_intro_preview .s_button_next_holder {
  margin-right: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #image_intro {
    width: 740px !important;
  }
  #image_intro_preview img {
    max-width: 740px !important;
  }
}
@media only screen and (max-width: 767px) {
  #image_intro {
    margin-top: -20px !important;
    width: 280px !important;
  }
  #image_intro_preview img {
    max-width: 280px !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  #image_intro {
    width: 440px !important;
  }
  #image_intro_preview img {
    max-width: 440px !important;
  }

August 1, 2015 at 12:59 am #42427
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.