This topic is locked

Make Image blur

6/10/2019 9:16:49 AM
PHPRunner General questions
A
Abhijeet author

Hello Experts,
Greetings !
I have a simple scenario, I am using phprunner 9.8 on windows. I want to blur image in all records in line item, every line item has a unique image. Please let me know how to do it in phprunner.
Kind Regards

HJB 6/10/2019



Hello Experts,
Greetings !
I have a simple scenario, I am using phprunner 9.8 on windows. I want to blur image in all records in line item, every line item has a unique image. Please let me know how to do it in phprunner.
Kind Regards


https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/blur - online demo of CSS "blur" oriented varieties.
https://xlinesoft.com/phprunner/docs/customizing_layout_and_theme.htm - for PHPRunner 9.8 click on "non-bootstrap" link to view CSS code options.

A
Abhijeet author 6/17/2019



https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/blur - online demo of CSS "blur" oriented varieties.
https://xlinesoft.com/phprunner/docs/customizing_layout_and_theme.htm - for PHPRunner 9.8 click on "non-bootstrap" link to view CSS code options.


Hello,
I am not understanding where to go, It is a list6 layout and avenue style, can you please guide and give some code ? This effect is on every line item.
Thanks in advance.

admin 6/17/2019

You need to use Custom CSS for this purpose.
For instance, the following code will blur all images.

img {

filter: blur(4px);

}


Most likely you don't want all images to be blurred so you will need to figure out how to apply this CSS to images in the grid only.