Hello Vasiliy,
Thanks for your suggestion. We will add it to our wishlist.
...................................................
Sincerely,
Lilioneta
Nicepage Support Team
Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp
that's how i do it...
.blur {
-webkit-filter: blur(2px);
filter: blur(2px);
}
Hi,
what's news about blur effect in Nicepage?
It's good idea and tool for web designers..
Vasiliy,
There is, unfortunately, no answer about this feature yet. Thank you for your patience!
...................................................
Sincerely,
Nicepage Support Team
Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp
Hi,
what's news about blur effect in Nicepage?
It's good idea and tool for web designers..
Du you mean background blur?
I always do this with costum CSS.
https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter?retiredLocale=de
Hi,
what's news about blur effect in Nicepage?
It's good idea and tool for web designers..
Du you mean background blur?
I always do this with costum CSS.
https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter?retiredLocale=de
For example, blur in header on this website https://www.diadoc.ru/
Try using custom CSS
Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below.
.myclass {
/*background blur*/
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
/*background color and transparency*/
background-color: rgba(0, 0, 0, 0.6)
}
Last edited 29 September 2023 by Support Team
Try using custom CSS
Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below..myclass { /*background blur*/ backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); /*background color and transparency*/ background-color: rgba(0, 0, 0, 0.6) }
Cool! It's work! Thank you!
Last edited 29 September 2023 by Support Team
Try using custom CSS
Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below..myclass { /*background blur*/ backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); /*background color and transparency*/ background-color: rgba(0, 0, 0, 0.6) }
Last edited 29 September 2023 by Support Team