I am creating a wordpress website with multi-level of navigation.
When i say multi-level the parent link also has <a href="#">
. I have this link for nothing. And this is creating issues when I check for Link quality in chrome extention "SEO Site Tools" It gave me I have over 200 links in my homepage and this is bad seo.
Is there anyway I can replace parent item link <a href="#">
to <span>
? If I do will search engine make my website as scam? This is the structure I am trying to implement.
<ul>
<li>
<span>Products</span>
<ul>
<li><a href="product-1">Product 1</a></li>
<li><a href="product-2">Product 2</a></li>
</ul>
</ul>