-
Author
-
October 24, 2013 at 00:05 #4995
joeldecker
ParticipantIs there a way to alter the background color of the horizontal search fields
on the members page? Can it be done using Quick css? Or would it have to be
through adding code to the sweetdate-child folder/file?
ThanksOctober 24, 2013 at 00:20 #4997adam
ParticipantAdd this to quick CSS and change background to any color you like:
#search-bar {
background: #FFFFFF;
}October 24, 2013 at 03:45 #5025joeldecker
ParticipantSorry, maybe I wasn’t too clear.
I meant the background of the form fields.
That changes the background behind the fields.
Thanks for your help.October 24, 2013 at 18:33 #5048SQadmin
KeymasterIf you mean the dropdown fields:
COPY CODEform.custom div.custom.dropdown ul li.selected { background: none repeat scroll 0 0 #CDEBF5; color: #000000; } form.custom div.custom.dropdown ul li { background: #ffffff; color: #555555; } .form-search.custom div.custom.dropdown a.current { background-color: #FFFFFF; border: 1px solid #DDDDDD; color: #141414; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 24, 2013 at 20:27 #5066joeldecker
ParticipantOctober 25, 2013 at 02:05 #5097SQadmin
KeymasterI changed the code for that background. see if it helps
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 25, 2013 at 02:32 #5099joeldecker
ParticipantThanks @sqadmin,
the background is still white though, and now the other changes stopped working. Any
other ideas? I’m adding this in Quick css, that ok?October 26, 2013 at 12:12 #5170SQadmin
KeymasterAnd you changed the background color from #ffffff to your color?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 27, 2013 at 09:06 #5217joeldecker
ParticipantYes. Here’s what I have for the code (below). It changes the drop down fields to the right color while being scrolled down through, but not the background color of the top fields. I want to also change the color of the fields just as they are sitting on the page. Maybe that has to stay white though and I didn’t realize that. No problem if so.
form.custom div.custom.dropdown ul li.selected {
background: none repeat scroll 0 0 #333333;
color: #333333;
}
form.custom div.custom.dropdown ul li {
background: #c9c8c6;
color: #555555;
}
form.custom div.custom.dropdown a.current {
background-color: #c9c8c6;
border: 1px solid #DDDDDD;
color: #141414;
}October 28, 2013 at 16:18 #5267SQadmin
KeymasterWell this way it works. Strange 🙂
COPY CODEform.custom div.custom.dropdown ul li.selected { background: none repeat scroll 0 0 #333333; color: #333333; } form.custom div.custom.dropdown ul li { background: #c9c8c6; color: #555555; } .form-search.custom div.custom.dropdown a.current{ background-color: #c9c8c6; border: 1px solid #DDDDDD; color: #141414; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The topic ‘Horizontal Search Field Bacground Color’ is closed to new replies.