Hi,
How would i change the size of the box to change the password and perhaps some more space between the button and the error msg that pops up?
Thanks
Hi,
How would i change the size of the box to change the password and perhaps some more space between the button and the error msg that pops up?
Thanks
Hi Gert,
Thanks for bringing this to our attention. I filed SCR 144252 to address this in the UI for a future release.
In the meantime, this can be fixed by editing C:\Program Files\Laserfiche\WebLink\Web Files\WebLinkStyles.css. (This is the global CSS file for WebLink, so be wary of editing too much...) Open in a text editor and search for the class ".LoginError". Add a line so that code block looks as follows:
.LoginError { margin: 10px 0; display: block; }
After saving the file, you don't need to restart anything, just do a hard refresh of the page (Ctrl + F5), and it should display below the form buttons as expected (example in attached image).
Hope this helps!
UPDATE: I guess I only answered half of the question. To make the input fields stretch all the way across like the others, you can edit the same file by searching for and editing the code block below:
.LoginSquare select, .LoginSquare input[type="text"], .LoginSquare input[type="password"] { height: 28px; margin-top: 10px; width: 100%; }
In the unedited CSS file, the block in question can be found in lines 2545-2550; you need to add the "width" property.