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 squibstress.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
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 squibstress.wordpress.com.
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 {<br />
float: none;<br />
clear: both;<br />
font-size: 0;<br />
line-height: 0;<br />
height: 0;<br />
}
And added this after the divs in the html:
<b class="storywidget clear"></b>
This topic has been closed to new replies.