PDA

View Full Version : limiting keyword search box to home page


BarryC
May-18-2008, 11:27 AM
there is code in the customization FAQ which allows me to add a keyword search box to my site...i added it and it works fine...i would paste it here but the html gets garbled

i was wondering if there was a change i could make to that code that would result in the search box only appearing on my home page, rather than on every page?

thanks,
barry

Barb
May-18-2008, 12:30 PM
there is code in the customization FAQ which allows me to add a keyword search box to my site...i added it and it works fine...i would paste it here but the html gets garbled

i was wondering if there was a change i could make to that code that would result in the search box only appearing on my home page, rather than on every page?

thanks,
barry

Hi Barry,

Look in your CSS code for this:

#keywordSearch {
text-align: center;
}

Replace that with:

#keywordSearch {
display: none;
text-align: center;
}

.homepage #keywordSearch {
display: block;
}

BarryC
May-18-2008, 06:18 PM
Hi Barry,

Look in your CSS code for this:

#keywordSearch {
text-align: center;
}

Replace that with:

#keywordSearch {
display: none;
text-align: center;
}

.homepage #keywordSearch {
display: block;
}

Barb, thank you, that works perfectly!

Barry