CMS Development

Jlawal
Colaborador líder

CTA Button Alignment

resolver

Hello,

 

My CTA button won't center vertically. It either spills off of the button onto the banner or stays at the very bottom or top of it.

 

I'm told that there is some CSS that will move it up into the center. 

 

Is anyone able to help me with this?

2 Soluciones aceptadas
Jlawal
Solución
Colaborador líder

CTA Button Alignment

resolver

Thank you for replying! Still getting the hang of this so i've only just seen the notification.

 

I managed to resolve it but thank you for taking the time out to get back to me 🙂

Ver la solución en mensaje original publicado

areiter74
Solución
Participante

CTA Button Alignment

resolver

How did you resolve it? 

<edit>

Nevermind! Got it. 

Custom CSS, in-line: " margin: 0 auto; text-align: center; "

Ver la solución en mensaje original publicado

7 Respuestas 7
ndwilliams3
Asesor destacado

CTA Button Alignment

resolver

It's difficult to give a suggestion without seeing the page. Can you post the link to the page? 

Jlawal
Solución
Colaborador líder

CTA Button Alignment

resolver

Thank you for replying! Still getting the hang of this so i've only just seen the notification.

 

I managed to resolve it but thank you for taking the time out to get back to me 🙂

areiter74
Solución
Participante

CTA Button Alignment

resolver

How did you resolve it? 

<edit>

Nevermind! Got it. 

Custom CSS, in-line: " margin: 0 auto; text-align: center; "

adrian_davies
Miembro

CTA Button Alignment

resolver

Hi

I'm having this problem on a number of CTAs. I've entered that CSS into the custom CSS field but it is till not aligning centrally. Any ideas?

 

CSS field for centre alignmentCSS field for centre alignment

0 Me gusta
eobriant
Participante

CTA Button Alignment

resolver

This still isn't working for me. Anyone have any ideas? 

Jlawal
Colaborador líder

CTA Button Alignment

resolver

Try adding 'text-align: center;' to the modules css declaration in the template editor!

0 Me gusta
acollart
Participante

CTA Button Alignment

resolver

Not pretty, but this is what worked for us:

 

<!DOCTYPE html>
<html>
<head>
<style>
span {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<!--HubSpot Call-to-Action Code -->
<span style="border-width:0px;text-align: center;" .... 

<!-- end HubSpot Call-to-Action Code -->

</body>
</html>

0 Me gusta