daattali / beautiful-jekyll

✨ Build a beautiful and simple website in literally minutes. Demo at https://beautifuljekyll.com

Home Page:https://beautifuljekyll.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mobile avatar-container display

tsolloway opened this issue · comments

avatar-container can conflict website title on mobile. My hot fix was:

@media (max-width: 574px) {
  .avatar-container {
    display: none;
  }
}

The icon can interfere with the title and also with the menu links, even in desktop mode. The custom solution I've suggested in the past is to simply move it down instead of hiding it. In your case:

@media (max-width: 574px) {
  .navbar-custom .avatar-container {
    bottom: -2.5rem;
  }
}