Urgent: Need Help with this css overlapping issue

Discussion in 'HTML & Website Design' started by bbardot, Oct 26, 2010.

  1. #1
    Hi, I'm developing this site using wp

    h**p://www.jy*ga-arch*itects.com/ (Remove stars)

    I've tried to widen the post area but it's cut off by space for the sidebar even though I've removed the sidebar.

    I've spent 2 days trying to figure out why but not come up with anything.

    Can anyone take a look and see where I'm going wrong?

    I don't want the sidebar at all. I just want the post to fill the breath of the page.

    All suggestions welcome.

    Thanks in advance
     
    bbardot, Oct 26, 2010 IP
  2. ecolatur

    ecolatur Well-Known Member

    Messages:
    1,141
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    160
    #2
    Try editing the width here:
    .contentLayout .content
    {
      position: relative;
      margin: 0;
      padding: 0;
      border: 0;
      float: left;
      overflow: hidden;
      width: 551px;
    }
    Code (markup):
    Hope it works ;)
     
    ecolatur, Oct 26, 2010 IP
  3. AtomicPages

    AtomicPages Peon

    Messages:
    38
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    
    .contentLayout .content {
         border: 0px;
         float: left;
         margin: 0px;
         overflow: hidden;
         padding: 0px;
         position: relative;
         width: 551px;
    Code (markup):
    Change width:551px to width:100% or simply remove it altogether.

    Also,

    
    .Post {
    margin: 0px auto;
    min-height: 27px;
    min-width: 27px;
    overflow: hidden;
    position: relative;
    width: 800px;
    z-index: 0;
    }
    Code (markup):
    You can change this class to about 968px and the .Post area will fit snug.
     
    AtomicPages, Oct 26, 2010 IP
  4. bbardot

    bbardot Peon

    Messages:
    332
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #4
    thanks all, it worked!
     
    bbardot, Oct 27, 2010 IP