Footer

Template footer options with responsive and all the options.


Here’s an example of basic footer.


Remove any background color like .bg-{color} class for transparent footer.


Here’s an example of footer with UI Elements.


Color Schemes PRO

Theming the footer has never been easier thanks to the combination of theming classes and background-color utilities. Then, customize with .bg-* utilities.

Class Value
class="footer bg-{value}" primary | secondary | success | danger | warning | info | light | dark | white | body-tertiary

Here’s an example of footer theme. Use .bg-footer-theme class to change footer according to theme.

Footer using SCSS variables to change the color of the footer.

Find footer's SCSS variables:

$footer-bg: var(--#{$prefix}paper-bg) !default;
$footer-color: var(--#{$prefix}body-color) !default;
$footer-border-width: 0 !default;
$footer-border-color: var(--#{$prefix}border-color) !default;
$footer-link-color: var(--#{$prefix}primary) !default;
$footer-link-hover-color: rgba(var(--#{$prefix}primary-rgb), .8) !default;
$footer-link-disabled-color: color-mix(in sRGB, var(--#{$prefix}base-color) 40%, var(--#{$prefix}paper-bg)) !default;
$footer-link-active-color: var(--#{$prefix}primary) !default;
$footer-brand-color: $footer-link-active-color !default;
$footer-brand-hover-color: color-mix(in sRGB, #{$footer-link-active-color} #{$bg-label-tint-amount}, var(--#{$prefix}paper-bg)) !default;
$footer-box-shadow: var(--#{$prefix}box-shadow-xl) !default;

Footer SCSS variables are used for CSS variables. Footer CSS variables can be updated as per themes.

Find footer's CSS variables

--#{$prefix}footer-color: #{$footer-color};
--#{$prefix}footer-bg: #{$footer-bg};
--#{$prefix}footer-border-width: #{$footer-border-width};
--#{$prefix}footer-border-color: #{$footer-border-color};
--#{$prefix}footer-link-color: #{$footer-link-color};
--#{$prefix}footer-link-hover-color: #{$footer-link-hover-color};
--#{$prefix}footer-link-disabled-color: #{$footer-link-disabled-color};
--#{$prefix}footer-link-active-color: #{$footer-link-active-color};
--#{$prefix}footer-brand-color: #{$footer-brand-color};
--#{$prefix}footer-brand-hover-color: #{$footer-brand-hover-color};
--#{$prefix}footer-box-shadow: #{$footer-box-shadow};

Advanced, responsive footer with more options and advanced stylings.

© 2017- ThemeSelection, Hand-crafted & Made with ❤️