Viewing 7 replies - 1 through 7 (of 7 total)
  • ambrosite

    (@ambrosite)

    Add this to the bottom of your master.css file:

    #footer-search {
    display: none;
    }

    Thread Starter kmclafferty

    (@kmclafferty)

    Do you mean style.css? I can’t find master.css.

    Thanks.

    ambrosite

    (@ambrosite)

    Master.css is being imported by style.css. So if you put it at the bottom of style.css it will work.

    Thread Starter kmclafferty

    (@kmclafferty)

    Thanks, I did it but the search bar is still there.

    ambrosite

    (@ambrosite)

    Same suggestion as what I made in the other thread. Try moving the rule higher in the file. Put in right underneath this line:

    @import url(“stylesheets/master.css”);

    ambrosite

    (@ambrosite)

    I know what the problem is. You have a typo in one of the rules. You need to use curly brackets, not parentheses:

    div#follow ( display: none; }

    Change to:

    div#follow { display: none; }

    Thread Starter kmclafferty

    (@kmclafferty)

    Thank you sooo much! Its gone!!!!

    Happy Earth Day!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how do I delete ‘search’ bar from titan template’ is closed to new replies.