Margin sizing

  • Unknown's avatar

    I am trying to adjust left and right margins around the text (not including widgets or any other part of page). Does that make sense? I’m not sure if I’m using the right terms.

    Looking to make my text not stretch across the page so much.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, with as much CSS as you have, I’m a little concerned that we are at some point going to add something that is going to cause everything to go awry as in some cases, there are a number of conflicting CSS rules.

    The following will set the max-width of the content area on static pages to 800px in width. You can adjust that number as desired.

    .page .hentry {
    	max-width: 800px;
    	margin-left: auto;
    	margin-right: auto;
    }
  • The topic ‘Margin sizing’ is closed to new replies.