Hey,
I’m seeing your topbar as transparent, not white. Are you wanting it to be a different color? You can set the background color for your topbar from Theme Options > Advanced Styling. Or are you referring to something different?
Hannah
Thank you for your reply. This is the bottom of the top bar that I can not change but the color of the font and the color of the icons. An idea to change them?
Thanks for your help.
You can change the color of the icons with this css:
.col-md-6.col-sm-6.kad-topbar-left a {
color: #333;
}
Just paste that into your custom css box in Theme Options > Advanced Settings.
Hannah
Thank you for your help. Is there a code for the search field in the top bar?
This will change the typed text and icon:
#topbar-search input[type=text] {
color: #333;
}
#topbar-search .search-icon {
color: #333;
}
And this the placeholder text:
#topbar-search .form-search ::-webkit-input-placeholder {
color: #333;
}
#topbar-search .form-search ::-moz-placeholder {
color: #333;
}
#topbar-search .form-search :-ms-input-placeholder {
color: #333;
}
Hannah
Thank’s for your answer.
I will have just one more question. When I write it’s white, not black. There is not a code that makes everything in the top bar black?
Thank you for your reply
The css above should change the type text color:
#topbar-search input[type=text] {
color: #333;
}
I’m not seeing that in your code?
Hannah