• Resolved ace2279

    (@ace2279)


    Hi

    Can I change the size of the box that the text appears in for my pages/posts? I’d like to make it wider than it currently is, can I do this?

Viewing 1 replies (of 1 total)
  • You can, but you would need to be careful so you don`t break the layout.

    Use the CSS plugin that I recommended on your previous question and add the following code:

    @media only screen and (min-width: 1200px) {
    	.content-area {
    		width: 670px; /* Default value. Increase it as you need.*/
    	}
    }
    @media only screen and (min-width: 1200px) {
    	.site-content {
    		width: 1070px; /* Default value. Increase it with the exact same amount you increased the previous value.*/
    	}
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change width of Post/Page’ is closed to new replies.