WPIntell

Source evidence

customization

Resume / CV · support · 2018-02-19T12:13:00+00:00

questionsentiment
mediumseverity
0.72relevance
5replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 25 rows with source links

24.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

19 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
area97 resolved
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? 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');

Comments

5 shown
wpamanuke 2018-03-08T11:17:00+00:00

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');

wpamanuke 2018-03-08T11:22:00+00:00

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');

area97 2018-03-19T11:00:00+00:00

fine, I’ll make a try.

asalto 2018-07-17T09:28:00+00:00

Hi! How can I change the font?

wpamanuke 2018-11-05T13:07:00+00:00

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');