@ronald,
1. Thank you so much for the code and the time u take to help. I really appreciate it.
2. But I tried it and the layout stuck like that. Nothing happens.
3. Many people have prob setting up a child theme for this theme. And normal code that we insert in the child functions.php won’t cut it either.
Could it be because the code in functions.php is wrong? The only one I found working decently (but still problematic with the mobile) is zBlackbeard’s code
add_action( 'wp_enqueue_scripts', 'zblackbeard_enqueue_styles' );
function zblackbeard_enqueue_styles() {
wp_enqueue_style( 'zblackbeard-style', get_template_directory_uri() . '/style.css', array('zerif_bootstrap_style') );
}
function zblackbeard_remove_style_child(){
remove_action('wp_print_scripts','zerif_php_style');
}
add_action( 'wp_enqueue_scripts', 'zblackbeard_remove_style_child', 99 );
/**
* Declare textdomain for this child theme.
* Translations can be filed in the /languages/ directory.
*/
function zblackbeard_theme_setup() {
load_child_theme_textdomain( 'zblackbeard', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'zblackbeard_theme_setup' );
4. FYI, Zerif-Lite has these css :-
style.css
css/bootstrap-rtl.css
css/bootstrap.css
css/custom-editor-style.css
css/font-awesome.min.css
css/ie.css
css/pixeden-icons.css
css/responsive.css
css/style-mobile.css
css/zerif_customizer_custom_css.css
Do you know why your code doesn’t work ?