Widget Links not linkable
Hi,
I'm using the business demo theme, just replacing some text and links in the "Shortcut links" footer widget.. just noticed that the links don't work (except the first link of each column). I checked the code and I don't see anything wrong.
Website is here: http://www.wai-lam.com/clients/JointVenture/
"Fitness Membership Packages" is a link, but you'll notice it's not a link when you hover over the word "Packages", SJV Advantage is a link but everything else is not.
Below is the code:
<ul style="float: left; width: 46%; margin-left: 4%; list-style: square; line-height: 27px;">
<li><a href="fitness/fitness-membership-packages/">Fitness Membership Packages</a></li>
<li><a href="fitness/personal-training/">Personal Training</a></li>
<li><a href="fitness/fitness-classes/">Fitness Classes</a></li>
</ul>
<ul style="float: left; width: 46%; margin-left: 4%; list-style: square; line-height: 27px;">
<li><a href="physiotherapy/sjvadvantage">SJV Advantage</a></li>
<li><a href="about-us/our-team/">Our Team</a></li>
<li><a href="about-us/blog/">Read Our Blog</a></li>
<li><a href="about-us/links/">Links</a></li>
</ul>
Thanks,
Wai
Comments
as we see, you are using html link tag. For that tag, links must be complete (with http:// protocol).
Thanks!