Page 1 of 1

Rapid CSS v8.1 - simple question

Posted: Thu Aug 23, 2007 5:39 pm
by 222fbj
I have the RCSS 2 column template...and want to add a 'row' across the top for website logo, etc. I know there are many free templates with this layout, that I can import... but how do I add a 'top row' to the 2 column template using RapidCSS tools/menus?

thanks

Posted: Thu Aug 23, 2007 6:33 pm
by syrupcore
In your css:

Code: Select all

#header{
    border: 1px solid #f00;
	width: 100%;
}
and in your html, right after div id=frame

Code: Select all

<div id="header">
	your content here.
</div>
the border is just there so you can see it after you insert it.

will