Click to See Complete Forum and Search --> : Problem in designing a sitemap using html


thulasi
04-16-2007, 05:25 AM
i strated designing a sitemap using html. i used <ul>, <li> & <ol> for listing
properly, but the problem is how can i put a link to items inside in the <ol> tag? I use like this..Underline not coming, link is going, pls help me.....
<ul>
<li><A href="http:///new/about.htm" target="_blank"><span class="menu3">About Us</span></A></li>
<li><A href="http:///new/contact.htm" target="_blank"><span class="menu3">Contact Us</span></A> </li>
<li class="menu3">Strategic Initiatives
<A href="http:///new/contact.htm" target="_blank"><ol class="menu3">&gt; fdfgdfg
</ol></A>
<br>
<ol class="menu3">&gt; dfgdfgf
</ol>
</li></ul>

KDLA
04-16-2007, 08:04 AM
Well... it looks like you don't know how to properly code lists. Take a look at this coding, and see if this works in your page:

<ul>
<li><a href="" target="_blank"><span class="menu3">About Us</span></a></li>
<li><a href="" target="_blank"><span class="menu3">Contact Us</span></a></li>
<li class="menu3">Strategic Initiatives
<ol class="menu3">
<li><a href="">List Item #1</a></li>
<li><a href="">List Item #2</a></li>
</ol>
</li>
</ul>

LeeU
04-16-2007, 08:51 AM
Is this sitemap for your visitors or the search engines?

GSZX1337
04-16-2007, 01:58 PM
So you're asking how to link to an item in the same list? Try to gve ids, names, or classes to your anchors and link to those.