Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #187503

    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

    #187609

    Hey erantdo!

    What are you trying to do? What is the position of your icon? Is it top or left?

    Regards,
    Ismael

    #187643

    Hi Ismael,
    It’s a top iconbox.
    I’m just trying to make the font hyperlink as weel, just like the title has

    #187890

    Page URL: http://www.valuation.co.il/home?theme=enfold

    It’s at the bottom of the page, right before the footer

    #188551

    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

    #188632

    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.

    #189076

    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

    #189080

    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;
    }
    #189083

    Yep, i forgot about that, glad we could help :)

    Regards,
    Josue

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘iconbox link’ is closed to new replies.