Within my page, I have implemented JQuery tabs. The following image illustrates the issue I am encountering:
Problem1: The JQuery tab div section is currently centered, but I want it to occupy 100% of the bottom section (highlighted in green in the image)
Problem2: The tab is overlapping with my horizontal dropdown menus (highlighted in yellow in the image). How can I adjust the dropdown menu to overlap the divs and appear on top of every layer?
It's worth mentioning that I am utilizing tiles for my application. The Menu section resides on a separate JSP page, while the tab section is linked to the body attribute of the tiles.
Below are my Tiles definitions:
<definition name="baseLayout" template="/BaseLayout.jsp">
<put-attribute name="title" value="Hello World"/>
<put-attribute name="header" value="/Banner.jsp"/>
<put-attribute name="menu" value="/Menu.jsp"/>
<put-attribute name="body" value="/Body.jsp"/>
<put-attribute name="footer" value="/Footer.jsp"/>
</definition>