Hey guys,
I'm trying to get a certain code to work properly inside a navigation menu, it works fine if its displayed on a regular CMS page, but once I put it in a Static Block to display inside a menu, it disabled the auto-checked function. Other then that its working.
How can I get the checked=checked function to work properly when its in a hover-menu?
<ul class="tabs3" style="clear: both;">
<li class="tab111First" style="clear: both;"><input id="tab111" type="radio" name="tabs3" checked="checked" /> <label for="tab111">HATS</label>
<div id="tab-content11" class="tab-content3 animated fadeIn">
<div class="storeRes1">test1</div>
</div>
</li>
<li style="clear: both;"><input id="tab112" type="radio" name="tabs3" /> <label for="tab112">T-SHIRTS</label>
<div id="tab-content12" class="tab-content3 animated fadeIn">
<div class="storeRes1">test2</div>
</div>
</li>
</ul>
Thanks,
Damien