PDA

View Full Version : Remove search functionality


b-grinner
Dec-02-2006, 08:12 AM
Hi,

I am attempting to remove the search functionlaity on my site. I have inserted the following two lines in my CSS code.

#searchWordsShort { display: none; }
.searchglass { display: none; }

It does not seem to be removing from home page. And when I go to gallery pages it shows a very small box.

My long range plan is to only search my site but want to do this in interim until I get this part figured out. Looking for some help here.

My site is http://cyberphotogs.smugmug.com.

Thanks and look forward to your reply.

...B

Barb
Dec-02-2006, 08:44 AM
Hi,

I am attempting to remove the search functionlaity on my site. I have inserted the following two lines in my CSS code.

#searchWordsShort { display: none; }
.searchglass { display: none; }

It does not seem to be removing from home page. And when I go to gallery pages it shows a very small box.

My long range plan is to only search my site but want to do this in interim until I get this part figured out. Looking for some help here.

My site is http://cyberphotogs.smugmug.com.

Thanks and look forward to your reply.

...B

Hi :)

Try this in your CSS:

#searchBox {display: none;}

b-grinner
Dec-02-2006, 11:25 AM
Hi :)

Try this in your CSS:

#searchBox {display: none;}

Hi Barb,

Thanks for your tip. However, after inserting the above code there is still a small tiny gray box left behind. I notice that when the screen refreshes a larger box appears and then disappears right away. Weird. Any ideas?

...B

Allen
Dec-02-2006, 05:08 PM
Hi Barb,

Thanks for your tip. However, after inserting the above code there is still a small tiny gray box left behind. I notice that when the screen refreshes a larger box appears and then disappears right away. Weird. Any ideas?

...B
This removes the box, but don't know if it'll screw up anything else.
#header #toolbar {display: none;}
Al

b-grinner
Dec-02-2006, 06:00 PM
This removes the box, but don't know if it'll screw up anything else.
#header #toolbar {display: none;}
Al

That did it Al. Thanks for the tip!!!:clap