Archived
1
0

try fixing placement

This commit is contained in:
jeff 2015-10-31 11:21:36 -04:00
parent 4e3d66ad52
commit c084518622
2 changed files with 6 additions and 4 deletions

View File

@ -252,6 +252,9 @@ html {
background: grey; background: grey;
} }
#posts_graph , #overview { #posts_graph , #board_graph {
float: left; float: left;
}
#overview {
float: right;
} }

View File

@ -32,6 +32,8 @@
<div class="index-inner"> <div class="index-inner">
<!-- begin posts graph --> <!-- begin posts graph -->
{{{postsgraph.Render}}} {{{postsgraph.Render}}}
<!-- begin overview -->
{{{overview.Render}}}
<!-- begin board graph --> <!-- begin board graph -->
{{! todo: move boardgraph into its own file like postsgraph }} {{! todo: move boardgraph into its own file like postsgraph }}
<table id="board_graph"> <table id="board_graph">
@ -60,9 +62,6 @@
{{/ boardgraph}} {{/ boardgraph}}
</tbody> </tbody>
</table> </table>
<!-- begin overview -->
{{{overview.Render}}}
</div> </div>
</div> </div>
</center> </center>