Gossamer Forum
Home : Products : Gossamer Links : Discussions :

How to change text color in Search bar??

Quote Reply
How to change text color in Search bar??
How do I go about changing the text color in the Searchbar area from black to white? I'm using a dark background and need to have white lettering.

Thanks.
Quote Reply
Re: [mgeyman] How to change text color in Search bar?? In reply to
Using color option in CSS file for search field :)

Vishal

Vishal
-------------------------------------------------------
Quote Reply
Re: [mgeyman] How to change text color in Search bar?? In reply to
You need to play with these

.searchbar a {
color: #212126;
font-size: 10px;
}
.searchbar a:hover {
color: #5c5b66;
}


I think that should be it.
Add it to luna.css so that the above default in luna_core.css is overridden

Take a look at links available at following url:
http://www.gossamer-threads.com/perl/gforum/gforum.cgi?post=280365

Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================

Last edited by:

HyperTherm: Apr 18, 2005, 8:01 PM
Quote Reply
Re: [HyperTherm] How to change text color in Search bar?? In reply to
I tried it but I'm still getting the same results. Here's what I'm trying to accomplish:

In the search bar, change the text "Search," "the entire directory," "only this category," and the link "advanced Search" to white (#ffffff). I changed the background to red with no problem but I need to change the text to white.

Thanks.
Quote Reply
Re: [mgeyman] How to change text color in Search bar?? In reply to
Place the following in luna.css and see if it works for you.
You can then modify the same to your taste:

.searchbar {
background: #FF0000;
color: #FFFFFF;
}

.searchbar a {
color: #FFFFFF;
}

.searchbar a:hover {
color: #FFFF00;
}

Hope i am correct on the above as i am still learning :=)

Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================
Quote Reply
Re: [HyperTherm] How to change text color in Search bar?? In reply to
HyperTherm,

That worked great! Thank you very much!

I trying to learn css! I'm getting there little by little!

Mark
Quote Reply
Re: [mgeyman] How to change text color in Search bar?? In reply to
Glad that it worked.
I must say, i learnt that part pretty fast :D:D

Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================