End Of Survey | HTML Help | XM Community
Solved

End Of Survey | HTML Help

  • 9 June 2023
  • 3 replies
  • 78 views

Userlevel 6
Badge +5

Hi Everyone

Hope you’re all well.

I have used HTML in an EOS message.

The HTML is.

<div style="text-align: center;"><span style="font-size:13px;">Close by clicking&nbsp;Give Feedback</span><br />
<br />
&nbsp;</div>

<div><a href="www.TEST.com" style="display: block; height: 50px; width: 180px; background: #01FF95; color: #262626; text-align: center; font-weight: bold; font-size: 125%; line-height: 50px; font-family: Arial; border-radius: 5px; text-decoration: none;">Feedback Again</a></div>

<div style="text-align: center;">&nbsp;</div>

And looks like this.

 

How do I more the CTA button button to far right?

Hope you can help.

:) 

icon

Best answer by ArunDubey 9 June 2023, 16:41

View original

3 replies

Userlevel 4
Badge +10

Hello @parkie_0007  Can you let me know if this works?

 

<div style="position: relative;">
  <input type="text" style="width: 300px;">
  <a href="www.TEST.com" style="position: absolute; bottom: 0; right: 0; height: 50px; width: 180px; background: #01FF95; color: #262626; text-align: center; font-weight: bold; font-size: 125%; line-height: 50px; font-family: Arial; border-radius: 5px; text-decoration: none;">Feedback Again</a>
</div>
 

Userlevel 7
Badge +32

You can use.

<div style="float: right;"> <a . . . . . . . .

output

 

Userlevel 7
Badge +35

@parkie_0007 

<div style="text-align: center;"><span style="font-size:13px;">Close by clicking&nbsp;Give Feedback</span><br />
<br />
&nbsp;</div>

<div><a href="www.TEST.com" style="display: block; height: 50px; width: 180px; background: #01FF95; color: #262626; text-align: center; font-weight: bold; font-size: 125%; line-height: 50px; font-family: Arial; border-radius: 5px;float: right;text-decoration: none;">Feedback Again</a></div>

<div style="text-align: center;">&nbsp;</div>

Leave a Reply