I am trying to add a border to the footer, but it seems like something is blocking it from showing properly.
Below are the CSS lines I have used:
position: fixed;
bottom: 0;
right: 0;
left: 0;
clear: both;
line-height: 1.36em;
padding: 08px 0px 0px;
text-align: center;
margin: 0px auto;
background: #fff;
border-top: 5px solid #4cb6cb;
Can you spot what I might be setting wrong that could be causing this issue?
Here is the HTML code snippet as well:
<div id="page_footer">
<div id="bottom_nav">
<a href="/about"><?php echo $LANG['footer-about']; ?></a>
<a href="/terms"><?php echo $LANG['footer-terms']; ?></a>
<a href="/support"><?php echo $LANG['footer-support']; ?></a>
</div>
<div id="footer" class="clear">
<?php echo APP_TITLE; ?> © <?php echo APP_YEAR; ?>
<a class="lang_link" href="javascript:void(0)" onclick="App.getLanguageBox('<?php echo $LANG['page-language']; ?>'); return false;"><?php echo $LANG['lang-name']; ?></a>
</div>