3 columns - section-7
- text control +title is outside col_wrapper div
WELL, learned something I wasn't aware about:
NEVER, never start a class name with a number!!
and here are the css rules:
1. <div class="col_wrapper">
2. <div class="col_3">asdf</div>
3. <div class="col_3">asdf</div>
4. <div class="col_3">asdf</div>
5. <div style='clear: left;'><!-- --></div>
6. </div>
/* 3 columns style */
.col_wrapper { float: left; width: 99%; margin:0; }
.col_3 { background-color: #fff; float: left; display: block; width: 32%; margin-left: 2px; }
.col_3 p { background-color: #ded; width: 100% !important; margin: 2px 0; }
In your text area you can add div and h tags all you want but you need to give them room to allow other things to be autowrapped in p and br tags.
So, you could do something like this (I'm taking out the arrows so it will appear):
div ...
This is a paragraph or a link.
This is the second line.
/div
div ...
More
Another paragraph.
/div
Make sense? Same with heading tags too. By leaving the space the other things can be input as usual. The div and h tags are ignored and don't get wrappedThis is a paragraph or a link.
This is the second line.
More
Another paragraph.
looks like you're using internet explorer 6, better upgrade it!









