Submenu items cut off

Attachment 29392

Hi, the menu is not displaying properly on the first time you try and view it, some submenu items get cut off. Sometimes they are viewable after you have put mouse over some other areas of the menu. Can anyone help?

7 answers

Profile photo of Sherlock 0.00 $tone August 21, 2013
Public

Hi rossod,

you can open the file of skin/frontend/default/jm_jasmine/joomlart/jmmegamenu/css/jmmegamenu.css and adding this css rule

HTML Code:

div.childcontent-inner-wrap {
                   overflow:visible;  
              }

I hope this change would helps !

#3
Profile photo of Sherlock 0.00 $tone August 23, 2013
Public

Hi rossod,

you can open the file of skin/frontend/default/jm_jasmine/css/theme.css look for this css rule

HTML Code:

 #ja-header {
                 position: relative;
                z-index: 5;
             }

change it to

HTML Code:

 #ja-header {
                 position: relative;
                z-index: 9999;
             }

I hope this helps !

#5
Profile photo of Ross O'Dwyer 0.00 $tone August 27, 2013
Public

Thanks, that worked! But my original problem still exits, subitems cutting off.

Please help, have implemented the CSS you suggested but it is still not working correctly. Thanks!

#6
Profile photo of Sherlock 0.00 $tone August 28, 2013
Public

hi rossod,

you open the file of skin/frontend/default/jm_jasmine/joomlart/jmmegamenu/css/jmmegamenu.css look for this css rule

HTML Code:

  div.childcontent-inner-wrap {
            overflow: visible ;
          }

you change it to

HTML Code:

  div.childcontent-inner-wrap {
  overflow: visible !important;
}

I hope that would helps !

#7

Please login or Register to Submit Answer

Written By

Comments