Background Image in all the page

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
Bishu
User
Posts: 432

Background Image in all the page

Post by Bishu »

I would like to put a background image in the Left Top Corner of all the page.
and this background image should not be scroll (means even when the page is scroll down the background image should be shown in the Left Top corner.)

Anyone please help me.

Thanks in advance.


danielc
User
Posts: 1599

Post by danielc »

click [HTML]->[Styles]->[Edit Styles] and add your class below /* your CSS styles here */:

.bgimage {
background-image:url('yourimage');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:left top;
}

And add your class to <body> by jQuery's .addClass() to put code in Client Scripts->Global->Pages with header/footer->Startup Script, or use "body" selector in above directly.


Post Reply