Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Simple Centred Passage

Hey all,

I would really appreciate some basic CSS help. I need a stylesheet for Sugarcane that makes a passage with no sidebar that's always 720px wide, with a solid 2px white border, centred horizontally on the page. I cannot for the life of me get this to work and I don't know why.

Thanks,
-Brendan

Comments

  • How does this work for starters?

    #sidebar { display:none; }
    #passages { margin: 0; border: 0; }
    .passage { width: 720px; margin: 0 auto; border: 2px solid white; }
    body { margin-right: 15%; }
    Of course if you want the border etc. to persist during transitions, you may move some of those .passage declarations to #passages.
Sign In or Register to comment.