Page 1 of 1

Add background image or change background color for Login/Register page

Posted: Thu Sep 09, 2021 11:21 am
by vintoICT

How can I add background image to the login page and registration page.
style="Background-image: ('Img/back.PNG');"
Not working


Re: Add background image or change background color .Login and register page

Posted: Thu Sep 09, 2021 12:53 pm
by arbei

You better add your CSS under HTML -> Theme -> User tab. Press F12 in your browser to find out which HTML element you should add background image to. Also read CSS background-image.


Re: Add background image or change background color .Login and register page

Posted: Tue Feb 08, 2022 10:57 pm
by vintoICT

.wrapper .content-wrapper {
background-color: #fff;
min-height: calc(100vh - calc(3.3125rem + 1px) - calc(3.5rem + 1px));
}

affects the whole site. I could not get a unique element for login page .


Re: Add background image or change background color for Login/Register page

Posted: Tue Feb 08, 2022 11:40 pm
by arbei

You may change Config("BODY_CLASS") by Page_Load server event to add CSS class to the body tag to distinguish pages.


Re: Add background image or change background color for Login/Register page

Posted: Tue Dec 06, 2022 4:09 am
by rvanore

I am trying to make an image the background of the left side menu area for the entire site. I need to add a custom class to uniquely identify a page with on the wrapper or the body.

and was trying this, Config("BODY_CLASS") by Page_Load

I added CurrentPageHeading()

<div class="wrapper ew-layout <?php echo CurrentPageHeading() ?>">

becomes

<div class="wrapper ew-layout Login">

We would like to use this but are unsure how to code it or perhaps a different method? Any assistance would be greatly appreciated.

Thank you.


Re: Add background image or change background color for Login/Register page

Posted: Tue Dec 06, 2022 8:37 am
by mobhar

You may simply use Page_Foot server event.