• I am using the Modern-Clix theme on YouthMuse.com. It is currently center aligned, and I would like to make it left aligned.

    I have scoured the CSS and theme, but I don’t see what is making it Center-Aligned. I want to make it left aligned, like this site: DougAHay.com which is using the same theme, but modified.

    Any tips would be appreciated.

    Greg

Viewing 3 replies - 1 through 3 (of 3 total)
  • I style.css look for this code

    #wrapper {
    margin:3em auto;
    overflow:hidden;
    width:885px;
    }
    delete auto so you will have

    #wrapper {
    margin:3em;
    overflow:hidden;
    width:885px;
    }

    I think you can just change the margins on the wrapper:

    #wrapper {
    width: 885px;
    margin: 0 auto;
    margin-top: 3em;
    margin-bottom: 3em;
    overflow: hidden;
    }

    try this:

    #wrapper {
    width: 885px;
    margin-left: 3em;
    margin-top: 3em;
    margin-bottom: 3em;
    overflow: hidden;
    }

    Thread Starter Gregoryagu

    (@gregoryagu)

    Great, thanks.

    Greg

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Modify theme so it's left aligned’ is closed to new replies.