Project:Views Cloud
Version:6.x-1.0
Component:Code
Category:bug report
Priority:critical
Assigned:Unassigned
Status:closed (fixed)
Issue tags:CSS

Issue Summary

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)

Comments

#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

Status:needs review» fixed

I've committed the attached patch.

AttachmentSize
views_cloud_nowrap.patch 546 bytes

#7

Status:fixed» closed (fixed)

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