WordPress WooCommerce Change spacing of items in “Featured Products” Slider

I added some borders to the divs surrounding each product in the slider, and in doing that changed the total width of the wrapper they are in.

I am looking to shrink the spacing between each item in the slider, so the all fit in the 940px div around them., and don’t get cut off on the right side. Adjusting the margin-right property of each item isn’t having an effect.

Read More

Any ideas? Thanks!

http://montagewestport.com

Related posts

Leave a Reply

1 comment

  1. try the following:

    .slider .product_item {
      margin: 0 30px 30px 0px !important;
      display: block;
      float: left;
      margin-bottom: 100px !important;
    }