Thank you for this theme, can you give me some guidance modifying the tag icon display? I attach 2 images to show what I am trying to achieve.
My post have lots of tags. and it looks 'busy or redundant' to have the icon next to each tag. I am an amateur, the only solution I can think of is to create a 1x1px Transparent 'tag_blue.png'

I see this in the .css, I cant find which .tpl file use this? I am not a programmer,or that smart:) for that matter

.meta .terms ul.links li {
background: url(images/tag_blue.png) left center no-repeat; /* LTR */
padding: 2px 0 2px 18px; /* LTR */

Thanks again for contributing this theme, you need to know that there are many many people who are greatful for your efforts,
"may a million Karma points ride the wind to your window:)"

_Jim

CommentFileSizeAuthor
multitags.jpg13.31 KBjjcheno
singletag.jpg17.14 KBjjcheno
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

hswong3i’s picture

Assigned: Unassigned » hswong3i
Category: feature » support
Status: Active » Needs review

Try to add the following code snippet into your custom.css. This will reset background for li items, but add background style to ul.links once only:

.meta .terms ul.links {
  background: url(images/tag_blue.png) left center no-repeat; /* LTR */
  padding: 2px 0 2px 18px; /* LTR */
}
.meta .terms ul.links li {
  background: none;
  padding: 0;
}

P.S. Please set the issue as fixed if this really get help :D

jjcheno’s picture

Status: Needs review » Fixed

Wow looks great, Thank You!

jjcheno’s picture

Wow looks great, Thank You!

Anonymous’s picture

Status: Fixed » Closed (fixed)

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