• I have created a page and selected the full width template.
    The text entered will look vastly better if I can increase border size on each side; i.e. more right and left white space, text centre.
    How can I make this modification?

Viewing 5 replies - 1 through 5 (of 5 total)
  • what theme are you using?

    can you post a link to your site to illustrate the problem?

    Thread Starter alkpurusha

    (@alkpurusha)

    I’m using Colorway.
    Here is the link
    https://www.alkpurusha.net/WordPress/sponsor/

    possibly add these styles at the end of style.css of the child theme:

    .page-template-template-fullwidth-php .content-wrapper { width: 60%; margin: 0 auto; }
    @media only screen and (min-width: 768px) and (max-width: 960px) {
      .page-template-template-fullwidth-php .content-wrapper { width: 70%; margin: 0 auto; }
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .page-template-template-fullwidth-php .content-wrapper { width: 96%; margin: 0 auto; }
    }

    adjust the width values if you need.

    general, for formatting issues, try working with a browser inspection tool such as Firebug to find out which styles are responsible for formatting which elements.

    Thread Starter alkpurusha

    (@alkpurusha)

    OK, I have Firebug, and will check.
    Thanks.

    Thread Starter alkpurusha

    (@alkpurusha)

    Thanks, your code worked just fine.
    I looked at the page with Firebug and there was no code which resembled yours. There was some continued reference to borders but so many it was confusing!
    Can you refer me to a source something like WordPress coding for dummies?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Full width template modification’ is closed to new replies.