I am currently working on developing a Shopify theme that utilizes the 960 grid system.
Here is the layout I have implemented:
<div id="header" class="container_16"> <!-- positioned relatively -->
<div id="tl_overlay"></div> <!-- positioned absolutely at top:0 left:0 -->
.
.
.
</div>
<div id="nav" class="container_16">
<ul id="navlist" class="grid_16 push_1">
{% for link in linklists.main-menu.links %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
</div>
The issue I am facing is with the tl_overlay
div, which has a background image causing it to overflow its content intentionally. This overflow is overlapping the navigation div, resulting in the links being unclickable. I have tried adjusting the z-indexes of each element without success. Are there any steps or solutions that I might have overlooked or could try to resolve this problem?
Thank you!