Conversation
supportHi, very nice plugin dude! Just a question: how do I customize colors? is there a way to better integrate plugin functions/template into template in use on website?
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');
fine, I’ll make a try.
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');
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');
fine, I’ll make a try.
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');