3 column Site - needs to be SEO Friendly

Discussion in 'CSS' started by ryrock, Oct 21, 2008.

  1. #1
    I have a 3 column site and am still new at site building. I want to modify my current css page so that my main content (currently coulmn 2) will display first to the Spiders. (column 2-1-3).

    I have read that this is good seo, so that google will get the most important content first. True? Does anyone have any help they can give me to complete this task?

    Thanks
     
    ryrock, Oct 21, 2008 IP
  2. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #2
    
    <div id="wrapper">
      <div id="major box"> <!--holds central and left sidebar, float it left-->
        <div id="content">
          <p>This is the main content box, float it right</p>
        </div>
    
        <div id="nav-sidebar">
          <p>This is the left column</p>
        </div>
      </div>
    
      <div id="other-sidebar">
        <p>This is the far right column.</p>
      </div>
    </div>
    Code (markup):
    cheers,

    gary
     
    kk5st, Oct 21, 2008 IP