-
Author
Tagged: CSS menu
-
November 13, 2015 at 14:36 #87104groubeeParticipant
Hi
How can I change the white color you write with inside the search box http://www.skisme.dk/ (click and write inside the search box). I dont want to change the color elsewhere!
best regards
Tonny
Attachments:
You must be logged in to view attached files.November 13, 2015 at 16:08 #87114caxyxnParticipantYou can use this in your CSS
#nav-menu-item-search #ajax_searchform input{
color:#777777;
}Or any color you wish to change it to.
November 13, 2015 at 19:05 #87180groubeeParticipantThanks a lot – it work like a charm!
one last think 🙂
How does the CCS look like for the menu item where you are…
ex
You are on this page: http://www.skisme.dk/lejligheder/casa-marietta/ then the menu item text is white… how can I change that? see image.
thanks again!!
Best regards
TonnyAttachments:
You must be logged in to view attached files.November 13, 2015 at 19:26 #87197caxyxnParticipantYou’re welcome.
You’ll need to change your active background (or text) color.
Currently, you have both of them set to white
e.g to change the background to black you can use this CSS.header-color .dropdown-menu > .active > a{
background-color:#000;
}Hope that helps?
CayNovember 13, 2015 at 19:56 #87205caxyxnParticipantmaybe adding !important will do it.
i.e.
.header-color .dropdown-menu > .active > a{
background-color:#000!important;
}November 13, 2015 at 20:01 #87207groubeeParticipantno 🙁 its still dosen’t change the color.
I am going for today, its not really important, but it need to be shown right. I back tomorrow.
Best regards
TonnyNovember 13, 2015 at 20:03 #87208caxyxnParticipantOk.
I guess one of the staff will help out.
I’m just a customer as well 🙂
Best wishes.November 15, 2015 at 14:27 #87344sharmstrModeratorTry this
COPY CODE.current-menu-item a { color: #000 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 17, 2015 at 12:21 #87667groubeeParticipantOk – I have tried – but I think I have some kind of cache on my server I cant reset on my own – maybe it works! I will get back asap 😉
Thanks for help!
TonnyNovember 24, 2015 at 23:28 #88917groubeeParticipantI still cant change the font color on the menu item where I am… now it is white bg with whit text, see
http://www.skisme.dk/off-piste-tema-uge/ and go to the menu item “Livigno” dropdown “3”…What kind of CSS can I use to make the font color black or blue?
November 28, 2015 at 15:07 #89762sharmstrModeratorPut this in your quick css
COPY CODE.header-color .dropdown-menu > .active > a { color: #000 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 28, 2015 at 16:18 #89781groubeeParticipantI have just tried and nothing happens? the code is still there?
see the menu here: http://www.skisme.dk/lejligheder/narciso/November 28, 2015 at 16:26 #89786sharmstrModeratorYou have bad css in your quick css. Once there is an issue with the css, it will stop processing the code.
You have this at the top
COPY CODE#nav-menu-item-search #ajax_searchform input{ color:#777777;
You’re missing a closing bracket. It should be this
COPY CODE#nav-menu-item-search #ajax_searchform input{ color:#777777; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.