Joe Sharples
Posts: 0
Joined: Mon Aug 18, 2014 1:31 pm

transparent blurred header

I've made the header transparent and blurred using this style:

pre.ui-header {
-webkit-filter: blur(20px);
-moz-filter: blur(20px);
-o-filter: blur(20px);
-ms-filter: blur(20px);
filter: blur(20px);
opacity: 0.4;
}/pre

This works but it blurs all the header.
I'm just wanting to blur the background of the header, not the header title, buttons and images.

how would I apply the code above to just the background?

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

transparent blurred header

Hi Joe -

Have you tried this solution: https://devcenter.appery.io/documenta...

Joe Sharples
Posts: 0
Joined: Mon Aug 18, 2014 1:31 pm

transparent blurred header

I looked there but couldn't find a solution to what I want to achieve

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

transparent blurred header

Hi Joe,

Filter css style affects on whole container including all child elements.

Thus you can not implement what you want in this simple way.

But you can dynamically add some container with blured background in the header element.

Please read more about approach here: http://jordanhollinger.com/2014/01/29...

Regards.

Joe Sharples
Posts: 0
Joined: Mon Aug 18, 2014 1:31 pm

transparent blurred header

Thanks I will look into it shortly

Return to “Issues”