Is there a way to re-position the forms logo above the forms title instead of having it on the left or right side?
Question
Question
Answer
Can you try the code below under Custom CSS and Javascript tab?
#form-logo { float:none !important; }
And because the system will calculate the padding for form title automatically to save the space for the logo to be on left/right. So you might get the form title have a very big space to the side. If that is not what you want, you need to specify the padding for the form title.
For example, when I add the Google logo (using Google as an example), I put it as left align, and it would be like this.
After I add the previous CSS, it would be like this.
The logo is now up there but there's undesired space. So you might need to adjust the padding for Form title similar to this (or other style that you would like it to be).
Let me know if you have more questions.
Replies
How can I do this but get the logo right aligned and the form title centered?
Hi Alon,
First you should be able to make Logo right align by set the Alignment option under Themes tab in forms designer to Right as below picture.
Then you can go to the CSS and JavaScript tab, add the css below to make the form title centered.
Hope this is what you want. Let me know if you have more questions.
Thanks for the tip Ming!