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)

CommentFileSizeAuthor
#6 views_cloud_nowrap.patch546 bytesquicksketch

Comments

StevenWill’s picture

Worked for me! Thanks

sunshinee’s picture

Thanks, this solved issues in Zen subtheme too.

Courtney.B’s picture

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?

kddailey’s picture

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.

Timbalord’s picture

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.

quicksketch’s picture

Status: Needs review » Fixed
StatusFileSize
new546 bytes

I've committed the attached patch.

Status: Fixed » Closed (fixed)
Issue tags: -CSS

Automatically closed -- issue fixed for 2 weeks with no activity.