Site logo

Archived topic

hero page with registration form

4 replies · Started by newmedianewpeople.com on November 21, 2019

Viewing posts 1–5 of 5

I have to make a "hero page" like this one
https://ibb.co/SxKT8n7
tips ?

please no page builder :-)

Thank You Leo :-)
I had already seen the tutorials but how do I divide the space into 2 containers?

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;
    }
}
This archived topic is closed to new replies.