Working with Full-Width Page Margin Padding

Discussion in 'Cloriato WordPress Theme' started by jessicalynn83, Jun 2, 2014.

Thread Status:
Not open for further replies.
  1. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    Hello,

    Is there any way to adjust the margin padding for specific full-width pages? I'm using my site to share long stories, usually between 5 and 10 thousand words, and when the text goes edge to edge on the full-width pages, it becomes a giant wall of text. I'd like to bring the margins or padding (not sure which) inward, to create more whitespace and make reading easier.

    Here's a link to an example page: http://www.jessicazimmer.com/projects/short-stories/the-lady-of-the-hall/

    Thanks!
    Jessie
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    body.page.page-id-107 .fullwidth-page p {
    margin-bottom: 30px;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  3. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    Gourav,

    That css changes the spacing between the paragraphs. I'd like to change how much white space is on the right and left sides of the text. Can I change the width of a full-width page?
    Here's what I'm wanting to change the width of, marked in blue, in the attached photo.

    - Jessie
     

    Attached Files:

  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content_wrapper .fullwidth-page {
    padding-left: 40px;
    padding-right: 40px;
    } 
    Adjust its value as per your requirements.


    Thanks & Regards
    Gourav Shrivastava
     
  5. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    Gourav,

    This worked perfectly, thank you!

    Jessie
     
Thread Status:
Not open for further replies.

Share This Page