Problem with color definitions in CSS included in head-tag

  •  01-31-2006, 2:55 PM

    Problem with color definitions in CSS included in head-tag

    Just discovered that my templates with css-styles included in the head are not handled properly.
     
    F.ex - if I have defined two styles like this:
     
    .color1 {
        color: #004455;
    }
    .color2 {
        color: #ffffff;
    }
     
    color1 is saved like #04455 (stripping one 0).
    color2 is saved properly.
     
    Another save makes color1 save like #4455; (stripping another 0)
     
    Sometimes color1 is saved like #O4455; (note the O-letter as in Oh, instead of 0 (null)).
     
    It looks like it is not handling prepending #0's. I have set the following settings (amongst others), but it doesn't make any difference:

    .EncodeHiddenValue = False
    .UseHTMLEntities = False
    .UseSimpleAmpersand = True


    Is there a fix for this?
     
View Complete Thread