Skip Navigation

[Resolved] Row 6 items – want to use 5

This support ticket is created 3 years, 8 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 - - 9:00 – 13:00
14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 - - 14:00 – 18:00

Supporter timezone: Africa/Casablanca (GMT+01:00)

This topic contains 2 replies, has 2 voices.

Last updated by stephanieK-5 3 years, 8 months ago.

Assisted by: Jamal.

Author
Posts
#2229891

I am trying to: use 5 instead of 6 items

Link to a page where the issue can be seen:

hidden link

I expected to see: I would like to have 5 here
Thank you 🙂

#2229909

Hello and thank you for contacting the Toolset support.

I assume that you are talking about the search filters, right? If that's the case, then you will need to remove the 6th column, and change the class of all other cells from "col-md-2" to "col" like this:

<div class="row">
   <div class="col">
      ... Filter here ...
   </div>
   <div class="col">
      ... Filter here ...
   </div>
   <div class="col">
      ... Filter here ...
   </div>
   <div class="col">
      ... Filter here ...
   </div>
   <div class="col">
      ... Filter here ...
   </div>
</div>

The grid is based on Bootstrap 4 grid. Read more about it here hidden link

#2230211

thank you so much I learned something :))