Cristocea Costel
Cristocea Costel

Reputation: 93

A href tag is not working

Strange thing happens, I have this code, on my wordpress site:

    <a href="www.google.com" target="_self" class="facebook" ><img src="<?php echo get_template_directory_uri(); ?>/images/facebook.png"/></a>

The image is loaded, but is not clickable, I mean nothing happens when I click on it, what's wrong?

The link to my page is: http://toibz.com/ibz. Click on the "facebook" logo in the lower right corner.

Upvotes: 0

Views: 2992

Answers (2)

Mike B
Mike B

Reputation: 32155

Set position:fixed on the a tag instead of floating it.

Upvotes: 0

mgraph
mgraph

Reputation: 15338

add http:// to your link like:

 <a href="http://www.google.com"..

Upvotes: 2

Related Questions