For transparent footer, Modern Admin provides transparent footer options, you can check transparent footer on bottom of this page.
This table contains all classes which can be used in transparent footer. You can combine them as per footer transparent template requirements.
All these options can be set via following classes:
Classes | Description |
---|---|
.footer-transparent |
To set footer transparent you need to add .footer-transparent class in footer <footer> tag. Refer HTML markup line no 37. |
This section contains HTML Markup to create transparent footer. This markup define where to add css classes to make footer transparent.
.footer-transparent
class for adjusting footer color transparent.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-column menu-expanded">
<!-- fixed-top-->
<nav role="navigation" class="header-navbar navbar-expand-sm navbar navbar-with-menu fixed-top navbar-transparent navbar-shadow navbar-border">
...
</nav>
<!-- BEGIN Navigation-->
<div class="main-menu menu-transparent menu-fixed menu-shadow">
...
</div>
<!-- END Navigation-->
<!-- BEGIN Content-->
<div class="content app-content">
<div class="content-wrapper">
<!-- content header-->
<div class="content-header row">
...
</div>
<!-- content header-->
<!-- content body-->
<div class="content-body">
...
</div>
<!-- content body-->
</div>
</div>
<!-- END Content-->
<!-- START FOOTER DARK-->
<footer class="footer footer-transparent">
...
</footer>
<!-- START FOOTER DARK-->
</body>
</html>
Modern Admin use PUG as template engine to generate pages and whole template quickly using node js, for getting start with PUG usage & template generating process please refer template documentation.
This table contains required PUG variables to generate transparent footer.
Block | Variable | Datatype | Value | Description |
---|---|---|---|---|
footerConfig |
footerColor |
string |
'footer-transparent' |
footerConfig block has a footerColor variable, it contains footer color specific classes in that you need to add 'footer-transparent' class for transparent footer. |
To generate footer transparent page or template, you need to use following PUG code.
footerColor
variable value as 'footer-transparent'
in footerConfig
block, it contains footer specific classes in that you need to set 'footer-transparent'
.content
block has content section html file included include ../contents/footer-transparent.html
, which can be customizable on page level.If you want to use this layout on page level you need to define it on page it self. This template has one example pug file for transparent footer footer-transparent.pug
, however you can use it on template level but it will generate whole template footer transparent.
block pageVars
- var pageTitle = "Footer Transparent"
- var pageSubTitle = "Transparent color footer"
- var description = "The transparent color footer with custom transparent color options & other styling options."
- var activeMenu = "footer-transparent"
extends template
block footerConfig
- var footerCustom = "footer footer-transparent"
append breadcrumbs
include ../includes/mixins
+breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Footer"}, {name:"Footer Transparent"}])
append page-header
include page-headers/breadcrumb-top
//- Include page content in page block
append content
include ../contents/footer-transparent.html
//- Page specific dependency
//------------------------------
//- Add custom page specific CSS
block pagecss
//- Add custom page specific JS
block pagejs