Custom CSS not working

  • strivept
    Asked on June 24, 2015 at 8:13 PM

    I was using the designer and added the code to make sure all the labels were set to auto width and in the designer I see it working but when I switch to preview mode I don't see the changes.  Is there something just wrong with the preview mode?

    .form-label.form-label-left {
        width:auto;
    }

  • jonathan
    Replied on June 24, 2015 at 10:06 PM

    try adding the !important to emphasize the rule also.. like this

    .form-label.form-label-left {

        width:auto !important;

    }

    Custom CSS not working Image 1 Screenshot 30

     

     

    it will mess up the design though when in effect

    Custom CSS not working Image 2 Screenshot 41

     

    Thanks.