• traumkommode

    (@traumkommode)


    Hello. I’m working on a site that’s giving me flack with full-width pages. I’ve tried everything I can think of, even adjusting the stylesheet to change a couple issues, but nothing works. Here are the issues:

    1) The frontpage, which is set up as full-width, has space on the right side under the slider that looks like it should have a sidebar. There’s no sidebar designated for that page. http://valorpr.com

    2) The portfolio page won’t order the portfolios in line with each other, and the same problem in #1 exists on this page: http://valorpr.com/triple-a-industry-leadership/portfolio/

    Any tips are greatly appreciated!

Viewing 1 replies (of 1 total)
  • vtxyzzy

    (@vtxyzzy)

    There is a CSS rule that is limiting the content width:

    #page #content {
        width: 850px;
    }

    You can override that by adding this to the end of style.css:

    #page #content {
        width: 100% !important;
    }

    If your theme does not allow custom CSS, you should create a Child theme to make your changes. If you do not, all of your changes will be lost if you update your theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Problem with page formatting’ is closed to new replies.