Regarding this: https://kriesi.at/support/topic/iconbox-link-2/
What I meant is that it didn’t work for me, as nor did the solution in the original post.
Can you please reopen the case and share a solution so other users will benefit as well?
Thanks a lot
Hey erantdo!
What are you trying to do? What is the position of your icon? Is it top or left?
Regards,
Ismael
Hi Ismael,
It’s a top iconbox.
I’m just trying to make the font hyperlink as weel, just like the title has
Page URL: http://www.valuation.co.il/home?theme=enfold
It’s at the bottom of the page, right before the footer
Shalom!
You can link the content as shown here http://i.imgur.com/8LdV0Dv.jpg
and add following code to Quick CSS in Enfold theme options under Styling tab
.iconbox_content_container a { color: inherit; }
.iconbox_content_container a:hover { text-decoration: none; color: green; }
Regards,
Yigit
Hi Yigit, I meant the icon (which is a font). I’m sorry if I was misunderstood, I thought it was clear from the other threads I quoted.
Hey!
Add this code at the end of js/avia.js:
jQuery(".iconbox").each(function(){
var theLink = jQuery(this).find("a").attr("href");
jQuery(this).on("click", ".iconbox_icon", function(){
window.location.href = theLink;
});
});
Cheers!
Josue
Thanks!
btw, to whom it may concern, I also added a CSS code so the cursor will change to a pointer on hover. Otherwise, users won’t know the icon is a hyperlink:
#top .main_color.iconbox_top .iconbox_icon:hover {
cursor: pointer;
}
Yep, i forgot about that, glad we could help :)
Regards,
Josue