user3276426
user3276426

Reputation: 23

Margin not working

I have a problem with margin on my site: link , when i want increase space between left_sidebar and right_content with margin then there is no change.

CSS{

.left_sidebar{
    float: left;
    padding: 30px 0;
    width: 28.2%;
    margin-right: 20px !important;
}


.content_right {
    float: right;
    padding: 30px 0;
    width: 69%;
}

Upvotes: 0

Views: 51

Answers (1)

woz
woz

Reputation: 10994

You are floating left and right while using percentage widths. This doesn't leave any room for margin. There are different ways to fix this, but I would suggest decreasing the percentage of both divs to allow more room between them.

Upvotes: 2

Related Questions