Tagged: font, LayerSlider
Hi I want to use a google font with the layer slider and I cant find it in the list of fonts in the layerslider add font section
the font i want to use is:
@import url(http://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
font-family: ‘Open Sans Hebrew’, sans-serif;
How can I add it to the layerslider?
ok problem solved adding the following code to functions.php:
function include_font() {
?>
<style>
@import url(http://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
body{
font-family: ‘Open Sans Hebrew’, serif;
}
</style>
<?php
}
add_action(‘wp_head’, ‘include_font’);