I am making a desktop theme website for practicing purposes and I cannot seem to redirect my current page to a normal website such as Google. I think the problem lies with the href.
<li><a href="" ></a><span class = "icon-google-plus2 "></span> Google +</li>
I would post all the code but its quite lengthy. I have read up about the problem where the javascript may interfere but I am barely using it so I doubt that is where the problem lies.
TIA.
I am making a desktop theme website for practicing purposes and I cannot seem to redirect my current page to a normal website such as Google. I think the problem lies with the href.
<li><a href="http://www.google.co.za" ></a><span class = "icon-google-plus2 "></span> Google +</li>
I would post all the code but its quite lengthy. I have read up about the problem where the javascript may interfere but I am barely using it so I doubt that is where the problem lies.
TIA.
Share Improve this question asked Apr 10, 2017 at 13:45 AquasylumAquasylum 593 silver badges10 bronze badges1 Answer
Reset to default 9your link don't have any content... you have to wrap your span with a tag:
<li>
<a href="http://www.google.co.za" >
<span class = "icon-google-plus2 "></span>
Google +
</a>
</li>