Reply To: Search module

#10044520
Support
Keymaster

Hi, my suggestion is that you use Bootstrap grid for it, here’s an example:

<form>
	<div class="row"> 
		<div class="form-group col-md-4">
			<input type="text" class="form-control" name="field1" value="" placeholder="Field 1">
		</div>
		<div class="form-group col-md-3">
			<input type="text" class="form-control" name="field2" value="" placeholder="Field 2">
		</div>  
		<div class="form-group col-md-3">
			<input type="text" class="form-control" name="field3" value="" placeholder="Field 3">
		</div>  
		<div class="form-group col-md-2">
			<div class="d-grid gap-2">
				<button class="btn btn-primary" type="button">Search</button>
			</div>
		</div>
	</div>
</form>

More details:
https://getbootstrap.com/docs/5.2/layout/grid/#example
https://getbootstrap.com/docs/5.2/forms/overview/#overview
https://getbootstrap.com/docs/5.2/components/buttons/#examples