Anchor Links in Header not linking

February 2014 WordPress Theme
GK User
Thu Mar 06, 2014 9:44 am
Hello! Nice congrats for the amazing theme!

Quick question, I'm afraid can't sort it out...

Using a text widget I placed on the header some simple html code with icons and links.

https://www.hotelrsv.com/es/blog/test-l ... 382813940/

But, as you can see, the social media icons on the header are not linking even if they are indeed anchors!

I placed the same code in the Main Body Top and on the footer and those work, only the header is not working. I'm open to changing anything in the code! Any guess?

Code on the text widget (don't be deceived by the names of the classes, it's not a plugin, it's just HTML code and I'm using the CSS of a plugin!)

Code: Select all
<div class="crafty-social-buttons crafty-social-link-buttons">
<ul class="crafty-social-buttons-list"><li><a class="crafty-social-button csb-facebook" href="http://www.facebook.com/hotelrsv" target="_blank"><img title="Facebook" alt="Facebook" src="https://www.hotelrsv.com/es/blog/wp-content/plugins/crafty-social-buttons/buttons/simple/facebook.png"></a></li>

<li><a class="crafty-social-button csb-twitter" href="http://twitter.com/@hotelrsv" target="_blank"><img title="Twitter" alt="Twitter" src="https://www.hotelrsv.com/es/blog/wp-content/plugins/crafty-social-buttons/buttons/simple/twitter.png"></a></li>

<li><a class="crafty-social-button csb-google" href="http://plus.google.com/+hotelrsv" target="_blank"><img title="Google" alt="Google" src="https://www.hotelrsv.com/es/blog/wp-content/plugins/crafty-social-buttons/buttons/simple/google.png"></a></li>

</ul></div>
User avatar
Senior Boarder

GK User
Thu Mar 06, 2014 1:22 pm
Hello,

Great to hear that you like this theme.

Regarding your questions, #gk-top div is positioned absolutely and cover your links. you have 2 options, you can add this code into css/override.css file (don't forget to enable this option from Template Options -> Advanced tab):
Code: Select all
#gk-top {
   position: static;
}


or you can postion absolutely your social icons with this code:
Code: Select all
#gk-header .crafty-social-buttons {
   position: absolute;
}
User avatar
Moderator


cron