Navigation überspringen

[Gelöst] Row 6 items – want to use 5

This support ticket is created vor 4 years, 6 months. 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

Zeitzone des Unterstützers: Africa/Casablanca (GMT+01:00)

Dieses Thema enthält 2 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von stephanieK-5 vor 4 years, 6 months.

Assistiert von: Jamal.

Author
Artikel
#2229891

I am trying to: use 5 instead of 6 items

Link to a page where the issue can be seen:

versteckter 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 versteckter Link

#2230211

thank you so much I learned something :))