Possible BUG in CSS combination functionality
-
Hello!
I may have spotted a bug when enabling CSS combination.
In my stylesheet I have some rules like:
background-image: url('/wp-content/[something]/image.jpg');
Those works fine if CSS are not combined.
When enabling CSS combination, those rules are rewritten like:
background-image: url(https://www.somesite.com//wp-content/[something]/image.jpg)
Note the missing quotes (‘) and the double slash (//).
To make the option work, I replaced all rules with the static url like so:
background-image: url(https://www.somesite.com/wp-content/[something]/image.jpg)
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Possible BUG in CSS combination functionality’ is closed to new replies.