• Hello,

    I’ve been learning alot of late and started using a childtheme.

    http://www.laxhjalpstockholm.se

    However with the theme I’m using there’s another file other than the style.css I want to override. It’s in a different folder and therefor doesn’t seem to load.

    I’m using Sublime Text 2 for coding.

    I’ve been experimenting with putting MY “site-banner.css” file in different locations, in a css folder in the childtheme, but I can’t get it to work.

    Help please 🙂

    Also, if you find anything I could improve or that I’ve made a mistake with the site, please tell!

    Regards

Viewing 1 replies (of 1 total)
  • Hi Jorpa,
    I do not know your Theme, but there is a rule that you need just one syle.css file in your child theme.
    There is no need to have more of them.
    You address css changes by classes or IDs

    If something is not working them you push your css element up my saying !<strong>important</strong>
    sample:

    .classname {
    background: green;
    }
    
    if is not working then:
    
    .classname {
    background: green!important;
    }

    If you do not want to use style.css from your child theme then install plugin:

    Simple Custom CSS
    ……and put your css here

    Feel free to talk further.
    Cheers
    TR

Viewing 1 replies (of 1 total)
  • The topic ‘I want to include another css file in my childtheme, how?’ is closed to new replies.