Home › Forums › Support › hero page with registration form This topic has 4 replies, 3 voices, and was last updated 6 years, 5 months ago by David. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts November 21, 2019 at 4:50 am #1070229 newmedianewpeople.com I have to make a “hero page” like this one https://ibb.co/SxKT8n7 tips ? please no page builder 🙂 November 21, 2019 at 5:45 am #1070314 LeoStaff Customer Support Hi there, The header element should be what you are looking for: https://docs.generatepress.com/article/header-element-overview/ You can see some examples here: https://docs.generatepress.com/article/page-hero-examples/ Also some step by step guide: https://docs.generatepress.com/article/how-to-create-a-page-hero/ Let me know if this helps 🙂 November 21, 2019 at 6:19 am #1070404 newmedianewpeople.com Thank You Leo 🙂 I had already seen the tutorials but how do I divide the space into 2 containers? November 21, 2019 at 7:13 am #1070807 LeoStaff Customer Support Try the flexbox method similar to this article here: https://docs.generatepress.com/article/split-header-three-sections/ Just need to make it 2 <div> with width: 50%; Let me know if this helps 🙂 November 21, 2019 at 7:15 am #1070816 DavidStaff Customer Support Hi there, try this for your HTML <div class="hero-grid"> <div class="hero-grid-container"> <!-- Your top left hmtl --> </div> <div class="hero-grid-container"> <!-- Your bottom right hmtl --> </div> </div> and this CSS: @media (min-width: 769px) { .hero-grid { display: flex; } .hero-grid-container { flex: 1 0 50%; padding: 20px; box-sizing: border-box; } } Author Posts Viewing 5 posts - 1 through 5 (of 5 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In