[Support request] text after search button

Home Forums Support [Support request] text after search button

Home Forums Support text after search button

  • This topic has 1 reply, 2 voices, and was last updated 3 years ago by David.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1682103
    Den

    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

    #1682179
    David
    Staff
    Customer Support

    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;
      }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.