Hi @haruharaizzy
Thank you for using Ef Practical theme.
Paste this code to customize -> Additional CSS
.header-image {
-webkit-box-shadow: none;
box-shadow: none;
}
Regards.
Hi, thank you for that. It didn’t work but I think it’s an issue with the child theme as I can’t get other tidbits to work either.
Thanks 🙂
Hi @haruharaizzy
in function.php paste:
// Add style.css
function practical_child_enqueue_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'practical_child_enqueue_styles', 11 );
and style.css
/*
Theme Name: Ef Practical Child Theme
Author:
Author URI:
Description:
Version: 1.0.0
Template: ef-practical
*/
@import url("../ef-practical/style.css");
.header-image {
-webkit-box-shadow: none;
box-shadow: none;
}
Inform me if it works.
Regarts
Hi @effpandim
I can paste into function.php but I get an @import not allowed here when I try save the style.css
Hi @haruharaizzy
Create from the beginning a new child theme and add inside what I have already written in the above message.
Regards