Comment on Stallion Responsive SEO Theme Layout Options by SEO Dave.

WordPress 2 Column Layouts That’s a WordPress responsive theme CSS setting called max-width within the Stallion layout CSS files so images never stretch over the sidebars.

Under /stallion-seo-theme/colors/ you’ll find the layout CSS files name format layout-***.css where the *** relates to the layout used, layout-310r.css for example is the 310px wide right sidebar layout (like I use on this site).

Within those files you’ll find this CSS code:

.content_all img {
max-width: 660px;
margin: 0 0 24px 0;
}

Each file has a different max-width set, the one above is 660px for the right sidebar layout, the double sidebar layouts has it set at 560px and the no sidebars set at 970px. It’s set to take advantage of the entire content area without loading over the sidebars.

If you remove the code entirely the width of the image will determine if it loads over the sidebars or not. I find it looks unprofessional when images load over the sidebars.

David