Search page customisation

I am creating a search for for a site, and i would like to know how one can change the width of the text input field


I looked briefly and I couldn't find the option. I know you can change the width of the search box that is painted in the searchbox design area. I would've thought you could change the input field sizes for the search page, but I'll have to look more closely tomorrow.

You can do this with CSS. Get the ID of the field (it'll be something like queries_thingy_query, where thingy is the name of the field) and adjust to suit.

    input#queries_content_query {
    width: 12em;
    }


...for example.

Thanks :slight_smile: