Fullwidth Page Dimensions

Discussion in 'ButterBelly WordPress Theme' started by kaocoaching, Aug 4, 2014.

  1. kaocoaching

    kaocoaching Member

    Joined:
    Jan 8, 2012
    Messages:
    34
    Likes Received:
    1
    How can I decrease the width of the full width page? I like the 'no sidebar' but it's a little wide as full width. Is there a way to decrease to 90% or 80%?
     
  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:
     .fullwidth {
    width: 80%;
    }

    Thanks & Regards
    Gourav Shrivastava
     
  3. kaocoaching

    kaocoaching Member

    Joined:
    Jan 8, 2012
    Messages:
    34
    Likes Received:
    1
    Thanks that worked but it still has all the space on just the right of the text... is there a way to shrink it from both sides so the body is centered on the page with equal amounts of padding on the left and right?
     
  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:
     .fullwidth {
    text-align:center;
    margin-left:auto;
    margin-right:auto;
    } 
    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     

Share This Page