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.
Hi, this problem is related to the Google SMTP server and it's not related to ABP. So, please search it on Google.
Probably, you need to setup your application's IP address to the Google SMTP server.
Also, you can check: https://support.google.com/a/answer/176600?hl=en#zippy=%2Cuse-the-gmail-smtp-server
Hi, ABP Tag Helpers are for MVC / Razor Pages applications only.
See: https://docs.abp.io/en/abp/latest/UI/AspNetCore/Tag-Helpers/Index#abp-tag-helpers
Hi,
Also, i think it would be worth cleaning the project template when you select LeptonX as there is still stuff that seems to be for Lepton only such as :
Im trying to change the leptonx logo in order to put our own one. I cant find any docs about this (i do find for lepton, but not for leptonx) nor find where in the code it should be done?
To change the logos you can use the following code block in your CSS file (global-styles.css):
/* for dim and dark theme styles */
:root .lpx-theme-dim, :root .lpx-theme-dark {
--lpx-logo: url('/images/logo/logo-light.png');
--lpx-logo-icon: url('/images/logo/logo-light-thumbnail.png');
}
/* for light theme style */
:root .lpx-theme-light, :root .lpx-brand-logo {
--lpx-logo: url('/images/logo/logo-dark.png');
--lpx-logo-icon: url('/images/logo/logo-dark-thumbnail.png');
}