fixed floats for proper sidebar

This commit is contained in:
ubergeek 2019-06-30 13:07:54 -04:00
parent 8956441002
commit 6c287fb279
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ echo ( shell_exec("/usr/bin/pandoc includes/header.md") );
print "<hr/>
<div id='body' style='width: 90%;'>
<div id='sidebar' style='width: 20%;'>";
<div id='sidebar' style='width: 20%; float:left;'>";
echo ( shell_exec("/usr/bin/pandoc includes/sidebar.md") );
print " </div>
<div id='content' style='width: 80%;'>";
<div id='content' style='width: 80%;float:right'>";
echo ( shell_exec("/usr/bin/pandoc articles/$page.md") );