I'm trying to entlarge the text-size of the secondary links in the header, see attachment. Does anybody know how to entlarge this text.

Thanks in advance

CommentFileSizeAuthor
Secondary links.JPG30.88 KBRompie
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Deepika.chavan’s picture

Hi,
Please create a custom css file named say 'local.css' in your theme directory i.e. 'themes/pixture/.' and add following line of code in pixture.info file.
stylesheets[all][] = local.css

Please Clear Cached data.

Code to be added in local.css to change the font size :

#subnavlist a {
  font-size:16px;
}

Rgrds,

Deepika Chavan.

Rompie’s picture

Hi Deepika Chavan

Thanks for your respond, i write my comments in CAPITAL

Please create a custom css file named say 'local.css' in your theme directory i.e. 'themes/pixture/.' DONE
and add following line of code in pixture.info file. --> stylesheets[all][] = local.css DONE, DO I HAVE TO DELETE THE OTHER LINE STYLESHEETS[ALL][] = STYLE.CSS?

Please Clear Cached data. HOW TO CLEAR THE CACHED DATA?

Code to be added in local.css to change the font size : --> #subnavlist a { font-size:16px;} WHERE TO PUT THIS LINE, BELOW YOU'LL SEE THE CURRENT CODE IN MY LOCAL.CSS FOR NAVLIST/SUBNAVLIST?

#navlist a {
font-weight: bold;
color: #ffffff;
}
#subnavlist {
padding: 0.5em 1.2em 0.4em 0;
font-size: 0.8em;
color: #aaaaaa;
}
#subnavlist a {
font-weight: bold;
color: #aaaaaa;
}

Rgrds,

R. Ottes

Deepika.chavan’s picture

Hi,
1) Please do not delete other lines (i.e. STYLESHEETS[ALL][] = STYLE.CSS). Just add
stylesheets[all][] = local.css below that line.
2) You can clear cashed data here -> http://YOUR_SITE/admin/settings/performance.
3) Please replace your code with following code in local.css file .

#navlist a {
  font-weight: bold;
  color: #ffffff;
}
#subnavlist {
  padding: 0.5em 1.2em 0.4em 0;
}

#subnavlist a {
  font-weight: bold;
  font-size: 1.5em;
  color: #aaaaaa;
}

Rgrds,

Deepika Chavan.

Jonathan61190’s picture

Hi,
Please create a custom css file named say 'local.css' in your theme directory i.e. 'themes/pixture/.' and add following line of code in pixture.info file.
stylesheets[all][] = local.css

Hi can you help me with this? Is there a better for newbies way to explain that? Im trying to do the same. I want to be able to modify just the secondary links.

Thank you