Feedspot Widget
by https://www.feedspot.com/widgets/ ?
]]>
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.
]]>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;
}
.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.
]]>