Hello ,
Sorry for long reply . I just recognized there is question in the forum .
TO customize color . in your theme functions.php .. just add this if you want inline css
function area97_customcss() {
echo '<style>
body {
background:#ff0000;
}
</style>';
}
add_action('resumecv-footer','area97_customcss');
If you want to use external css here is the example :
function area97_external_css() {
echo "<link rel='stylesheet' href='". get_template_directory_uri() . '/public/area97.css' ."' type='text/css' media='all' />";
}
add_action('resumecv-footer','area97_external_css');
Hi!
How can I change the font?
just add in your functions.php / your own plugin this code
function asalto_external_css() {
echo '<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i">';
echo '<style>
body {
font-size:20px;
}
h1,h2 {
font-size:30px;
}
</style>';
}
add_action('resumecv-footer','asalto_external_css');