As the clear:both is on the header section for each new views row, if you don't put anything in the header then all the text overlaps.
![]()
In my case I just have fields in the middle and right.
I fixed it by putting
.views-row {
clear: both;
}however I feel that a better fix could be found.
| Comment | File | Size | Author |
|---|---|---|---|
| noclear.png | 55.99 KB | pbz1912 |
Comments
Comment #1
swentel commentedI'm afraid that's the best solution there is. It's also nearly impossible to cover all cases regarding css (at least in the D6 version), so this is good. Changed the title to reflect this if other people are having the same problem.
Comment #2
chinita7 commentedI had the same problem but fixed by putting the CSS described above. Thanks.