Jump to content

Prestashop 1.7 articles per rows in featured products


Recommended Posts

Hi

i've just installed prestashop 1.7.0.5 and i see that in featured product row it list only 2 products per row, otherwise in categories product list it list 3 products per row. I tried to modified the global css but without result. I use the classic template, original in prestashop 1.7. How i can do for list 3 products per row in featured product? Thank's in advance. I attached images to explain.

post-191710-0-66377600-1487778804_thumb.jpg

post-191710-0-86871600-1487778871_thumb.jpg

Link to comment
Share on other sites

  • 6 months later...

fount the solution, to set 3 in row, you need to edit css of featured products file class

 

this worked for me, just overwrite that class in custom.css:

 

.thumbnail-container {

    position: relative;
    margin-bottom: 1.563rem;
    height: 318px;
    width: 257px;
    background: white;
    @include box-shadow;
    &:hover, &:focus {
      .highlighted-informations {
        bottom: 5.5rem;
        &::after {
          opacity: 1;
        }
        &.no-variants{
          bottom: 4.2rem;
        }
      }
      .product-description::after{
        content: "";
        border-top: $gray 1px solid;
        position: absolute;
        width: 80%;
        top: 0;
        left: 10%;
        opacity: .25;
      }
    }
  }
Edited by Davred84 (see edit history)
Link to comment
Share on other sites

  • 5 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...