- Posts: 2
Before asking for help please read "Requesting Help and Suggestions" by clicking on that tab above here.
Question Background login page
- dumonts
-
Topic Author
- Offline
- New Member
-
Less
More
2 weeks 6 days ago #1
by dumonts
Background login page was created by dumonts
Hello,
I'm new to Webtress,
Could someone explain to me where I can modify the background of the login page in order to change the fonts and add a background image?
Thanks a lot.
I'm new to Webtress,
Could someone explain to me where I can modify the background of the login page in order to change the fonts and add a background image?
Thanks a lot.
Please Log in or Create an account to join the conversation.
- bertkoor
-
- Offline
- Platinum Member
-
- Greetings from Utrecht, Holland
2 weeks 5 days ago - 2 weeks 5 days ago #2
by bertkoor
stamboom.BertKoor.nl runs on webtrees v1.7.13
Replied by bertkoor on topic Background login page
In the Control Panel under Modules there is one for JavaScript and CSS. That's where these things can be changed... once you know how.
With the development tools - element inspector of my browser I see the following structure of the login page:
A good candidate for a background on the page is class wt-route-LoginPage. I think you need to do something alike this CSS styling:
With the development tools - element inspector of my browser I see the following structure of the login page:
Code:
<head>
...
</head>
<body class="wt-global wt-theme-webtrees wt-route-LoginPage">
...
</body>
A good candidate for a background on the page is class wt-route-LoginPage. I think you need to do something alike this CSS styling:
Code:
.wt-route-LoginPage: {
background-image: url("/public/login-background.png");
}
stamboom.BertKoor.nl runs on webtrees v1.7.13
Last edit: 2 weeks 5 days ago by bertkoor.
Please Log in or Create an account to join the conversation.
- dumonts
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 2
2 weeks 5 days ago #3
by dumonts
Replied by dumonts on topic Background login page
Thanks,
i have tr
i have tr
Please Log in or Create an account to join the conversation.