I changed the image and had problems with the size and alignment. Now I have set the following CSS styles and so the image is set as background for this column. This way it looks great even with different screen sizes.
.lpx-login-image-area img { display: none; } .lpx-login-image-area { background-image: url("/Themes/LeptonX/Global/assets/img/login-bg.jpg"); background-position: right; background-repeat: no-repeat; background-size: cover; }
Thanks for reporting this, I'll discuss this with the team and we'll try to improve the customization of the background image of the login page.
Best Regards.
Do you know then how we can change the picture on the login screen?
Thank you
Hi, you can add an image to the /Themes/LeptonX/Global/assets/img/login-bg.jpg path. When you do that, your image will be used in the background on the login screen.
There is a watermark in the background image, so you might remove that. To do that:
.lpx-brand-logo.lpx-login-big-logo {
display: none;
}
Hi @ageiter, I've created a test issue (internal - #11909) for this problem, after the test process I'll write you back and let you know.
Hi @ageiter, I've created a test issue (internal - #11909) for this problem, after the test process I'll write you back and let you know.
and the logo url actually is working (so it seems we dont have to override the css ;)).
Yes, you don't have to override CSS. You can also specify the logo URL from the branding provider. Both options are valid and can be used.
Thank you, it does work.
Also, there aint no doc either for those 2 other customization that probably everyone needs:
Thank you
We are preparing the customization documentations for LeptonX Theme and they'll be available soon.
Favicon:
~/images/favicon/logo-favicon_1.svg
path to override the current favicon. (We have an open issue about this problem and we'll improve and make it easier to customize)The picture of the login page:
Please see, https://support.abp.io/QA/Questions/3653/LeptonX-Theme-and-Login-Form#answer-feab7ac5-5e50-0cfb-3e8a-3a0623adb4d9
Hi, actually this is not a bug, we did this on purpose. As you can see, all of these tabs are in the same text structure (the first letter is capital and the other ones are not).
If you want to change these localization values, you can override the related resource. Best regards.
Hi, Are you saying that in an ABP application we are forced to use the Google SMTP server? And therefore create a gmail email address for the sending of emails from the application.
Hi, no we do not have to use the Google SMTP server.
I misunderstood your question, sorry for that. I'll check what we can do to overwhelm your problem and write you back asap.
Hi, you can define the page layout as follows in your page(*.cshtml):
@{
PageLayout.Content.Title = L["Forming"].Value;
PageLayout.Content.BreadCrumb.Add(L["Forming"].Value, url: "/my-url");
PageLayout.Content.MenuItemName = MyMenuNames.Consumables;
}
When you add a breadcrumb you can also specify it's URL.
https://github.com/abpframework/abp/issues/13999
If somebody else also struggles with this, it seems that it will be fixed in 6.0 final. Thanks.
Yes, we are planning to implement it in v6.0.