
Announcements
Hello Everyone,
Currently i am working on the power pages site customization(signup page)here i am struck in the change in the UI part like customizing the background image and the layout for that i am using the content snippet (Account/sign in /Page copy file) to make the UI changes but its not reflecting in the UI
please find the below code for the reference:-
Hi @pramodkg05 ,
As per our understanding, you're encountering an issue where customizing the background image and applying custom CSS is not reflecting on the UI. It seems that your CSS is being overridden. Please follow the steps below:
1. Go to the code snippet, create a new file named Account/SignIn/PageCopy if it doesn't exist, and select the HTML type.
<style>
#content{
height="81vh"
}
#content-container{
display:flex
!important;
max-width:100%
!important;
background:white
!important;
padding :
0px !important;
!important;
background-repeat:
no-repeat !important;
}
#mainContent{
background:
rgb(239
239 239 /
40%);
backdrop-filter:
blur(5px)
!important;
/ border-radius:
15px; /
}
#content-container
input{
background:white
!important;
}
#content-container
input::placeholder{
/ background:#a3a3a3 ; /
}
.mb-3 > label{
display:none
!important;
}
.mb-3 > div{
margin:0px
!important;
}
.form-group{
/ margin-left :
10px !important; /
}
.mb-3 input:not(input[type="checkbox"]),.mb-3
button, .mb-3
a {
width:230px
!important;
}
#imgContainer{
width:65%;
height:81vh;
background-repeat:no-repeat ;
background-size:
100% 100%;
}
.login-heading-section {
display:none
!important;
}
#mainContent >
.row{
display:
flex !important;
flex-direction:
column !important;
justify-content:
center !important;
align-items:
center !important;
height: 70.9vh
!important;
}
#idMapyrogo{
width:230px;
}
</style>
Output:-
Thanks!