In this tutorial i want to show you how easily you can change the way of how homeslider appears in default-bootstrap template in PrestaShop 1.6. As you know default homeslider module is a part of homepage of your shop. It appears right below the main menu. Near the module (on right hand side) you can see two small banners. In this guide i will show you how to remove these banners, and how to change width of slider to 100%.
This might not work on the new reponsive themes. This would involve setting a wrapper to 100% and the banner size inside to fixed with a max-width and auto margins. I would also apply these changes via the overide system.
Example Code:
#homepage-slider {
padding-left: 0;
padding-right: 0;
margin-bottom: 14px;
max-width: 100%;
max-height: 100%;
overflow: hidden;
position: relative;
z-index: 1;
float: left; }
@media (max-width: 767px) {
#homepage-slider {
width: 100%;
max-width: 100%;
padding-top: 20px; }
}
#homepage-slider #homeslider {
margin: 0 auto;
padding: 0; }