Hi, can someone please help me in changing ‘Log in’ to username icon in Minimal theme? Thank you!
Hello @kstyle4u ,
- Edit theme.liquid here just before the add this line
- Edit header.liquid replace this code
<li>
{{ 'layout.customer.log_in' | t | customer_login_link }}
</li>
Copy
with this one
<li>
<a href="/account/login" id="customer_login_link"><i class="fa fa-user" aria-hidden="true"></i></a>
</li>
Copy
and replace this one
<li>
{{ 'layout.customer.log_out' | t | customer_logout_link }}
</li>
Copy
with this one
<li>
<a href="/account/logout" id="customer_logout_link"><i class="fa fa-user" aria-hidden="true"></i></a>
</li>
Copy
If you want to change its size or color you can change it with css a/to your need.
Thanks