Pre nav logo over menu

artfag / 2013-10-08 14:14:48   

Hi,
I was hoping someone could help solve a positioning issue with a logo in the pre nav.
When a browser window becomes smaller the pre nav sits over the menu. Is there a positioning element I can change in the menu to make it react to the logo? I tried placing them on the same z-index level but this didn't help.
Site: latticegalley.com/…
Thank you.

artfag / 2013-10-08 14:15:57   

Sorry... site:

artfag / 2013-10-08 14:16:46   

latticegallery.com/…

Sorry unable to preview posts! What a mess...

arsondpi / 2013-10-08 21:27:24   

The pre-nav area (#index .top-section) has a position: fixed; attribute and you can't really make it react to the menu.
However you can do this in a different way: add/edit the following attributes to #index and #index .top-section

  1. #index {
  2.     min-width: 900px;
  3. }
  4. #index .top-section {
  5.     position: absolute;
  6. }

;-)

This thread has been closed, thank you.