npm package for dynamic fairfax header
- add
<header>
and<footer>
tags to html - If using more then one
<header>
or<footer>
, add classmasthead
- add canonical url
- import fairfax-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
import fairfax from "fairfax-header";
fairfax({
headerConfig: {
logoColor: "white",
bgColor: "transparent",
css: {
position: "absolute",
borderBottom: "solid 1px black"
}
},
footerConfig: {
bgColor: "#fff"
}
});