Support

Search results for ""

Sorry, no results found. Perhaps you would like to search the documentation?
All Topics
Ferdinand Lischka

Gravity Forms – Overlap in Entries table

Hi, in my Gravity Forms entries table there is some kind of overlap between elements. Once I deactivate Admin Columns Pro everything looks normal.

GF overlap

I was able to fix it with this line of CSS:

.gform-settings-panel__content #form_list_form .tablenav, .gform-settings-panel__content#entry_list_form .tablenav {
flex-wrap: unset!important;
}

Is there maybe a better fix for this?

5 months, 1 week ago
Stefan van den Dungen Gronovius
Developer

The height for the nav in Gravity Forms is set to a fixed height.
When you make the height auto, it will be good in all use cases.

#entry_list_form.gform-settings-panel__content .tablenav {
	height: auto !important;
}

We’ll make sure to fix this in the next release as well.

5 months, 1 week ago

You must be logged in to reply to this topic.