Does anyone know how to place a logo in the background of a Laserfiche Form in 10.2?
Does anyone know how to place a logo in the background of a Laserfiche Form in 10.2?
Have you tried setting a background image here under Enter an image URL?
Yes, I copied the URL for the logo over and this is what I get.
How about within the Form Body URL field?
Yes, I did try that first this is what I got.
Try setting the tiling to none.
I clicked on None and it removed all the logos that were showing. This form may have to go without the background logo.
Thank you for all your help trying to figure this out.
I clicked on None in the Form Body and it shows just one logo now but it seems to be underneath the title.
So the first problem you'll run into is that the Form Body includes the page title section so if you apply a background there it will also be off center and under the title.
You could use CSS to apply the background image to the form element so it wouldn't be under the title, but the background-image property does not support opacity so unless you create a lighter version of your image, it may be too dark.
.cf-form { background: url(https://yourlink/yourimage.jpg); background-repeat: no-repeat; background-position: center; background-size: contain; }
Another approach would be to use a custom HTML element and adjust the positioning to basically create your own background image container that would allow independent opacity, but that would require a lot of manual positioning.
Jason,
Thank you for the information, I will give it a try and see what happens.
It worked. It took me awhile to do the sizing but it actually worked. Thank you very much.