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
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.