css3 - A clarification needed to solve drop down meny over riding the banner or header in CSS -
i have customized 1 banner , 1 drop down menu. on mouse on menu drop down menu appears. if scroll menu not going below banner , on writing banner. can in resolving this.

my menu css3 code
#menu ul { background: -moz-linear-gradient(#444444, #111111) repeat scroll 0 0 transparent; border-radius: 5px 5px 5px 5px; display: none; float: left; left: 0; list-style: none outside none; margin: 0; padding: 0; position: absolute; top: 30px; width: 200px; z-index: 99999; } style.css (line 305) ol, ul { list-style: none outside none; border: 0 none; font-size: 100%; line-height: 1.2em; margin: 0; padding: 0; vertical-align: baseline; } header or banner css: #the_header { background: -moz-linear-gradient(center top , #000000 0%, #45484d 100%) repeat scroll 0 0 transparent; border-bottom: 1px solid #bbbbbb; box-shadow: 0 0 10px #000000; color: #eeeeee; font-size: 30px; font-style: italic; height: 30px; line-height: 30px; padding: 30px; position: fixed; text-align: center; text-shadow: 1px 1px 1px #000000; top: 0; width: 100%; z-index: 1000; } can please tell me problem here.
in header or banner css try inserting following code fragment.
max-height:30px; this should work.
Comments
Post a Comment