Made some divs consistent, the header was a div type with id='header'
and the footer was a footer type with no id, so now they are both both. Also added some margins at the top and bottom of the page in CSS
This commit is contained in:
@@ -4,10 +4,10 @@
|
||||
<%- include('../partials/head'); %>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<header id="header">
|
||||
<%- include("../headers/site_wide") %>
|
||||
<%- include('../headers/timeline'); %>
|
||||
</div>
|
||||
</header>
|
||||
<form method="POST" action="/submit_nothing" style="display:none">
|
||||
<!-- Form is used to help mitigate spam as it is the first form on the front page -->
|
||||
<input type="hidden" name="post_index" value="0">
|
||||
@@ -29,7 +29,7 @@
|
||||
<textarea placeholder="comment" name="content"></textarea><br/>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
<footer>
|
||||
<footer id='footer'>
|
||||
<%- include('../partials/footer'); %>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user