diff options
Diffstat (limited to 'pelican-bootstrap3')
-rw-r--r-- | pelican-bootstrap3/static/css/style.css | 8 | ||||
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/pelican-bootstrap3/static/css/style.css b/pelican-bootstrap3/static/css/style.css index 4f23c18..646765a 100644 --- a/pelican-bootstrap3/static/css/style.css +++ b/pelican-bootstrap3/static/css/style.css @@ -231,3 +231,11 @@ figure.floatcenter, .align-center { margin:-50px 0 0; /* negative fixed header height */ } + +.gap-right { + margin-right: 10px; +} + +.gap-left { + margin-left: 10px; +} diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 610d050..85f7f5f 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -112,7 +112,7 @@ <span class="icon-bar"></span> </button> <a href="{{ SITEURL }}/" class="navbar-brand"> - {% if SITELOGO %}<img src="{{ SITEURL }}/{{ SITELOGO }}" width="{{ SITELOGO_SIZE }}"/> {% endif %} + {% if SITELOGO %}<img class="img-responsive pull-left gap-right" src="{{ SITEURL }}/{{ SITELOGO }}" width="{{ SITELOGO_SIZE }}"/> {% endif %} {% if not HIDE_SITENAME %}{{ SITENAME }}{% endif %} </a> </div> |