Hi civicsitedesign
open fonts.css (if using child theme, copy from parent to child fonts.css )
fonts.css line:18
for example
try change like below.
/**
* The example of use Google WEB Fonts*/
@import url(http://fonts.googleapis.com/css?family=Indie+Flower);
/* horizontal menu bar */
#access .menu-item{
font-family: 'Indie Flower', cursive;
}
/* Sidebars */
@import url(http://fonts.googleapis.com/css?family=Parisienne);
.lsidebar a,
.rsidebar a,
.lsidebar .widgettitle span,
.rsidebar .widgettitle span,
#site-title span{
font-family: 'Parisienne', cursive;
}
By the way
You can use google fonts automaticaly at entry content.
<p class="google-font-lobster">fonts lobster</p>
No needs style setting.
Please see post-new.php help tab.
Thank you.
That works great. Thank you!