Active
Project:
Pixture
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
15 Jan 2009 at 03:27 UTC
Updated:
17 Jan 2009 at 15:25 UTC
I am trying to change the font-size or font-family of class valam in style.css but it doesn't work for some reason.
In style.css I have
.valam {
font-weight: bold;
font-size: 1.3em;
font-family: Arial;
}
And in the panels I have this
$vid = 4; /* <---- put correct vocabulary ID here */
$class = "valam";
$items = array();
$terms = taxonomy_get_tree($vid);
foreach ( $terms as $term ) {
$count = taxonomy_term_count_nodes($term->tid);
$items[] = l($term->name,'taxonomy/term/'.$term->tid)." (".$count.") ".$term->description;
} /* end foreach */
print '' . theme('item_list', $items, NULL, 'ul', array('class' => $class)) . '';
Comments
Comment #1
tbals commentedYou need to save theme settings again after editing style.css.
Regards
Thomas
Comment #2
tanyi commentedI tried that but it is still not working.