Many thanks guys!
I`m not an expert but it the WordPress is telling me that using a Child Theme is the best practice I would prefer to stick to that ??
I do need an @import rule to bothe style.css and main.css of the Parent Theme to override the Child Theme. Otherwise nothing will happen.
I found some code on the net to put it in the functions.php of the Child Theme and it works but Im not sure if it
s correct:
(source: <a href=”https://support.forcg.com/topic/child-css-module”>https://support.forcg.com/topic/child-css-module</a>)
<?php
function skt_remove_scripts() {
wp_dequeue_style( 'skt_full_width-main-style', get_template_directory_uri()."/css/main.css", array('skt_full_width-layout') );
wp_deregister_style( 'skt_full_width-main-style', get_template_directory_uri()."/css/main.css", array('skt_full_width-layout') );
wp_dequeue_style( 'skt_full_width-main-style', get_template_directory_uri()."/style.css", array('skt_full_width-layout') );
wp_deregister_style( 'skt_full_width-main-style', get_template_directory_uri()."/style.css", array('skt_full_width-layout') );
wp_enqueue_style( 'skt_full_width-main-style', get_stylesheet_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'skt_remove_scripts', 20 );
?>