Home › Forums › Jevelin Theme › Child theme styling
Home › Forums › Jevelin Theme › Child theme styling
Hi
When I try and make ammendments to the child theme by adding them into the style.css, nothing happens. I followed the instructions by installing Jevelin first, then the child theme. I want to make some whole site changes to page padding and such.
Sam
Hi there,
Do you want to add some extra CSS code or edit our main style.css file?
Best regards
Shufflehound team
I’ve added it into the Theme Settings > Custom Code now within the Child theme. Thank you.
We are glad that this issue is fixed. ?
Sorry, i want to add some extra code. When i add it into the Custom code within the theme it gets over ridden by the code already in the main themes style.css
I am trying to move the breadcrumb to underneath the title. So it looks like
About Us
Home > About Us
http://external.gw-hs.org/about-us/
Sam
Hi there,
You can add !important at the end of your CSS snippets and that should overwrite it.
Like that:
.test-class {
color: red!important;
padding: 10px!important;
}