By default, the selected banner will be displayed at the width in pixels of your survey. The CSS snippet will show the banner across the entire width and top of the survey
/*add full width banner with logo to your survey*/
/*the banner image can be set in the survey appearance > Banner tab*/
.banner div.center,
.banner h1.center {
border-radius: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
align-content: center;
margin: 0 auto;
background: #000;
padding-top: 20px
}
.banner div.center img,
.banner h1.center img {
padding-bottom: 10px
}
.pageWrapper {
/* Margin to ensure that the survey is not under the banner */
margin-top: 5rem;
/* Margin to ensure that the survey is not under the footer */
margin-bottom: 5rem;
}
/*add full widht footer with logo to your survey*/
.footer:after {
position: fixed;
width: 100%;
bottom: 0;
height: 4rem;
background-color: #000;
left: 0;
background-image: url(URL TO LOGO MEDIA LIBRARY);
background-repeat: no-repeat;
background-size: 4rem;
background-position: center;
content: '';
color: transparent
}
Comments
0 comments
Please sign in to leave a comment.