how to delete the search bar from the header,

Viewing 3 posts - 1 through 3 (of 3 total)
  • #11674
    anand_mongol
    Participant

    how to delete the search bar from the header, my website is http://axiomplus.danzeela.com/

    #11680
    siwilson
    Participant

    If you add a text widget to the sidebar header but don’t enter any text that will make the search bar disappear.

    #11687
    manjonei
    Participant

    Go to style.css and look for:

    #header #searchform {
    float:right;
    margin:32px 3.4% 0 3px;
    }

    then, include the line display: none; inside of this, like that:

    #header #searchform {
    float:right;
    margin:32px 3.4% 0 3px;
    display: none;
    }

    Enjoy!

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.