Footer Configuration
The footer style values are of strings type and can be configured as follows:
Footer Style
- Property: "footer"
- Choices: "sticky", "default", "glass"
Example
"footer": { "value" : "default" }
Changing Footer Style Settings
There are two ways to change the footer Style settings:
1. Using the Live Customizer
You can work on footer style using the Live Customizer in three different ways:
a. By Declaring Properties in gulp.config.json
Example gulp.config.json:
"options":{
"saveLocal": "sessionStorage",
"storeKey": "huisetting-html",
"setting":{
"footer": { "value": "default" },
}
},
b. By Copying Configuration from the Live Customizer
- Go to the Live Customizer and click the 'Copy Config' button at the top-right to copy the JSON file from the settings panel.
- Replace the copied code into the options object in the gulp.config.json file.
Before:
"options":{
"saveLocal": "sessionStorage",
"storeKey": "huisetting-html",
"setting":{
"footer": { "value": "default" },
}
},
After:
"options":{
"saveLocal": "sessionStorage",
"storeKey": "huisetting-html",
"setting":{
"footer": { "value": "default" },
}
},
c. By Adding Properties in the Tag
Example <meta>
tag:
<head>
<meta name="setting_options"
content="{
"saveLocal":"sessionStorage",
"storeKey":"huisetting-html",
"setting":{
"footer": { "value": "default" },
}
}>
</head>
1. Manual Configuration
You can change the footer style with a single action by adding the appropriate class to
the <footer>
.
Footer Style
To change the footer style, set the class in footer:
- Footer Default:
- Footer Sticky:
- Footer Glass:
<footer class="default">
.......
</footer>
<footer class="sticky">
.......
</footer>
<footer class="glass">
.......
</footer>