Support » Theme: Asteria Lite » Custom CSS feature escaping quote bug

  • I enter this:
    .logo h1 a, .logo h2 a, .ast_maintanace .logo h1 a {
    font-family: ‘Impact’;
    }

    I get this:

    /*USER’S CUSTOM CSS———————————————————*/
    .logo h1 a, .logo h2 a, .ast_maintanace .logo h1 a {
    font-family: \’Impact\’;
    }/*———————————————————*/

    which does not work

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Towfiq I.

    (@tislam100)

    Hi, Can you kindly try this:

    .logo h1 a, .logo h2 a, .ast_maintanace .logo h1 a {
    font-family: Impact;
    }

    Regards

    Your solution helps for that example, but with certain styles you need to use a \ character and Asteria Lite appears to strip that out, or add extra \ around quotes.

    For instance:
    blockquote::before{
    content: “\201C”;
    }

    and
    content: \201C;
    also loses its \

    Is that something that is allowed in the paid version, or is there another solution?

    Thanks,

    Jim

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom CSS feature escaping quote bug’ is closed to new replies.