I know this has been asked before but im curious to see if things have changed.
I’m looking for a html/css fixed 3 column layout with the main content (middle) area located first (of the 3 columns) in the DOM – for SEO.
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It requires a bit extra markup, but to get the content to be first, you can try something like this:
And in CSS:
#wrappercontstraints the columns to the width of 800px and makes the page centered. The#contentand#side_acolumns are arranged inside#content_wrapperin reverse order using different floats.#side_bis then floated alongside#content_wrapper.A working example can be found here: