Matop79
Matop79

Reputation: 146

fluid content pushes down fixed right sidebar

Look at this url: http://kraken.ikas.sk/

and compare to: http://kraken.ikas.sk/autorizovany-servis

Why is my fixed right sidebar dropping under content? Css seems to be exactly the same. I need fixed sidebars (180px) and fluid content. If there is no sidebar on the right, the content must stretch to the right to full width.

Upvotes: 0

Views: 233

Answers (1)

Morpheus
Morpheus

Reputation: 9075

This should help:

#main_content {
    float: left;
    max-width: 550px; // change this line
    overflow: hidden;
    padding: 0 10px;
    width: auto;
}

Upvotes: 1

Related Questions