Site logo

Archived topic

Container box on author pages

3 replies · Started by Matthew on February 19, 2019

Viewing posts 1–4 of 4

Hey

Having some real issues with this page, I have managed to get the white container to stay now for the content but for some reason there's no padding at the bottom of the container any more and also it starts a little late at the top of the box as well.

I think it's ending up becoming more complex because I am pulling content from a few different places. I have had this issue on most pages but the fix I was provided previously didn't seem to solve the issue on this page.

Any help you could provide on this would be much appreciated!

It looks like masonry is initiating on that page, likely because it's the author archives (although it's been edited).

Try adding this function:

add_filter( 'generate_blog_masonry', function( $masonry ) {
    if ( is_author() ) {
        return false;
    }

    return $masonry;
} );

That is great thanks Tom! :)

You're welcome :)

This archived topic is closed to new replies.