Is it possible to move my contact form or any added block to sit inside of my image banner ? Right now, whenever I add a block to my image banner, the block sits either on top or on the bottom of the actual image banner and I want it to be inside my image banner. I’ve attached a screen shot of my current “contact us” page.
Theme: Origin
URL: billon.maison
Hi @MaisonBillonDon those are different SECTIONS and one is static, they aren’t meant to nest inside each other.
A rough hack is to absolutely position the contact sections content.
Use a custom css setting and something like the following CSS:
READ: https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css
#shopify-section-template--16312504123458__contact_form_HtmwYp {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100vh;
opacity: .8;
}
test thoroughly.
If you need further customization then contact me for services.
Contact info in forum signature.
ALWAYS please provide context, examples: store url, theme name, post url(s) , or any further detail in ALL correspondence.
Thank You! @PaulNewton Is it possible to move the position of the contact form further down than how it looks in the screen shot that I provided? I’d like it to be a little more in the center of the screen but when I change the top and bottom numbers in the code you provided, the contact form does not move up or down.
@MaisonBillonDon try margin-top or padding-top,
top,bottom,left,right are used to make sure absolutely position elements dimensions match the current viewport dimensions.