Did it mess other things up in IE 7, or just in other browsers? If just other browsers, you could make an IE 7 specific stylesheet.
Or, since the .layout_01 class as I mentioned before had no styles, you could try adding this rule:
Code:
.layout_01 {
width: 100%;
}
or:
Code:
div.layout_01 {
width: 100%;
}
or:
Code:
div.content div#pagina div.layout_01 {
width: 100%;
}
Now I know that you cannot add a class, but could you add an inline style? If so, you could make it:
Code:
<div style="width: 100%;" class="alinea layout_01">
<p>Op deze blog, die we altijd up-to-date houden, kun je alle ontwikkel . . .
Another thing you could try is:
Code:
div.alinea {
width: 98%;
}
Bookmarks