Home Forums Theme support STRONG Theme – How do I decrease the width of the boxed area?

This topic contains 3 replies, has 2 voices, and was last updated by  7Theme Support 9 years, 2 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • On the Strong Theme – how do I decrease the width of the boxed content area? I need the boxed content area to 960px or 1100px

    Thanks!

    Hi,

    do you mean the complete layout or only the content area? For the complete layout you can add this code in WordPress admin -> Appearance -> Theme Options -> Custom CSS Content:

    #layout.block {
    max-width:960px /* or 1100px, its your choice */
    }

    Thanks,

    That worked great, but now the padding for the interior content is off, the content stretches all the way to the edges without any padding.

    Ok, you can try to add this code (also in custom css content):

    #layout.block #content {
    padding-left:30px;
    padding-right:30px;
    margin-left:auto;
    margin-right:auto;
    }

    This should solve the problem

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.