Left Padding/Marigns on Pages

Discussion in 'Infoway WordPress Theme' started by dufek, Jan 27, 2014.

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

    dufek New Member

    Joined:
    Mar 6, 2013
    Messages:
    7
    Likes Received:
    0
    I am not having this issue with my home page, but all other pages have the left margin tight to the left border (meaning the text is tight to the border). How can I fix this issue and create a larger margin or padding for my text or images?
     
  2. Gourav

    Gourav Support Staff

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

    Do let us know your website link.


    Thanks & Regards
    Gourav Shrivastava
     
  3. dufek

    dufek New Member

    Joined:
    Mar 6, 2013
    Messages:
    7
    Likes Received:
    0
  4. dufek

    dufek New Member

    Joined:
    Mar 6, 2013
    Messages:
    7
    Likes Received:
    0
    And the same would go for the right border as well...
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    margin-left: -10px;
    padding-left: 10px;
    padding-right: 10px;
     
    You can adjust the value of "margin" and "padding" as per your requirement.
    This will solve your issue.
     
  6. dufek

    dufek New Member

    Joined:
    Mar 6, 2013
    Messages:
    7
    Likes Received:
    0
    I added the code exactly as you supplied. This did not fix the issue. Can you help further?
     
  7. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Sorry, I had forgotten the selector in the above code by mistake.
    So paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard instead of above given code.

    Code:
     .page-content {
    margin-left: -10px;
    padding-left: 10px;
    padding-right: 10px;
    }
    
    This will solve your issue.
     
  8. dufek

    dufek New Member

    Joined:
    Mar 6, 2013
    Messages:
    7
    Likes Received:
    0
    Issue solved, thank you!!
     
Thread Status:
Not open for further replies.

Share This Page