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

youplatform’s picture

Project: Marinelli » Drupal core
Version: 5.x-1.2 » 5.8
Component: Code » drupal.css
youplatform’s picture

Component: drupal.css » theme system
zirvap’s picture

Status: Active » Fixed

My 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.

youplatform’s picture

Thank you very much!

Anonymous’s picture

Status: Fixed » Closed (fixed)

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