• Dears, I am having trouble in getting the hyperlink for the items in the widget (no. 2 from above, right side) to work. The widget code is: <!– start widget code –><script type=”text/javascript” src=”https://www.feedspot.com/widgets/Assets/js/wd-iframecontent.js&#8221; data-wd-id=”1a4eDPKy714c”></script><!– end widget code –>

    I asked Feedspot for support and they replied:

    The code should look like this
    .sidebar .widget-title {
    position: relative;
    font-size: 15px;
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 0 0 17px;
    margin: 0 0 15px;
    float: left;
    }

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator t-p

    (@t-p)

    Are you referring to Feedspot Widget by https://www.feedspot.com/widgets/ ?

    Moderator bcworkz

    (@bcworkz)

    It’s the position: relative; rule they gave you. Relative positioning causes elements to not properly take up their usual space, such that the subsequent widget creates an invisible overlay preventing access to Feedspot elements.

    Change the position property to static and the elements should become interactive.

    Thread Starter Ocean2070.com

    (@havbloggen)

    Great, thanks for reply. Actually what i did was to copy the Iframe version code, then it worked.

    Thread Starter Ocean2070.com

    (@havbloggen)

    Dears, where do I edit this code? Looked at themes edit but could not find it?

    Want to change “relative” to “static” as advised.

    .sidebar .widget-title {
    position: relative;
    font-size: 15px;
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 0 0 17px;
    margin: 0 0 15px;
    float: left;
    }

    Moderator bcworkz

    (@bcworkz)

    It’s at line 1510 of your theme’s style.css. You can simply override it by placing the following into the Additional CSS panel of the customizer:

    .sidebar .widget-title {
    	position: static;
    }

    N.B. — The links in the widget are now working for me without this change. Adding it anyway doesn’t seem to make any difference now, but it did solve the problem last week.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Activate hyperlink in widget from Feedspot Widget’ is closed to new replies.