You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem :
You have a 404 page with a very large background (but < 24ko), jpg style
You have 2 css files : core + template.
You use css js booster to merge, minify and data uri your code. Then the large background is data uried and you have a BIG css file.
Solution :
When calling css markup, if we could provide a ignore file with on each line some characters like :
404
big
big_image
Then when css js booster parses the CSS file, when he find an image he wants to data uri, it has to check if the image uri does not contain one of the keywords of the ignore file
This could be an ignore file but an array or a string can do the work too.
I know this sounds a weird idea and that could be solved by making a css file only for the 404 page, then you lost the merging benefits.
What do you think ?
The text was updated successfully, but these errors were encountered:
Problem :
You have a 404 page with a very large background (but < 24ko), jpg style
You have 2 css files : core + template.
You use css js booster to merge, minify and data uri your code. Then the large background is data uried and you have a BIG css file.
Solution :
When calling css markup, if we could provide a ignore file with on each line some characters like :
Then when css js booster parses the CSS file, when he find an image he wants to data uri, it has to check if the image uri does not contain one of the keywords of the ignore file
This could be an ignore file but an array or a string can do the work too.
I know this sounds a weird idea and that could be solved by making a css file only for the 404 page, then you lost the merging benefits.
What do you think ?
The text was updated successfully, but these errors were encountered: