i have a sliding doors css menu bar, works fine when the (class="current") is applied to any given <li> tag in the list.
what i have tried to do is use said menu to display top level section links.
i made a new top level section list, a copy of with horizontal dividers one, and stripped every thing out exept:
first rows:not used
middle rows : dynamic
last row: not used
then before first row: <ul class="menu1"><li> after: </li>
then before middle row: < li> after: </li>
then before last row: <li> after: </li></ul>
should this not produce exactly the same as the hardcoded ver:
<ul class="menu1">
<li><a href="#nogo"><b>Home</b></a></li>
<li class="current"><a href="#nogo"><b>Privacy Policy</b></a></li>
<li><a href="#nogo"><b>Products</b></a></li>
<li><a href="#nogo"><b>Where to find us</b></a></li>
<li><a href="#nogo"><b>Contact us</b></a></li>
<li><a href="#nogo"><b>Search</b></a></li>
</ul>
with the hrefs and text being replaced with the relevent section info.
i know about blocking pages not in site map etc.. but the bare bones still does not seem to work.
what i have tried to do is use said menu to display top level section links.
i made a new top level section list, a copy of with horizontal dividers one, and stripped every thing out exept:
first rows:not used
middle rows : dynamic
last row: not used
then before first row: <ul class="menu1"><li> after: </li>
then before middle row: < li> after: </li>
then before last row: <li> after: </li></ul>
should this not produce exactly the same as the hardcoded ver:
<ul class="menu1">
<li><a href="#nogo"><b>Home</b></a></li>
<li class="current"><a href="#nogo"><b>Privacy Policy</b></a></li>
<li><a href="#nogo"><b>Products</b></a></li>
<li><a href="#nogo"><b>Where to find us</b></a></li>
<li><a href="#nogo"><b>Contact us</b></a></li>
<li><a href="#nogo"><b>Search</b></a></li>
</ul>
with the hrefs and text being replaced with the relevent section info.
i know about blocking pages not in site map etc.. but the bare bones still does not seem to work.
Comment