I have created several website using Marinelli 6.x, but upon trying to develop in 7.x, I am having difficulty finding theme "components" such as font size, font color etc. In 6.x they were in the 4 css files (layout.css, graphic.css, typography.css and links.css).

Can someone please share instructions for how to change the font size of text on a basic page in 7.x?

Thanks

CommentFileSizeAuthor
#3 font-size.patch462 bytesBhumikaVarshney
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

solodky’s picture

I had luck fixing mine in typography.css at:

 8 /* Default font settings.
  9    The font-size percentage is of 16px. (0.75 * 16px = 12px) */
 10 html { font-size:100.01%; }
 11 body,
 12 .form-text,
 13 .form-textarea {
 14   font-size: 85%;
 15   font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
 16   color:#333333;
 17 }
 18 

original font size: was 75% ,,so changing it to 85% helped. changing it to 100% broke my site for some reason

Lynn Amy de la Breteque’s picture

Issue summary: View changes

Is this for all the text or simply the header text? I want to enlarge my header and slogan text and change the font style too.

BhumikaVarshney’s picture

FileSize
462 bytes

This patch is to change the font-size globally so if the screen size is changed the font is also adjust as per the view port.
By this the default font-size is 16px and if you want to change header and slogan font you can use this id "title-slogan" and apply the font-size as per the requirement.

BhumikaVarshney’s picture

Status: Active » Needs review

gaurav.kapoor’s picture

gaurav.kapoor’s picture

Status: Needs review » Fixed

The font size looks appropriate now. Thanks.

Status: Fixed » Closed (fixed)

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