the only color customization available is in customizer->colors.
-
This reply was modified 9 years, 3 months ago by
Richie KS.
Ideally you should write your own CSS rules ina separate file to override default theme CSS rules and enqueue it through your theme’s functions.php file.
For example you create your own CSS rules in a file called ‘my-custom.css’. Then you need to put it like this in functions.php:
function add_custom_resources(){
wp_enqueue_style('my-custom', get_stylesheet_uri(), array(), mt_rand(), 'all');
}
add_action('wp_enqueue_scripts', 'add_custom_resources');
This will ensure that even you update the theme your overridden rules will not get affected still remain in your custom style sheet.
Hope this helps.
Thank you, very informative… yes I was afraid it might be something like that 😉 I don’t know how to work with css, so that’s a bit of a setback. Alas.
@subrataemfluence
thx for the info, actually using customizer->general->custom css, also won’t overwrite when update unless you reset the customizer tho.
@janbletz
yeap, afraid i can’t guide on css customization step by step.
Of course not… maybe this could be an extra feature in the next version of this theme. Would really be great. Or write a guide how to tweak each individual element? I’m sure I’m not the only one who’s strubbling with css.
Or maybe a few standard skins? That would help too.
I tried a few plugins btw, including styles, but this only seems to work with The WordPress Twenty Fifteen theme (and older).