• Can anyone tell me how to remove the line break between the search form and button on the search widget?

    Thanks,

Viewing 4 replies - 1 through 4 (of 4 total)
  • If you know the class or ID of the search form, you could add something like this to your stylesheet:

    #searcformID br {
    display: none;
    }

    Thread Starter drstir

    (@drstir)

    Many thanks for the response. Here’s the html from the search widget:

    <li id=”search” class=”widget widget_search”><form id=”searchform”…

    I tried your suggestion as follows, but didn’t have much success.

    #searchformID br {
    display: none;
    }

    I’m not much of an expert on css (as you can probably tell :o) – so any more suggestions would be much appreciated.

    Thanks.

    Okay….

    #searchform br {
    display: none;
    }

    should do the trick..

    Thread Starter drstir

    (@drstir)

    That did the trick :o)

    Many thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Configuring search widget’ is closed to new replies.