|
1. I agree. It would make more sense to see all the supporting pages and the best way to do this is to view the page online.
2. You are not closing all your DIV tags. It was also difficult to read your code because your example code has "e; and not ".
Example:
==================================
You have
==================================
<div class="center">content here content here contebnt here
<div class="left">content left here
<div class="right">content right here
==================================
It should be
==================================
<div class="center">content here content here contebnt here</DIV>
<div class="left">content left here</DIV>
<div class="right">content right here</DIV>
==================================
imaginemn
|