I don't know how to make custom.less works ?

Hi. 

I'm trying to add custom css in my sugar app, i add my css inside off custom/themes/custom.less. I repair inside admin pannel and nothing happens. I don't have acces in global or i don't see any change.

Thanks for help.

Parents
  • Also, check your file permissions.

    I use:

    sudo chown -R  apache:apache * 

    sudo find . -type d -exec chmod 775 {} \;

    sudo find . -type f -exec chmod 664 {} \;

  • Hi, I've donne all of that already and nothing. I've put it this class inside to test and nothing

    @import (less) "../../include/bns_assets/css/general.css";

    .div-test {
        background-color: #e2bc74;
        color: #eb7227;
        font-size: 5rem;
    }
Reply
  • Hi, I've donne all of that already and nothing. I've put it this class inside to test and nothing

    @import (less) "../../include/bns_assets/css/general.css";

    .div-test {
        background-color: #e2bc74;
        color: #eb7227;
        font-size: 5rem;
    }
Children