I am having an issue with a design using table layout. So I am using 2 asides for the side navigation and a centered main section content (which is all wrapped in a section wrapper)
My text in the section wrapper has some white spacing at the top. It is due to the float left and right on the aside elements. If I remove them, the text goes back to the top but then my aside elements occupy the entire space (I have used a box border around the aside to show it, as I want to colour the aside element for my design so I don’t want it to take the entire space of the main body-content)
I have tried using top:0% but no luck.
You can simply do it by changing the width and float.
According to your code, I made some changes:
I changed the float in
#side-news2fromrighttoleft.And add
width: 30%to#side-news,#side-news2, and#section-wrapper.Note that all of the
width(30%+30%+30%) cannot exceed the one in#body-content(which is set to be90%)