I'm working on this page: http://mockingbirdagency.com/thebox/profilestack.html
Trying to put some breadcrumbs together but they give shifting the profile title bar below and I haven't been able to figure out why, anybody can help ?!
I'm working on this page: http://mockingbirdagency.com/thebox/profilestack.html
Trying to put some breadcrumbs together but they give shifting the profile title bar below and I haven't been able to figure out why, anybody can help ?!
In your style sheet, add the css rule:
#content-container { clear: both; }
The problem is that the floating bread crumbs are floating beside your content, you need to explicitly tell your content vertically clear them.
One solution is to add this element right under the "breadcrumbs-container" div
:
<div style="clear:both"></div>
This will clear the floated div
s above it.
Additionally, you should only have one div
with the id li-bread. Id's are not meant to be duplicated on the same page. Consider using a class instead of an id.