CMS Development

Jlawal
Contributeur de premier rang

CTA Button Alignment

Résolue

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 Solutions acceptées
Jlawal
Solution
Contributeur de premier rang

CTA Button Alignment

Résolue

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 🙂

Voir la solution dans l'envoi d'origine

areiter74
Solution
Participant

CTA Button Alignment

Résolue

How did you resolve it? 

<edit>

Nevermind! Got it. 

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

Voir la solution dans l'envoi d'origine

7 Réponses
ndwilliams3
Conseiller clé

CTA Button Alignment

Résolue

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

Jlawal
Solution
Contributeur de premier rang

CTA Button Alignment

Résolue

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
Solution
Participant

CTA Button Alignment

Résolue

How did you resolve it? 

<edit>

Nevermind! Got it. 

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

adrian_davies
Membre

CTA Button Alignment

Résolue

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 Votes
eobriant
Participant

CTA Button Alignment

Résolue

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

Jlawal
Contributeur de premier rang

CTA Button Alignment

Résolue

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

0 Votes
acollart
Participant

CTA Button Alignment

Résolue

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 Votes