• Many sites–based on WordPress or not–are centered in the browser, and many are aligned on the left side. Because I want to be different, I want to align my site on the RIGHT. I am currently developing the site on the Relaxation 3-column theme at http://clemens.orth.me.uk/3column_docs/. Is this possible/feasible? I’m setting it up to be 990 width, so it has to automatically “justify” itself on the right side next to the scrollbar. Thus the extra blank space on a browser running at 1280 or 1600 would be on the left instead of the right. I’d appreciate any help on this matter, as I’m kind of stuck in my development. Thanks, truly,

    Ryan

Viewing 5 replies - 1 through 5 (of 5 total)
  • There are probably many ways of doing this. Many themes appear to have a #container reference in the stylesheet.

    #container {
    position:absolute;
    right:0;
    }

    It would probably also work if you put those specifications within the body { } tag, also in style.css.

    Others may suggest better and/or easier ways to do this, as I am a n00b.

    Kat, the Twat

    Thread Starter nofilmschool

    (@nofilmschool)

    Hmm. Thanks but in the Relaxation theme there is no #container. And messing with the body part has not produced the right result.

    Relaxation seems to do things differently; anyone have any idea? Thanks…

    Hi – this got me curious.

    I uploaded what I think is the same relaxation you are referring to to http://sandbox.working-title.org/ with the modification to the body tag as follows:

    body {
    position:absolute;
    right:0;
    background: #a9ac99;
    font-size: 13px;
    font-family: 'Trebuchet MS', 'Bitstream Vera Sans', Verdana, Arial, 'Lucida Sans', 'Lucida Sans Unicode', Helvetica, sans-serif;
    padding: 20px 0;
    }

    The page is aligned to the right edge of the browser, and any extra space (variable width) is placed to the left of the page.

    Is this what you had in mind?

    Kat, the Twat

    Thread Starter nofilmschool

    (@nofilmschool)

    Kat–perfect. You were right; it is under “body,” I just wasn’t using the “position: absolute” correctly. Thanks, this is a huge help!

    Ryan

    No prob 🙂 I love figuring this stuff out (when I’m not tearing my hair out because I can’t find out where I’ve gone wrong!)
    Kat, the Twat

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Align entire theme on the RIGHT?’ is closed to new replies.