You are viewing limited content. For full access, please sign in.

Question

Question

Changing the Change password buttons on the login page of Weblink

asked on May 16, 2016 Show version history

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

 

 

 

0 0

Answer

SELECTED ANSWER
replied on May 16, 2016 Show version history

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.

2016-05-16_1614.png
2 0

Replies

replied on May 16, 2016

Hi James, 

 

Thank you for the information, this is working brilliantly!

 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.