CMS Development

Matt1986
Participante

Vertically Aligning images

resolver

Hi

 

I have tried several ways to vertically align some images in the middle of a div. however I cant seem to solve this issue. 

I have provided a link to the page im working on and would really appreciate some help with the CSS required.

 http://www-eurobase-com.sandbox.hs-sites.com/our-partners?hs_preview=CYWkVcAE-6002374269

 

Thanks for any help!

 

Regards

Matt

0 Avaliação positiva
1 Solução aceita
tjoyce
Solução
Especialista reconhecido(a) | Parceiro Elite
Especialista reconhecido(a) | Parceiro Elite

Vertically Aligning images

resolver

@Matt1986 - try: 

.logo-tile-wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

If this answer helped, please, mark as solved 😄


tim@belch.io | forms.belch.io | Design your own Beautiful HubSpot Forms; No coding necessary.

 

Drop by and say Hi to me on slack.

Exibir solução no post original

0 Avaliação positiva
4 Respostas 4
tjoyce
Solução
Especialista reconhecido(a) | Parceiro Elite
Especialista reconhecido(a) | Parceiro Elite

Vertically Aligning images

resolver

@Matt1986 - try: 

.logo-tile-wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

If this answer helped, please, mark as solved 😄


tim@belch.io | forms.belch.io | Design your own Beautiful HubSpot Forms; No coding necessary.

 

Drop by and say Hi to me on slack.

0 Avaliação positiva
karengerberry
Participante

Vertically Aligning images

resolver

Is there inline styling you can do to accomplish this?

0 Avaliação positiva
Stephanie-OG
Conselheiro(a) de destaque

Vertically Aligning images

resolver

In addition to Tim's post, I always use this resource for centring things (you'll see it's pretty much what he recommended).

 

I thought it might come in handy if you need to centre anything else as it can be a pain!

 


Stephanie O'Gay Garcia
HubSpot Design / Development / Automation
Website | Contact

0 Avaliação positiva
arielservadio
Participante

Vertically Aligning images

resolver

Thanks for providing this helpful resource, Stephanie! It's very frustrating that the ability to control the vertical alignment of images in an inherent in the editor in Hubspot. Is there any CSS based solution that is responsive? The solution above works in desktop view, but not mobile.

0 Avaliação positiva