dexp_menu Blocks not rendering in IE

Hi there.

I purchased your theme and must say great work so far.
Very stylish and tons of features.

The only issue i have so far is that blocks in dexp_menu are not rendering in IE (IE 11 in my case).
You see also on demo site of palas theme where no block is rendered while hovering the features tab.

 

Any suggests for that case?

Best regards

Jan

Hello Jan,

After debuging, we detected that the root cause was the line css in menu_attach_block module

a.menu-attach-block-drop-link.dropped ~ .menu-attach-block-wrapper {
  display: initial;
}

Property display: initial doesn't support in IE. you can check more information about this information on Internet.

So, to fix this issue, you can add the line css to megamenu.less

a.menu-attach-block-drop-link.dropped ~ .menu-attach-block-wrapper {
  display: block;
}

Thank you

Ok!

Thanks for clearing up.
That helped me out:-)

Best regards 

Jan

 

Hello Jan,

If you love Palas theme and our service. Could you help us rate 5 stars for this theme on theme forest, it will help us so much.

Just go to: http://themeforest.net/downloads

We will appreciate if you help us do this.

Thank you.

Yes! This solution worked perfectly. Thanks.