• Hello!

    My site – 12field.com.au, I’m using WordPress 3.6, referencing a theme called Ronika.

    As it’s best practice for modifications, I’ve set up a child theme. I have created a new folder in the Themes folder, and named it 12field. In that folder I have a new copy of the .css file, ready for my modifications. At the top have this information, referencing the Template and an @import link.

    Theme Name: 12field
    Version: 1.0
    Author: Simone Bennett
    Template: ronika

    @import url(“../ronika/style.css”);

    But when I make changes to the .css file in the child folder, nothing happens. If I make changes to the .css file in the Ronika folder, then the changes appear fine. I don’t even think Ronika is loading my child .css file at all. It’s like it doesn’t exist.

    The php files in the Child folder change fine.

    Been playing with it for hours, I’ve contacted the theme’s developer and he doesn’t know.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    But when I make changes to the .css file in the child folder, nothing happens.

    Have you activated that theme? Looking at your site only shows the Ronika theme.

    This URL http://www.12field.com.au/wp-content/themes/12field/style.css is not correct either. You’ve copied the whole parent CSS file into there and that’s not necessary.

    It should just be something like this.

    /*
    Theme Name:     12field Theme
    Description:    Child theme for the Ronika theme
    Template:       ronika
    Version:        1.0
    */
    
    @import url("../ronika/style.css");

    See how the @import is after the */ comment mark? It needs to be outside of the comments in order to work. After that line try your CSS rules.

    Thread Starter simbennett

    (@simbennett)

    Thanks for helping, Jan!

    I made your changes to the child css file. Now it only has one rule in it AFTER the */ comment mark.

    In my rules I’ve made the font Times New Roman. It still won’t change though. It remains ‘Signika’ font from the parent css.

    The 12field Theme is activated the the Themes section of my dashboard. It says:

    Current Theme
    12field
    By Anonymous
    Version 1.0
    Child theme for the Ronika theme
    This child theme requires its parent theme, ronika.

    I’ve got my own theme thumbnail in there too that’s appeared.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    At the moment can you activate your Child Theme?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Have you also talked with the theme’s vendors as to whether that theme supports Child Themes?

    Thread Starter simbennett

    (@simbennett)

    Hi Andrew, thanks for helping 🙂

    Yes, in the dashboard I can activate the Child Theme. It appears, with my custom thumbnail, name, version, author info. I activate it and it appears at the top of the page with no error message. Current Theme
    twelvefield it says.

    I have contacted the parent theme’s developer. He can’t tell me why it’s not working (not sure how deeply he thought about it though).

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I assume that theme doesn’t support Child Themes.

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Andrew is onto something *waves in the direction of Andrew* and some theme’s don’t follow best practices and can’t/won’t be turned into a child theme.

    If you’ve followed the child theme instructions correctly and it’s still not working then you’ll really need the theme author to support you and explain what your options are.

    Thread Starter simbennett

    (@simbennett)

    Yep, I’ve contacted the developer, hopefully he’ll get back to me soon.

    My guess is that the parent stylesheet is being loaded after the child, or the child is being ignored completely, because of something in the functions.php file or header.php file.

    I see ‘get_template_directory’ written several times in functions.php.

    Down the bottom of this tread it’s mentioned: http://wordpress.org/support/topic/child-theme-help-parent-stylescss-still-showing?replies=7

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Child theme css file not overiding parent css file’ is closed to new replies.