Skip Navigation

[Resolved] Add margin between custom search box and results grid

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.

This topic contains 1 reply, has 1 voice.

Last updated by garethW-2 7 months, 1 week ago.

Author
Posts
#2792127
ScreenShot Tool -20250114150003.png

I have created a custom search box along with a results grid on this page: hidden link

How am I able to create a margin between the search box and the results grid?

Thanks
Gareth

#2792136

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+01:00)

Hi Gareth

Inspecting the page source I note that the filter controls form as a class "wpv-filter-form", so you can just add a little CSS to the page, e.g.

.wpv-filter-form {
  margin-bottom: 2rem;
}

It looks like you are using Elementor; if I recall correctly I think it is fairly simple to add CSS rules to any page you are editing with Elementor.

#2792138

Ah yes perfect, I added it to the custom css box within elementor.
Thanks for your quick reply!