• Hello,

    A few words to mention some typos in style.css: some *= selectors miss double quotes.

    Line 303 before:

    a[href*=\.mp3]:before, a[href*=\.wma]:before, a[href*=\.ogg]:before, a[href*=\.m4a]:before {

    Line 303 after:

    a[href*=".mp3"]:before, a[href*=".wma"]:before, a[href*=".ogg"]:before, a[href*=".m4a"]:before {

    Line 310 before:

    a[href*=\.mp4]:before, a[href*=\.avi]:before, a[href*=\.flv]:before , a[href*=\.mov]:before, a[href*=\.m4v]:before {

    Line 310 after:

    a[href*=".mp4"]:before, a[href*=".avi"]:before, a[href*=".flv"]:before , a[href*=".mov"]:before, a[href*=".m4v"]:before {

    The W3C CSS 3 attribute selector spec is not extremely explicit about the use of double quotes, but the examples do have them.

    Same thing in the CSS WG Draft attribute selector spec.

    Hope this helps.

    (I discovered it while playing with a child theme of Universal and compiling it with Less).

    Matthieu

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Joe Dolson

    (@joedolson)

    Thanks for mentioning this! The spec is definitely not clear on that, but if it won’t compile with LESS written this way, that’s enough of a reason to switch it.

    I have 4.3, but I don’t have the plug-in option on my menu. Was it removed?

    Thanks.

    Theme Author Joe Dolson

    (@joedolson)

    Hi, Sherrie – It doesn’t seem like that’s the same question as this thread. If you have a support request, please open a new thread!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Double quotes missing in style.css (lines 303 and 310)’ is closed to new replies.