You don't need JavaScript at all.
Place your whole center column in a Container and do this:
- Code: Select all
#centercontainer {
width: *px;
margin: 0 auto;
}
Then, put your text into a separate div and align the text to the left (or center, depending)
- Code: Select all
#hometext {
text-align: left;
}
You should know basic
HTML &
CSS if you want to use this method.
Hope this helps,
Ed