Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #427538

    I needed to add search to the mobile view and followed the steps in https://kriesi.at/support/topic/mobile-search-bar/

    This allowed me to add search to the mobile view successfully, but it adversely affected search for other (non mobile) views as you can see in the link.

    Either the search box is hidden under the element below it ( tried a very high z-index to fix without success) or something else is preventing me from seeing the box – any ideas?

    #427666

    The issue is related to this piece of CSS…
    @media only screen and (min-width: 767px) {
    #top #searchform > div { display: none; }}

    … I’ve tried a number of things to correct it, but so far without success.

    #428125

    Hey!

    Thank you for the info.

    Please replace it with this:

    @media only screen and (min-width: 767px) {
    #top #main > #searchform > div {
      display: none;
    }}

    Regards,
    Ismael

    #428302

    Perfect! Thank you Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Search box hidden’ is closed to new replies.