We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 19374
    • 41 Posts
    Hi,

    I got some problems with the Search output, everytime when it loads it disappears benath my divs, look at the screenshot to see what I am talking about.

    Could you help me maybe to bring the output in front of everything? I tried already the z-index but it doesn’t work.
      • 19374
      • 41 Posts
      Nobody an idea?

      Maybe the link could be better than the screenshot: http://www.lav-tt.de
        • 5811
        • 1,717 Posts
        Add z-index: 100; in your div ajaxSearch_output It should be the solution.

        something like this:
        #ajaxSearch_output {
          font-size: 90%;
          background-color: #EFEFEF;
          border: 1px solid #6F9303;
          position: absolute;
          top: 20px;
          right: 0;
          width: 480px;
          z-index: 100;
          padding: 5px;
          margin: 5px 0 15px 0;
        }
          • 19374
          • 41 Posts
          Thanks but the z-index:100; did nothing, I tried it already but the position:absolute; was the key to put the output in front of everything smiley