|
Posted by dorayme on 06/23/07 12:48
In article
<1182600998.050780.185890@g37g2000prf.googlegroups.com>,
keithkerriekate@yahoo.com wrote:
> On 6 23 , 3:29, Jim Moe <jmm-list.AXSPA...@sohnen-moe.com> wrote:
> > keithkerriek...@yahoo.com wrote:
> > > i have a column, on top i put a menu,
> > > and below i leave a calendar, i'd like to center-align them
> > > but i don't know how :-(
> >
> > Where's the URL test case?
> > Without an URL there is no point in speculating about what you may
> > actually want since there is so little information provided.
> >
> > --
> > jmm (hyphen) list (at) sohnen-moe (dot) com
> > (Remove .AXSPAMGN for email)
>
> i have a left column in which there are a menu and a calendar, i just
> want to align them into the center not in the lefthand side as
> default, but i can't align css objects except text. i'd like to make
> myself a simple homepage.
Tell us the page you most like the look of as a model for your
intended home page. Surf about a bit... and perhaps someone will
suggest the basic framework for that sort of look.
You can look into the matter of centering material later. But for
now, why not use a wrapper. Something like
#wrapper {width: 85%; margin: auto;}
for now to get going. Put your stuff inside
<body>
<div id="wrapper">
stuff.... (which itself does not need to be centre aligned, text
in paragraphs looks awful when centre aligned - generally). But
it won't be unless you do other things. The "whole show" will be
centered if that is what you want, and you can also centre things
within it too if you want.
</div>
</body>
--
dorayme
[Back to original message]
|