I can't center a section

Hi,

I am lost. I tried several ways, but the address section found at the bottom right of this page is not centered as I am expecting. Any idea why?

I don’t know how much you can edit when using Bootstrap, but if possible add display:flex; and justify-content:center; to the footer-address class so it becomes . . . .

.footer-address {
  padding-top: 15px;
  display: flex;
  justify-content: center;
}

Do you want the short dashed line below and to the left of “Contacto”?

2 Likes

Just having a quick play. The same can be achieved in the HTML markup.

<div class='footer-address d-flex justify-content-center'>
  <ul>
  ...
  </ul>
</div>
3 Likes

Thank you, this fixed the issue.

@Archibald I also fixed the short, dashed line below “Contacto”

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.