On site I have div containers in this sequence:
- Less important left side bar
- Less important right side
- At last the core center content
As the core content comes after side bars; does this have any bad impact on SEO. If yes than how can I bring center div before sidebars. Need fluid center and fixed sidebars.
#left {float:left;width:200px;}
#right {float:right;width:200px;}
#center div {margin: 0 200px;}
<!--X-->
<div id="left"> ... </div>
<div id="right"> ... </div>
<div id="center"> ... </div>
Searched a bit and found this here