remvoing margins | XM Community
Skip to main content
I am creating a form that will be embedded on a webpage. I am looking to remove all margins, but primarily the header and footer so there isn't space between the top of the form and the first question. I've tried adding some code and it hasn't worked so far. Any ideas?



Here's some of the code I found on previous discussions that I tried:



.Skin #Logo {

height: 0px !important;

}

.Skin .SkinInner {

padding-top: 0px !important;

}

.Skin label.QuestionText {

display: unset;

}
Hi @jjablonk!



this is the best I was able to do, the footer is a little bit difficult, but i think it can get close to what you are looking for. I hope this works







.Skin .SkinInner {

padding-top: 0px;

}



.Skin #LogoContainer {

padding-top: 0px;

}



.Skin #BrandingFooter, .Skin #Footer {

margin-top: 0px;

margin-bottom: 0px;

padding-bottom: 0px;

}
@ana_velez_voce This is great, thanks!

Leave a Reply