Links inactivated when "float" applied
-
In the Text Widget, when I try to apply a float to a div, my links become inactive (unclickable.) They work fine when the float is removed.
Any suggestions?
The blog I need help with is: (visible only to logged in users)
-
Resolved. The issue was only with FF and Chrome and was fixed by adding a “clearing” element after the divs:
I added this to the CSS:
.clear {
float: none;
clear: both;
font-size: 0;
line-height: 0;
height: 0;
}And added this after the divs in the html:
<b class="storywidget clear"></b>
- The topic ‘Links inactivated when "float" applied’ is closed to new replies.