• Resolved area97

    (@area97)


    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

    (@wpamanuke)

    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

    (@wpamanuke)

    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

    (@area97)

    fine, I’ll make a try.

    Hi!
    How can I change the font?

    Plugin Author wpamanuke

    (@wpamanuke)

    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.