Rapid CSS v8.1 - simple question

Discuss general web development questions. Help others and get help from others.

Moderator: kfury77

Post Reply
222fbj
Posts: 5
Joined: Thu Aug 23, 2007 5:33 pm

Rapid CSS v8.1 - simple question

Post 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
User avatar
syrupcore
Top Contributor
Posts: 917
Joined: Thu Jul 21, 2005 12:58 am
Location: Portland, Oregon, usa
Contact:

Post 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
Post Reply