Site logo

Archived topic

Section:allignment different images to the button

5 replies · Started by domedele on November 3, 2019

Viewing posts 1–6 of 6

I want to allign image of different images at the bottom of the page.
I can modify the css?

Yes the last part of the page before the foot.
Flexbox is a plugin?

Hi there,

Flexbox is a CSS property.
Edit your Section and on the settings tab give it a CSS class of: logo-section

Then add this CSS to apply some flexbox magic:

.logo-section .generate-sections-inside-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.logo-section  .generate-sections-inside-container h4 {
    flex: 1 0 100%;
}

isn't very centered in the page but better

Looks like you changed the HTML in that section.
As it only contains the 4 logos remove ALL of the markup so it just contains the 4 images, no extra divs no grid columns and ill provide the CSS to align them.

This archived topic is closed to new replies.