In page.tpl.php
is used a couple of times. Following http://www.sitepoint.com/css-architectures-new-best-practices/ there is more modern ways to solve this issue.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | issue-1963550.patch | 1.49 KB | lsolesen |
In page.tpl.php
is used a couple of times. Following http://www.sitepoint.com/css-architectures-new-best-practices/ there is more modern ways to solve this issue.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | issue-1963550.patch | 1.49 KB | lsolesen |
Comments
Comment #1
lsolesen commentedI used the existing clearfix on all the divs, and it seems to work allright.
Comment #2
acke commentedGood idea! Makes the code cleaner! Commited to 7.x-2.x HEAD and going into next release.
Comment #3
acke commentedI found out that clearfix should be a class, for example
<div id="logo clearfix">won't work. But:
<div id="logo" class="clearfix">works. I change this and push to 7.x-2.x HEAD.