• Hi,
    I’m trying to decrease the gravatar size on cell view. I found an old post where the proposed solution was to add the following CSS code:

    
    .comment-body img {width: 32px; height: 32px;}
    

    But it didn’t have any effect in my case. Any other width/height value I gave seemed to not have any effect.

    I should say that I have the following code to enable gravatars in cell mode (otherwise they don’t show):

    
    @media only screen and (max-width: 480px) {
    body .comment-body img {
        display: inline-block;
    }
    

    so I also tried to modify it to:

    
    @media only screen and (max-width: 480px) {
    body .comment-body img {
        display: inline-block;
        width: 32px; 
        height: 32px;
    }
    

    But without success. I do wanna see the gravatar, but it doesn’t leave too much room for the text. I could also use a solution where it’s placed above the text and not inlined, but don’t know if it’s possible.

    OceanWP version is 1.5.32.

    • This topic was modified 3 years, 10 months ago by dsaada.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Unable to change gravatar size’ is closed to new replies.