This topic is locked

How to make the Horizontal Search Panel to be full width

7/27/2022 3:40:30 AM
PHPRunner General questions
A
asawyer13 authorDevClub member

How can I make the Horizontal Search Panel be full width of the browser?

I think it would look better.

Alan

P
ppradhan@live.com 7/27/2022

@asawyer13,
you can use custom CSS in the editor page like below to acheive this.

@media (max-size: 700px) {
input#ctlSearchFor1.form-control {
size: 100 !important;
}
}

A
asawyer13 authorDevClub member 7/28/2022

Not able to get this to work, but I'm probably just doing something wrong at this point.