CSS error on IE
mavimo - February 21, 2009 - 15:43
| Project: | Views Cloud |
| Version: | 6.x-1.0 |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | closed |
| Issue tags: | CSS |
Description
Hi, into IE there is some error on display (garland theme), i solve it by change CSS file, working solution is:
div.views-cloud ul {
list-style: none;
text-align: center;
line-height: 1.2;
}
div.views-cloud ul li, div.views-cloud div {
display: inline;
background: none;
padding: 0px;
margin: 0px;
}(other class are unchanged)

#1
Worked for me! Thanks
#2
Thanks, this solved issues in Zen subtheme too.
#3
I need some clarification on this issue. When you talk about a CSS error in IE, what are you referring to?
For example, I don't know if the problem I'm having in IE is the same as the fix is for. My problem is that when I hover over a link, a horizontal overflow scrollbar appears. Is this the same problem you have had?
#4
Thanks, this solved my problem. In IE my cloud was a single line, instead of wrapping to fit the page or block.
Removing the padding and margin in the code above allowed the tags to wrap and overlap.
#5
I think it is the following problem:
In IE 6 and 7 the tag cloud isnt a cloud. It is only a line of all tags.
Easiest way to solve that:
div.views-cloud ul li, div.views-cloud div {display: inline;
background: none;
padding: 5px;
margin: 10px;
/* white-space: nowrap; wegen IE 6 und 7 delted, works fine.*/
}
Delete the white space argument.
#6
I've committed the attached patch.
#7
Automatically closed -- issue fixed for 2 weeks with no activity.