• Resolved Moraima R.

    (@mripz)


    How can this be done? need 3, 4 or 5 items, this items don’t arrange automatically.

    Please advice!
    Thanks in advance

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Rustaurius

    (@rustaurius)

    Hi Moraima,

    It looks like your website is behind some kind of “Coming Soon” plugin. Would it be possible to disable it temporarily so that we can take a look?

    Thread Starter Moraima R.

    (@mripz)

    You can see the site now, sorry about that forgot I had that enabled.

    etoilewebdesign

    (@etoilewebdesign)

    Hi Moraima,

    To apply certain # of items per row, you would need to add custom CSS.

    You can start by adding this code to the “Custom CSS” box on the Edit catalogue page:

    .upcp-thumb-image-div,
    .upcp-thumb-image-div a {
        width: 100%;
        height: auto;}
    
    div.upcp-thumb-image-div img {
        max-width: 100%;}

    Then, to target a specific category, add this code after:

    #prod-cat-category-54 .upcp-thumb-item {
        margin: 0 1% 22px 1%!important;
        width: 23%;}

    The ’54’ is the Category ID (which in this case belongs to ‘Camping’).
    The width that is set here will arrange the Camping items as ‘4 per row’. To display 5 per row, just change the 23% to 18%.

    Note: If you want to apply ‘4 per row’ to the WHOLE catalogue, then disregard the ‘#prod-cat-category-54…’ code and use this instead:

    .upcp-thumb-item {
        margin: 0 1% 22px 1%!important;
        width: 23%;}
    Thread Starter Moraima R.

    (@mripz)

    Thank you very much for your help

    • This reply was modified 6 years ago by Moraima R..
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Ajust 3 or 4 items per row’ is closed to new replies.