1. frankw1
  2. Commercial Templates
  3. Thursday, 01 March 2012
  4.  Subscribe via email
Hi,

I need help changing the font family of the areas denoted in the attached screen cap. Specifically, I'd like to change the type family to serif (is currently sans serif) and need the left column heads to be one color rather than two (blue and black) as seen in the screen cap. The current template seems to use black for first word and then blue for second word in column heads. Would like all words int he column heads to be same color. I know how to edit the CSS styles in template manager, but wasn't able to see this font and color spec to change.

Edit: I figured out how to change the color issue, but still need help with changing that font family.

Thanks in advance for your help.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi

The template uses a cufon font for the article and module headers so you must first disable this by removing the following code from the head of your templates index.php (../templates/j51_mountainpine/index.php)

<script type="text/javascript" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/js/cufon-yui.js"></script>  
<script type="text/javascript" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/js/cufon.font.js"></script>
<script type="text/javascript">
Cufon.replace('h2, h3, h2 a:link,h2 a:visited, .contentheading, .sidecol_block h3, .sidecol_block_menu h3, .moduleblock1 .module h3, .moduleblock1_menu .module h3');
</script>


Next to set the font-family to that of your choice add the following to the end of your templates template.css (../templates/j51_mountainpine/css/template.css)

h2, h3, h2 a:link,h2 a:visited, .contentheading, 
.sidecol_block h3, .sidecol_block_menu h3,
.moduleblock1 .module h3, .moduleblock1_menu .module h3 {
font-family:serif !important;
}


Hope this helps

CiarĂ¡n
  1. more than a month ago
  2. Commercial Templates
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
That worked like a charm. Thanks much!
  1. more than a month ago
  2. Commercial Templates
  3. # 2
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!