Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    You can customize the look of the widget with Custom CSS. Try adding the following code to your theme stylesheet, or to your custom CSS editor available under Appearance > Edit CSS:

    .widget-grofile img {
    	width: 60px;
    }

    Feel free to change the width of the image to fit your needs!

    Thread Starter JohnnyAfrica

    (@jcnyc)

    Hey that did the trick, thanks!

    Is there a way to make the author info wrap around the image?

    Thanks!

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    Is there a way to make the author info wrap around the image?

    Sure, you can float the image to the left, and the text will come to the right of it. Something like this would do the trick:

    .widget-grofile img {
    	width: 60px;
    	float: left;
    }
    
    .widget-grofile .grofile-meta,
    .widget-grofile p {
    	width: 140px;
    	float: right;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Gravatar avatar resize’ is closed to new replies.