Hello again. This is a continuation from https://kriesi.at/support/topic/add-amazon-style-search-bar-in-top-menu/#post-1423892. How can I also control the eyeglass icon color? And the border thickness of the searchbar? Thanks.
Hey Illingco,
Thank you for opening a different thread.
How can I also control the eyeglass icon color?
Have you tried changing the color values in the css modification from the previous thread?
.header_color .widget_search input[type=submit]:hover {
background-color: #dc291d;
color: #232323;
}
If you want to adjust the initial color, use this:
#top #header.header_color .widget #searchform #searchsubmit {
font-size: 16px;
color: blue;
}
To adjust the border width of the search bar, add this css code.
#top #header.header_color .widget #s {
border-width: 3px !important;
}
Best regards,
Ismael
Great thanks for that. How do I change the color of the search bar border? Thanks again.
Hi Illingco,
You can change the color of the border by adding this CSS property:
border-color: #ebebeb !important;
inside this code from Ismael:
#top #header.header_color .widget #s {
border-width: 3px !important;
}
Hope it helps.
Best regards,
Nikko
Great thank you!