We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when i want to change the [icon-logo],but i can't find where to replace ,can you tell me where?
<span class="icon-logo"></span> I am find it in landio.scss,but there is no icon's url .icon-logo { font-size: 45px; }
<span class="icon-logo"></span>
.icon-logo { font-size: 45px; }
The text was updated successfully, but these errors were encountered:
Hi Ericfjl,
Did you find a work around?
Thanks
Sorry, something went wrong.
I too am struggling with this...
If anyone else is encountering this issue, this is how I solved it:
The logo is not defined directly on the class icon-logo, it is defined on the :before pseudo element:
icon-logo
:before
.icon-logo:before { content: "\e60a"; }
I created my own css file with the following content:
.icon-logo:before { content: url('/user/assets/logo.png'); }
Then I added that CSS file to the themes/landio/templates/partials/base.html.twig file.
themes/landio/templates/partials/base.html.twig
No branches or pull requests
when i want to change the [icon-logo],but i can't find where to replace ,can you tell me where?
<span class="icon-logo"></span>
I am find it in landio.scss,but there is no icon's url
.icon-logo { font-size: 45px; }
The text was updated successfully, but these errors were encountered: