nine-immersive-header
v0.5.2
Published
npm package for dynamic nine immersive header
Downloads
335
Keywords
Readme
nine-immersive-header
npm package for dynamic nine immersive header
instructions
- add
<header>
and<footer>
tags to html - If using more then one
<header>
or<footer>
, add classmasthead
- add canonical url
- import nine-immersive-header and add config
- config accepts object with properties : headerConfig and footerConfig
- both configs accept
- logoColor, bgColor, textColor, css
- css is object with name = css property and value = css value
example
import nineHeader from "nine-immersive-header";
nineHeader({
headerConfig: {
logoColor: "white",
bgColor: "transparent",
css: {
position: "absolute",
borderBottom: "solid 1px black"
}
},
footerConfig: {
bgColor: "#fff"
}
});
masthead override
- By default, masthead logo logic is getting pulled from window.location.hostname. You can add an override by using a meta tag with the name of "masthead" then choose a masthead by adding content prop. See all possible values in src/js/site/config.js
- e.g to show nine celebrity logo:
<meta name="masthead" content="celebrity" />