Page 1 of 1

html css problem

Posted: Thu Dec 24, 2015 5:48 pm
by Mark
RESOLVED

Re: html css problem

Posted: Thu Dec 24, 2015 10:29 pm
by KraZy
Why you not use Bootstrap framework?

Re: html css problem

Posted: Fri Dec 25, 2015 1:11 am
by Filip
Hey,

try adding both .post_area and .sidebar to one common parent div. Something like:
Code: Select all
<div class="parent">
<div class="post_area">
...
</div>
<div class="sidebar">
...
</div>
</div>
Next up, to your .parent add the following in css file:
Code: Select all
display: table;
You should change both .post_area and .sidebar by adding display: table-cell property and removing their float properties.

Hope it helps!

KR,
-Filip

PS: consider downscaling your images since each one of them is almost 6 megabytes!!! It took me 35 seconds without cache to load the entire page on 10 Mbps connection..