Added a footer with a disclaimer for old browsers.

This commit is contained in:
Robbie Antenesse 2015-10-26 15:57:32 -06:00
parent b8e822eaa7
commit 9fb7061f5e
2 changed files with 11 additions and 0 deletions

View File

@ -4,6 +4,16 @@
border: none; border: none;
} }
footer {
width: 100%;
text-align: center;
position:fixed;
bottom: 0px;
left: 0px;
background: #aaaaaa;
padding: 3px;
}
form { form {
margin: 15px; margin: 15px;
float: left; float: left;

View File

@ -71,5 +71,6 @@
<button type="button" onclick="SaveSettings(); HideSettings(); return false;">Save and Close</button> <button type="button" onclick="SaveSettings(); HideSettings(); return false;">Save and Close</button>
</form> </form>
</div> </div>
<footer>Version <script>document.write(currentVersion);</script>. Dictionary Builder only guaranteed to work with most up-to-date HTML5 browsers.</footer>
</body> </body>
</html> </html>