I want to restrict the width to a maximum of 600px for images uploaded using the "full size" image option in WP posts/pages section.
I've tried two methods:
Method 1:
Adding the following to style.css of the theme:
.post img {
max-width: 600px; /* Adjust this value according to your content area size*/
height: auto;
}
Method 2:
Adding the following to the top of functions.php:
$GLOBALS['content_width'] = 600;
Both of them are not working. The option for full-size is not available in Settings > Media
Please help.