1
I’m trying to make a Section like the one in the image below, but I’m having some trouble positioning the circles the way I need to.
In the green part it is to have a text and the box of it should overwrite the header (image that is above), I did it by placing a negative margin-top, I do not know if this is the best way, but my difficulty is in doing the next Section, with the 6 circles.
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 order-lg-2">
<div class="row">AQUI ENTRA 3 CIRCULOS E UM TEXTO ABAIXO DELES</div>
<div class="row">AQUI ENTRA 3 E UM TEXTO ABAIXO DELES/div>
</div>
<div class="col-lg-6 order-lg-1 box-green">
<h2 class="display-3">Texto da parte verde.</h2>
</div>
</div>
</div>
</section>
I made the circles, but I don’t know how I can put a text inside them and an icon inside.
I think I didn’t make myself understood well, it would be a word under each circle. But thank you very much anyway, it helped a lot.
– Guilherme Rigotti
@Guilhermerigotti I now understood better I made a revision of the code now it became as you needed. I had to divide the grid and col-4 for you to have 3 equal columns up and down, with the ball and the text.
– hugocsl