Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2007
    Posts
    412
    Plugin Contributions
    0

    Default Reduce space between product fields on product listing page

    Bootstrap 3.7.7-beta1

    How can I reduce/remove the white space between the product fields on the product listing pages? So that the fields themselves gets wider. In attached image, I mean the orange frame on the sides of the fields. Apparently its "margin-right: 15px;" and "margin-left: 15px;". I want to set these to 0px, however I can't find that in any css file.

    Name:  Untitled-1.jpg
Views: 67
Size:  38.4 KB
    Last edited by DML73; 17 Feb 2026 at 07:45 AM.

  2. #2
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    325
    Plugin Contributions
    7

    Default Re: Reduce space between product fields on product listing page

    This in a bootstrap library remotely loaded. To override it, got includes/templates/bootstrap/css folder and rename dist-site_specific_styles.php file to site_specific_styles.php. Then edit this file and add this between the <style> and </style> tags:
    Code:
        .card-deck .card {
        margin-right: 15px;
        margin-left: 15px;
        }
    Or this, depending on what part you want to change:
    Code:
        .col {
            padding-right: 15px;
            padding-left: 15px;
        }
    Then adjust numbers as you like. Be careful that theses changes are site wise.
    Last edited by pilou2; 17 Feb 2026 at 09:31 AM.

  3. #3
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    325
    Plugin Contributions
    7

    Default Re: Reduce space between product fields on product listing page

    This also have some effect:
    Code:
        .p-3 {
            padding: 1rem !important;
        }

  4. #4
    Join Date
    Oct 2007
    Posts
    412
    Plugin Contributions
    0

    Default Re: Reduce space between product fields on product listing page

    Perfect thanks! Option two and three did the job in my case.

 

 

Similar Threads

  1. v150 Need Space in between Product Listing
    By ljdream00 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 26 Mar 2012, 01:44 PM
  2. product listing-leave some space between product images
    By b90702098 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 1 Mar 2012, 07:00 AM
  3. Reduce empty lines of between product listing
    By digulu in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 11 Jan 2010, 05:05 PM
  4. increasing space / gap between products on product listing page
    By Sushigal in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Jun 2009, 10:49 AM
  5. Space between two products on product listing page
    By raunharman in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 23 Jan 2009, 01:07 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg