Archived topic
text after search button
1 reply · Started by Den on March 4, 2021
Viewing posts 1–2 of 2
Hi team,
(Website link in the private information section)
I want to add a simple text "SEARCH" right after/before the search button on my menu. I have placed the search button on the right side of the menu.
How to do this?
Thanks in regard
Hi there,
try this CSS:
@media(min-width: 600px) {
.main-navigation .menu-bar-item.search-item a {
display: flex;
align-items: center;
}
.main-navigation .menu-bar-item.search-item a:after {
content: 'Search';
padding: 0 10px;
font-size: 16px;
}
}
This archived topic is closed to new replies.