Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #791865

    Hello! I successfully found this code change to place the search bar into the secondary menu.
    https://kriesi.at/support/topic/move-search-to-top-bar-only/
    It worked great, but on mobile, the box is too far to the left for the user to see what he/she is typing. Is there a way to move it to the left or make it fully visible to the user?

    My site is http://www.charmedrunning.com

    Thank you!

    #791881

    Hey charmedrunning,

    You can add this custom CSS code and let me know if all is okay:

    @media screen and (min-width: 480px) {
        .avia-search-tooltip {
          left: -63.5px !important;
          top: 22px !important;
        }
    }
    

    Best regards,
    John Torvik

    #791962

    Hi John.

    I’m sorry. It didn’t work.

    I put the code in Quick CSS changes in the General Styling area. Should i be putting it somewhere else?

    #791975

    Oh, I might add that I moved the search button to the secondary menu so I’m using Avia2…is that right? I tried changing that but it still didn’t work.

    #791983

    OK…I followed your lead and did this in the custom css

    .avia-search-tooltip{
    position: absolute;
    z-index: 9999999;
    padding:0;
    width: 300px;
    top: 85% !important;
    margin-left: -30px;
    border-radius: 2px;
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.2);
    border-width:1px;
    border-style: solid;
    }

    I changed Margin-left from -120px to -30px and fixed it!!

    #792059

    Hi,

    I am glad that your problem was solved!

    Let us know if you have any issue :)

    Best regards,
    John Torvik

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.