• Resolved erwanji

    (@erwanji)


    Hey Ben!
    Is there a way to make the avatar bigger? Like twice as big at least? (I’ve got a real nice mug :D)

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Haha yea we can do that. Check out the following CSS:

    @media all and (min-width: 700px) {
    
      .site-avatar {
        width: 48px;
        height: 48px;
      }
    }
    @media all and (min-width: 1000px) {
    
      .site-avatar {
        width: 96px;
        height: 96px;
      }
    }

    The avatar first appears in the menu when the screen is 700px or wider, and it displays at 48x48px. The second half of the code sets the avatar’s size on screen widths of 1000px and wider – that’s when it displays in the sidebar.

    You can modify the width and height values to get the size exactly how you want.

    Thread Starter erwanji

    (@erwanji)

    Awesome! Worked like a charm. Thanks very much for taking the time.

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘size of avatar ?’ is closed to new replies.