How to remove the gap between form field and submit button on Horizontal menu

Remove the gap between a form field and submit button in a horizontal menu.

Overview

The gap is caused by default CSS padding applied to form elements.
Override the CSS padding-left property for the specific container class in your stylesheet.

Answered
Gr GreyHead 27 Oct, 2016
Answer
Hi Hdwillis,

You need to override the padding-left. This is at line125 of libraries/cegcore/assets/gcore-ui/css/gcore-ui.css
.gcore-subinput-container:not(:first-child) {
	padding-left: 4px;
}

Bob
hd hdwillis 27 Oct, 2016
Thanks Bob! That worked like a charm.
This topic is locked and no more replies can be posted.