Taxonomy icons

tknospdr - April 7, 2007 - 01:18
Project:bluebreeze
Version:5.x-1.2
Component:CSS
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active
Description

I'm testing out all the mods that I use on my Drupal 4.7 site in a test Drupal 5.1 environment so that I can get my upgrade to go smoothly.

I've installed this theme and I noticed that the 'mini-category.png' next to taxonomy terms has it's bottom cut off. I've tested this with 4 different browsers now, and when I go to the Bluebreeze demo site I see the same phenomenon. In one browser the bottom of the icon actually shows up on top of itself, like it's tiling.

The fix for this is to go into the style.css for the theme and change this:

.taxonomy li.first {
  background: url(images/mini-category.png) no-repeat 0 2px;
  padding-left: 15px !important;
}

to this:

.taxonomy li.first {
  background: url(images/mini-category.png) no-repeat;
  padding-left: 15px !important;
}

Thanks,
David
http://www.FloridaPets.org
321.961.5281

#1

tknospdr - April 8, 2007 - 00:04

As a follow up to this, the icons in the node links (the ones next to the 'Add new comments', 'delete', 'edit', and 'reply' links) were also cut off. the solution to this is as follows, under the node links section of style.css:

Change:

.comment .links {
  font-size: 90%;
}

to:

.comment .links {
  font-size: 95%;
}

#2

tknospdr - April 8, 2007 - 11:51

Make that 96%, the very tip of the 'Add new comment' icon was still being cut off.

#3

hquadrat@hquadr.at - July 13, 2007 - 03:44

Thanks, this fixed this issue for me too...
I wonder why such bugfixes did not go into the actual release... is the module still being maintained?

#4

hquadrat@hquadr.at - July 13, 2007 - 03:55

Another minor "bug", if one uses the adsense injector module and the google-ad shall be displayed in the upper-right corner below the taxonomy-tags: when many categories/tags are applied to a node and the taxonomy-icons spread onto two lines - this might cause an undesirable layout.

Change in style.css at lines 771 the corresponding padding to 2em:

.meta {
  padding-bottom: 1em;
}

#5

tknospdr - July 14, 2007 - 18:53

Glad to see this helped someone else!

Thanks,
David
http://www.FloridaPets.org

 
 

Drupal is a registered trademark of Dries Buytaert.