Title: customization
Last modified: February 19, 2018

---

# customization

 *  Resolved [area97](https://wordpress.org/support/users/area97/)
 * (@area97)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/customization-86/)
 * Hi, 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?

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [wpamanuke](https://wordpress.org/support/users/wpamanuke/)
 * (@wpamanuke)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/customization-86/#post-10052436)
 * 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');
       ```
   
 *  Plugin Author [wpamanuke](https://wordpress.org/support/users/wpamanuke/)
 * (@wpamanuke)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/customization-86/#post-10052449)
 * 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');
       ```
   
 *  Thread Starter [area97](https://wordpress.org/support/users/area97/)
 * (@area97)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/customization-86/#post-10090063)
 * fine, I’ll make a try.
 *  [asalto](https://wordpress.org/support/users/asalto/)
 * (@asalto)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/customization-86/#post-10500507)
 * Hi!
    How can I change the font?
 *  Plugin Author [wpamanuke](https://wordpress.org/support/users/wpamanuke/)
 * (@wpamanuke)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/customization-86/#post-10849163)
 * 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');
       ```
   

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘customization’ is closed to new replies.

 * ![](https://ps.w.org/resume-cv/assets/icon-256x256.png?rev=2013596)
 * [Resume / CV](https://wordpress.org/plugins/resume-cv/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/resume-cv/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/resume-cv/)
 * [Active Topics](https://wordpress.org/support/plugin/resume-cv/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/resume-cv/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/resume-cv/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * 5 replies
 * 3 participants
 * Last reply from: [wpamanuke](https://wordpress.org/support/users/wpamanuke/)
 * Last activity: [7 years, 6 months ago](https://wordpress.org/support/topic/customization-86/#post-10849163)
 * Status: resolved