Passer la navigation

[Résolu] Row 6 items – want to use 5

This support ticket is created Il y a 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

Fuseau horaire du supporter : Africa/Casablanca (GMT+01:00)

Marqué : ,

Ce sujet contient 2 réponses, a 2 voix.

Dernière mise à jour par stephanieK-5 Il y a 4 years, 6 months.

Assisté par: Jamal.

Auteur
Publications
#2229891

I am trying to: use 5 instead of 6 items

Link to a page where the issue can be seen:

lien caché

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 lien caché

#2230211

thank you so much I learned something :))