Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have any pages where you want a layout other than a full-width layout?

    As a tip, you can achieve layouts you want without the use of tables. If you need column layouts, search the plugins repository for a “grid” plugin. Other than that you can change most things with CSS modifications made through the “Additional CSS” part of the dashboard.

    Thread Starter yourdailypractice2018

    (@yourdailypractice2018)

    Hi @anevins! Thank you. I want all pages to be full-width, I just can’t figure out which bit of CSS I need to edit. Can you advise what I should type into the Additional CSS section? Thank you!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    In the “Additional CSS” section of the dashboard add this:

    
    body #primary #main .entry-content,
    body #primary #main .entry-header {
        width: auto;
        float: none;
    }
    

    https://codex.www.ads-software.com/CSS#Custom_CSS_in_WordPress

    Thread Starter yourdailypractice2018

    (@yourdailypractice2018)

    Thank you @anevins! There is still a big white space above the content on my home page, how can I get rid of that too?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    1. Remove the empty paragraph at the top of your content
    2. In the “Additional CSS” section of the dashboard add this:
      
      .panel-content .wrap {
          padding-top: 0;
      }
      
    Thread Starter yourdailypractice2018

    (@yourdailypractice2018)

    Thank you very much!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Page content width: fine on blog, now not working’ is closed to new replies.