Skip to content
New issue

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

how to change the icon-logo to myself icon #14

Open
ericfjl opened this issue Jul 3, 2017 · 3 comments
Open

how to change the icon-logo to myself icon #14

ericfjl opened this issue Jul 3, 2017 · 3 comments

Comments

@ericfjl
Copy link

ericfjl commented Jul 3, 2017

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; }

@Stefdem
Copy link

Stefdem commented Aug 31, 2018

Hi Ericfjl,

Did you find a work around?

Thanks

@wobblybob19
Copy link

I too am struggling with this...

@Izbitzer
Copy link

Izbitzer commented Dec 17, 2019

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 {                                                                                                     
  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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants