• Resolved sophie

    (@sophiewordpress5)


    I am trying to position the main content on my about page. How do I do this without affecting the whole site?

    The page is:

    https://betterdecoratingbible.com/about/

    Please let me know, I am sure there is a simple solution but I am bad at CSS and PHP. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • codeManiac

    (@codemaniac)

    Hey sophie !

    Now I know where to go if I need new interior design :-D.
    Anyway, in your style.css modify this :

    .one-column #content {
        margin: 0 16% 0 21%;
        width: 100%;
    }

    to become :

    .one-column #content {
        margin: 0 auto;
        width: 100%;
    }

    Cheers !

    Thread Starter sophie

    (@sophiewordpress5)

    Hi,

    Thanks for replying and pointing me in the right direction! Using auto didn’t center it completely so I played around a bit and this code worked perfectly:

    .one-column #content {
    margin: 0 -100px;
    width: 100%;
    }

    Cheers! ;))

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Position page container!’ is closed to new replies.