refactor: update footer layout and styles for improved responsiveness

- Restructured footer HTML to use flexbox for better alignment and spacing.
- Adjusted CSS styles for #footer, including padding and box-sizing.
- Removed unnecessary float properties and improved layout consistency.
This commit is contained in:
Zack Spear
2025-05-06 15:54:52 -07:00
parent 2401c2b8d3
commit f2e4d6fb18
3 changed files with 50 additions and 37 deletions
@@ -234,8 +234,6 @@ $(window).scroll(function() {
$('.back_to_top').fadeOut(scrollDuration);
}
<?if ($themeHelper->isTopNavTheme()):?>
var top = $('div#header').height()-1; // header height has 1 extra pixel to cover overlap
$('div#menu').css($(this).scrollTop() > top ? {position:'fixed',top:'0'} : {position:'absolute',top:top+'px'});
// banner
$('div.upgrade_notice').css($(this).scrollTop() > 24 ? {position:'fixed',top:'0'} : {position:'absolute',top:'24px'});
<?endif;?>