Closed (fixed)
Project:
Drupal core
Version:
5.8
Component:
theme system
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
14 Jul 2008 at 21:54 UTC
Updated:
14 Aug 2008 at 16:22 UTC
I am using the Marinelli theme and want to change the font size in one specific view, which I've titled 'school_view'. I've updated the style.css file in the themes/marinelli-5 directory to add the following code at the very bottom of the file, but it doesn't seem to be changing the font size.
.view-school_view {
font-size:0.1em;
}
How do I go about changing the font for this view?
Thank you!
Comments
Comment #1
youplatform commentedComment #2
youplatform commentedComment #3
zirvap commentedMy guess is that you need to be more specific in the CSS -- perhaps
p.view-school_view {
font-size:0.1em;
}
(or li.view-school_view or td.view-school_view or whatever).
If you install Firebug (http://getfirebug.com/) you'll get detailed information about where all the styling on your page is coming from, and you'll have a better idea of exactly what to change.
I'm setting this issue to "fixed", please change it back to "active" again if my answer didn't solve your problem.
Comment #4
youplatform commentedThank you very much!
Comment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.