• Here is a link to an example page: https://myancientwisdom.com/biggerton/

    I know I had a similar question before, but I can’t find the css where I changed it before. I searched all over the customize area and can’t find anything that helps either.

    So, within the white area where the text and sidebar are, the boarder or margin (don’t know the correct terminology in website lingo, but in writing it’s called the margin.) is only about 1/4 inch from the edge of the white. I want this area to be larger all the way around the white.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello there,

    You can manage the left and right spaces with the below extra CSS code:

    
    .single-post .page-wrap .content-wrapper {
      padding-left: 100px;
      padding-right: 100px;
    }
    
    /* On smaller screen */
    @media only screen and (max-width:767px) {
    
      .single-post .page-wrap .content-wrapper {
        padding-left: 40px;
        padding-right: 40px;
      }  
      
    }
    

    To apply it to your site, add it to Appearance > Customize > Additional CSS from your site dashboard.

    Do your adjustment if needed.

    Regards,
    Kharis

    Thread Starter April Roy

    (@awapril)

    Thanks!
    I guess I already had something similar added into my css there and decided to try changing that and it worked. I didn’t realize that the code I already had was for that very issue.

    Thank you for your help! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blog page needs larger margin’ is closed to new replies.