Could someone view my code and show me how to code this page so the content in the middle is displayed at the top instead of the middle of the page? Here is the page. I created a top and bottom page that pretty much has the majority of my site's code. The middle content has the top/bottom php included to make the page. I wasn't even going for this look but I made an error and would like to keep the 3 columns.
You could try placing <div class="paragraph"> (text here) </div> Code (markup): around the text you want to move up, then in the css properties, create a new property, .paragraph {vertical-align: top;} Code (markup):
basically the same as mike said but incase you dont understand put .paragraph { vertical-align: top; } In between the <head> and </head> Section and the other part in between the <body> </body> part Code (markup): Thanks, John