Developer forum

Forum » Rapido » Alignment send button

Alignment send button

Gerard Kocks
Gerard Kocks
Reply

Hi,

Is it possible to align the send button of a form (via forms for editors) to the left instead of right?

Best regards
Gerard

Align_button_in_FFE.png

Replies

 
Martin Gammelholm
Martin Gammelholm
Reply

Hi Gerard,

There is no functionality to control the position of the button in the CMS. But you can easily control it from the template.

Open the form template which is used on the paragraph.
Find the submit button and replace the standard u-pull--left class with u-pull--right.
Or you can insert your own class and style it the way you want.

 

BR
Martin

form.png
 
Nicolai Pedersen
Reply

You can only do that with css in ignite:

form input[type=submit].u-pull--right{
    float:left;
  }

BR Nicolai

 
Nicolai Pedersen
Reply

@Martin: No template changes!! Just use css... :-)

 

You must be logged in to post in the forum