CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   HTML & CSS (http://www.codingforums.com/forumdisplay.php?f=13)
-   -   something blocking display of nav sub-menu (http://www.codingforums.com/showthread.php?t=283664)

johndove 12-06-2012 05:22 PM

something blocking display of nav sub-menu
 
See URL: http://testing.backstageweb.net/

On the main menu, mouse over "Donate" - the 4th sub-menu item is being blocked by something, looks like h2#description (?)

Code:

#nav ul li {
        background-color:#000000;
        color:#fff;
        outline:0;
        -moz-border-radius: 4px;
        border-radius: 4px;
        border-bottom:1px dotted #937c52;
        -moz-box-shadow: 4px 4px 4px #444;
        -webkit-box-shadow: 4px 4px 4px #444;
        box-shadow: 4px 4px 4px #444;
        font-size:.9em;
        }

h2#description {
        font-weight: normal;
        font-size:1em;
        padding-top:8px;
        text-align:center;
        }


johndove 12-06-2012 05:27 PM

and on that same menu item, if I add another level to the menu, it cuts off at the wrapper.

johndove 12-06-2012 07:20 PM

The div blocking the nav is #main:

Code:

#main {
        background: #FFF;
        clear: both;
        }

- ??


All times are GMT +1. The time now is 06:15 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.