• Hi!

    Is there an option to add hyperlinks in rows in the pro version of page builder?
    I want to make an image/the entire row into a clickable link.

    I tried searching the knowledge base but there was no answer
    http://docs.pootlepress.com/

    Thanks for your reply!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author pootlepress

    (@pootlepress)

    Hi,

    Not at the moment but it’s a nice idea – we’ll have a think about how to do something like this (i guess hover user feedback would be cool as well)

    Jamie

    Thread Starter nixiemartyn

    (@nixiemartyn)

    Thanks for the quick reply, Jamie!

    Yes, hover feedback would be cool as well. Perhaps making it possible to assign a css class to the row to make it consistent to whatever css is used on image links not placed in pootle.

    I think hover fx are great for links to make the site more responsive to the users.

    Here is the code I used for image links on a site, if there was an option for inline css for rows to use code like this I’d love it.

    /* Imagelink FX hover */

    a:link img {
    position: relative;
    opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    }
    a:hover img {
    cursor: hand;
    cursor: pointer;
    opacity: 0.9;
    filter: alpha(opacity=90); /* For IE8 and earlier */
    }
    img a.divLink {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    /* Makes sure the link doesn’t get underlined */
    z-index: 10;
    /* raises anchor tag above everything else in div */
    background-color: white;
    /*workaround to make clickable in IE */
    opacity: 0;
    /*workaround to make clickable in IE */
    filter: alpha(opacity=0);
    /*workaround to make clickable in IE */
    }
    /* end Imagelink FX */

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Feature request – add hyperlinks in rows’ is closed to new replies.