diff options
-rw-r--r-- | pyaggr3g470r/templates/home.html | 6 | ||||
-rw-r--r-- | pyaggr3g470r/templates/layout.html | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index 96cd83a5..a5dd69f0 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block content %} -<div id="affix-nav" class="col-md-1 sidebar hidden-xs hidden-sm"> - <ul class="nav sidenav affix affix-top" data-spy="affix" data-offset-top="0" data-offset-bottom="0"> +<div id="affix-nav" class="col-md-3 sidebar hidden-xs hidden-sm"> + <ul class="nav sidenav navbar-collapse pre-scrollable" data-offset-top="0" data-offset-bottom="0" style="min-height: 600px;"> <li><a href="{{ gen_url(feed=0) }}"> {% if not feed_id %}<b>{% endif %} {{ _('All feeds') }} @@ -24,7 +24,7 @@ {% endfor %} </ul> </div> -<div class="container col-md-9" style="float: right;"> +<div class="container col-md-9"> <h1>{{ _('Your articles') }} ({{ articles.__len__() }})</h1> <div> {% if filter_ == 'all' %}<b>{% endif %} diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html index 543fc823..8fc88d74 100644 --- a/pyaggr3g470r/templates/layout.html +++ b/pyaggr3g470r/templates/layout.html @@ -145,7 +145,7 @@ deployed on Heroku or on a traditional server." /> </div><!-- /.container --> </nav> - <div class="container" style="float: right"> + <div class="container"> {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} |