By jay888 on
Hello,
I have a problem displaying tag clouds in a block. I using tagadelic module to display the tag cloud. The block is not displaying weighted tags (i.e more often a tag is used, the larger its font size). The tag cloud page at www.mysite.com/tagadelic is displaying a weighted tag cloud. But the tag cloud in the block is displaying all tags with the same size.
Does anybody know how to fix the weighted tag cloud block ?
Thanks
Jay
Comments
CSS
Hi jay,
It's most probably a CSS error.
Be sure that your CSS theming is all right. Use tools like Firefox Web Developer Toolbar extension or the FireBug extension for debugging your code.
Alex
I am using newsportal theme.
I am using newsportal theme. The CSS for the block (using webdeveloper plugin for Mozilla) is
#left_side p, #right_side p (line 151)
{
margin-right-value: 10px;
margin-left-value: 10px;
margin-left-ltr-source: physical;
margin-left-rtl-source: physical;
margin-right-ltr-source: physical;
margin-right-rtl-source: physical;
margin-top: 15px;
margin-bottom: 15px;
font-family: verdana,arial,sans-serif;
font-size: 11px;
line-height: 16px;
color: rgb(51, 51, 51);
}
What changes should I make to CSS to show weighted tags ?
Thanks
Jay
I wonder if this is the same issue I am having...
On the chunk page view, the term links are just a string of words - as expected. In the block view, they are rendered as a bulleted list. I would expect a string of words a là chunk page. I am viewing the code when making these observations.
Block code: bulleted list == no cloud
Page code: string of words == cloud
I am using 5.0 versions and tested with all core themes.
This is happening in the current post block.
Advanced Web Design
similar problem
did you ever solve this problem?
I have a similar (even worse) problem with Tagadelic. After having all kinds of problems I have the tags working, but they are not weighted. (meaning they are all the same font size, and in the html have been assigned the class="level1" no matter how many times the same tag has been entered.) I'm using community tags, tagadelic, and drupal 5.1
anybody have an idea what im missing here?
Same problem here
I basically had to create an explicit CSS entry in my stylesheet for the block.
This fine since I will have other clouds that will be in the page that will I don't want to have as small of text.
that's what's in the module
So weird, because those classes are basically what's in the module. Perhaps there was a problem when you FTPed the module.
Might I also recommend to any tagadelic users to try out a little opacity in the last two or three steps of link CSS classes. Looks hot.
CSS
I know this is and old thread, but...
I had the same problem today. A quick look with Firebug had shown that "A" style for blocks had an explicit font-size set, and that style was overriding tagadelic's level-styles.
The solution was to make an even more specific style for A.tagadelic with no font-size declaration (specific styling for A with no .tagadelic lead to block's style still overriding - by default - the font-size attribute).