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
Rapid CSS v8.1 - simple question
Moderator: kfury77
- syrupcore
- Top Contributor
- Posts: 917
- Joined: Thu Jul 21, 2005 12:58 am
- Location: Portland, Oregon, usa
- Contact:
In your css:
and in your html, right after div id=frame
the border is just there so you can see it after you insert it.
will
Code: Select all
#header{
border: 1px solid #f00;
width: 100%;
}
Code: Select all
<div id="header">
your content here.
</div>
will