Status
Not open for further replies.
7 comments
It always better if you link to the page where this happens and explaining better what you want to achieve.

If you mean the images (in the posts of the site click4porn.me) that are too big, that's because of this css:
Code:
figure.full-width img {
    width: 100%;
}

Can fix this by changing 100% to auto, but do this in a child theme or in a plugin:
Code:
figure.full-width img {
    width: auto;
}
 
I hope the problem has been solved already, but it doesn't. You can add the custom media file size in your functions.php file it will then crop the image to the given size, you just need to call the file.

For eg:
<?php the_post_thumbnail('your-custom-size');?>

Or upgrade the WP version to the latest one as they have added the responsive image feature which reduce the dimension based on the screen resolution.
 
Status
Not open for further replies.
Back
Top