Hello,

I just upgraded my D6 to D7. One of the changes I realized is that with the new Pixture Reloaded, the site name (on top of the site) appears very large (actually it does a line break here) and all of the letters are capitals. Is there a way to configure this? I would like to have a smaller font and not this capitals-only-behaviour.

Thanks a lot
mdatab

Comments

beedaddy’s picture

Title: site name too large » site name appears too large
Jeff Burnz’s picture

Well the only way right now is to use CSS, its in pixture_reloaded.css - you can either add a custom stylesheet or use Footheme and make a subtheme, or hack the theme if you don't mind redoing it after each upgrade.

Heres the relevant CSS styles you probably want to change or override:

#site-name {
  font-size: 2.6em;
  line-height: 1.3em;
}

In the next major version I am adding font size control for this site name (and many other titles, menus etc).

beedaddy’s picture

Thanks Jeff, this is what I expected. I'll have a look at the CSS styles.