Forums / Cotonti / General / Make new box for menu?

ez
#24819 2010-06-03 15:01
you can do it with the current skin..

BUT What do you want to do with the small space in the middle ??

In css you need to make 2 things
something like a #content #lsidesmall (derived from #content #rside) so a make a small column that
floats left. And you need to make something to the right of that (in the middle???)

and integrate that into index.tpl

the css you need:
#content #lSide { float:left; width:550px; }
#content #lSide .lboxHD { color:#3E606F; background: url(img/SED-Light_lBoxHD.gif) no-repeat; width:540px; height:35px; line-height:35px; vertical-align:middle; font-size:.90em; text-transform:uppercase; padding:0 0 0 25px; font-weight:bold; }
#content #lSide .lboxBody { width:530px; background:#FFF url(img/SED-Light_lBoxFT.gif) no-repeat bottom; min-height:20px; padding:10px; margin-bottom:10px; }

#content #rSide { float:right; width:240px; }
#content #rSide .rboxHD { color:#3E606F; background: url(img/SED-Light_rBoxHD.gif) no-repeat; width:230px; height:35px; line-height:35px; vertical-align:middle; font-size:.90em; text-transform:uppercase; padding:0 0 0 25px; font-weight:bold; }
#content #rSide .rboxBody { width:220px; background:#FFF url(img/SED-Light_rBoxFT.gif) no-repeat bottom; min-height:20px; padding:10px; margin-bottom:10px; }

Like Pieter said, you have to know css and html to change that all.
Also think about your layout before you make it.

greets,

ez
==- I say: Keep it EZ -==