• Hello,
    I’m wondering if someone can help with layout of page. Please visit

    http://www.scubalessonsflorida.com

    You’ll see the first page is cut off. This is mainly because this them has sidebars both on the left and right. I took out the code from the right sidebar but want the content in the middle section to display in full. How do I modify or tell WordPress to display or stretch the center section?

    Thanks in advance…
    –mike

Viewing 1 replies (of 1 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    edit the stylsheet in your theme: style.css

    delete the following:

    /* begin LayoutCell */
    .contentLayout .sidebar2
    {
      position: relative;
      margin: 0;
      padding: 0;
      border: 0;
      float: left;
      overflow: hidden;
      width: 247px;
    }
    
    /* end LayoutCell */

    and give “.contentLayout .content” a width of 742 pixels like so

    /* begin LayoutCell */
    .contentLayout .content
    {
      position: relative;
      margin: 0;
      padding: 0;
      border: 0;
      float: left;
      overflow: hidden;
      width: 742px;
    }
    
    /* end LayoutCell */

Viewing 1 replies (of 1 total)
  • The topic ‘Please help with Page Layout…’ is closed to new replies.