diff --git a/public/css/style.less b/public/css/style.less index 0c950bc15d..ff70c6038c 100644 --- a/public/css/style.less +++ b/public/css/style.less @@ -23,6 +23,7 @@ body { @media (max-width: 979px) { + padding-top: 70px; padding-bottom: 50px; } } @@ -254,7 +255,7 @@ footer.footer { } -.hero-unit { +.jumbotron { // goes into theme background: #56BCDA; color: white; diff --git a/src/routes/api.js b/src/routes/api.js index fb715ff4e2..0b937a1ac4 100644 --- a/src/routes/api.js +++ b/src/routes/api.js @@ -49,7 +49,7 @@ var user = require('./../user.js'), require('async').each(data.categories, iterator, function(err) { data.motd_class = (config.show_motd === '1' || config.show_motd === undefined) ? '' : 'none'; - data.motd = marked(config.motd || "# NodeBB v " + pkg.version + "\nWelcome to NodeBB, the discussion platform of the future.\n\n Get NodeBB  Fork us on Github  @dcplabs"); + data.motd = marked(config.motd || "# NodeBB v " + pkg.version + "\nWelcome to NodeBB, the discussion platform of the future.\n\n
 Get NodeBB  Fork us on Github  @dcplabs
"); res.json(data); });