Forum Discussion
Web Objects blurry, especially text
- 2 years ago
Hello Everyone!
I'm happy to share that we have released Storyline 360 version 78 (Build 3.78.30680.0)!
Included in this release is the fix for the bug: HTML5: Web Objects With Images Are Blurry.
Now all you need to do is update Storyline 360 in your Articulate 360 desktop app on your computer. You'll find our step-by-step instructions here.
Please let us know if you have any questions by reaching out to our Support Engineers directly.
Have a great day!
Hello, I am experiencing still the same problem. Highly reduced quality and blury text after insterting it in Storyline 360 - latest update. Is there any solution so far?
the problem is the scaling with css transform of an iframe, that triggers the blurred text
add this small javascript on the slide with your web object
if( window.cssPatchWebObject !== "done") {
style = document.createElement('style');
style.textContent = `
.webobject {
width: 100% !important;
height: 100% !important;
transform: none !important;
};`
document.body.appendChild(style);
window.cssPatchWebObject = "done";
}
now the web object is not scaled anymore - the text is sharp
- PraktiKant2 years agoCommunity Member
Thank you very much. I will try it out.
- AngelaKim2 years agoCommunity Member
Adding the javascript worked for me! Thank you so much for sharing this solution.
- NadiaField-bb4c11 months agoCommunity Member
Hi Jürgen. I've tried your code which has fixed the blurry problem on my embedded pdf. However, I'm now getting a duplicate window in the bottom of my web object. Any idea how to fix this please?
I used this javascript code that you suggested:
if( window.cssPatchWebObject !== "done") {
style = document.createElement('style');
style.textContent = `
.webobject {
width: 100% !important;
height: 100% !important;
transform: none !important;
};`
document.body.appendChild(style);
window.cssPatchWebObject = "done";
}