Fade a page.

Hi

Sorry if this is in the wrong section.

i have a php page and i want to put a shadow over top of the page and a banner across the page saying “coming soon” can this be done??

If you need anymore information please ask.

Dave

Basically, All you need to do is put

tags around your content and set the opacity level you like and with the color of white. Which should fade it out.

[php]


Your content
[/php]

[php]

Banner body { background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNjY2MiPjwvcmVjdD4KPC9zdmc+"); padding: 0; margin: 0; } .banner { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; box-shadow: 2px 2px 3px rgba(0,0,0, 0.5); display: block; width: 100%; max-width: 100%; height: 100%; max-height: 200px; padding: 10px; background-color: rgba(204,204,204,0.2); text-align: center; } .headingStyle { font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; font-size: 2.2rem; color: green; }

Coming Soon!!!

[/php]

background-color: rgba(255,255,255, 0.2); for a transparent white background. :wink:

Sponsor our Newsletter | Privacy Policy | Terms of Service