• I would like to change the H1 in to lettertype “Century Gothic” 11,5
    can someone help me?
    i have the code below as is
    it is website url http://www.gooische-kookstudio.nl

    <div class="col col1">
    <?php query_posts('pagename=kookworkshops'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <h1 class="entry-title"><a>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
        <a>" class="content" rel="bookmark" title="<?php the_title(); ?>"><?php echo get_my_excerpt(); ?></a>
    <a href="/kookworkshops">» Lees meer</a>
        <a>" rel="bookmark"><?php the_post_thumbnail('thumbnail', array('class' => 'alignleft')); ?></a>
    <?php endwhile;?>
    </div>

Viewing 1 replies (of 1 total)
  • Fonts are set in the CSS code (not php), so you’d need to modify it there. In this case, try using:

    h1.entry-title {
      styles here;
    }

    If that does not work, please ask Headway Themes for help – as commercial themes aren’t supported on these forums – partly because we don’t have access to theme and aren’t necessarily familiar with how they work.

Viewing 1 replies (of 1 total)
  • The topic ‘change font H1’ is closed to new replies.