Hi
How do I align the submit button to the right instead of left?
And better still, can I make it a text link button instead to make it match the rest of my site?
Thanks
Hi
How do I align the submit button to the right instead of left?
And better still, can I make it a text link button instead to make it match the rest of my site?
Thanks
Try to put this CSS code into the bottom of your form CSS code:
#li_buttons{
text-align: right;
}
#saveForm{
border: none;
}
You still need to adjust the styling of the button though, by modifying the properties of "#saveForm" above. The code above only remove the button borders.
You must log in to post.