• Resolved appliedarts

    (@appliedarts)


    I’d like to have default h1, h2, and h3 styles be sans-serif; and default paragraph style be serif. I tried using the css editor to add these font-families; and tried a child theme; neither seemed to work. In fact I didn’t find the fonts in the styles.css. suggestion?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi appliedarts

    I recommend create a child theme

    http://codex.wordpress.org/Child_Themes

    Note:

    Parent theme style sheet is loaded automatically.

    You do not need to do something like the following

    like below

    @import url("../twentytwelve/style.css");
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    
    }

    Please open fonts.css ( raindrops fonts.css copy and paste childthemes/fonts.css when using child theme )

    change your own fonts

    Another way for font family with entry content

    Raindrops support Google Fonts (support fonts almost 90% over )

    <p class="google-font-lobster f26">Google Font lobster font size near 26px</p>

    font size class f10(10px) – f26(26px)
    Thank you

    Thread Starter appliedarts

    (@appliedarts)

    thanks – you are very very responsive to questions! I already gave you 5 star review and would like to make it even more stars.
    I did a minor tweak to the fonts.css and I’m good to go!

    THanks for the tip re google fonts- not familiar with how to use those but I will check that out.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Can the default fonts be changed?’ is closed to new replies.