Loading...

Limited slide out menu irregularities – qCascadingMenu

Title

Limited slide out menu irregularities – qCascadingMenu

Description

Limited slide out menu irregularities – qCascadingMenu

Please wait...

The menu in qCascadingMenu is cut. Only first sub-menu is visible.

Cause

The Team Site HomePage.aspx page layout has been changed to Header and two columns. The web part is placed to the header zone. That causes the error.

Resolution

1. Find the following part from the home page which has two columns with header:
<table id="layoutsTable" style="width:100%">
<tbody><tr style="vertical-align:top">
<td colspan="2">
<div class="ms-rte-layoutszone-outer" style="width:100%">
<div class="ms-rte-layoutszone-inner">
<WpNs0:CascadingMenu runat="server" __MarkupType="xmlmarkup" WebPart="true" __WebPartId=

2. Add the style="overflow:visible" the class "ms-rte-layoutszone-inner" as follows:
<table id="layoutsTable" style="width:100%">
<tbody><tr style="vertical-align:top">
<td colspan="2">
<div class="ms-rte-layoutszone-outer" style="width:100%">
<div class="ms-rte-layoutszone-inner" style="overflow:visible">
<WpNs0:CascadingMenu runat="server" __MarkupType="xmlmarkup" WebPart="true" __WebPartId=

3. Save the page
4. Refresh the home page from browser.

You may need to clear the browser cache.

Defect ID

The Team Site HomePage.aspx page layout has been changed to Header and two columns. The web part is placed to the header zone. That causes the error.

Leave a Reply