diff --git a/docs/README.md b/docs/README.md index a81b2cd3..587aeed9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -125,6 +125,51 @@ Page layout: +
Show Advanced Page and Site Appearance Options »
+ + +
diff --git a/docs/index.html b/docs/index.html index f3f716a6..2cfa01b1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -419,6 +419,17 @@ } } + function toggleDiv2(link) { + var theDiv = document.getElementById("docsifythisurlbuilderoptionsDiv2"); + if (theDiv.style.display === "none") { + link.text = 'Hide Advanced Page and Site Appearance Options \«'; + theDiv.style.display = "block"; + } else { + link.text = 'Show Advanced Page and Site Appearance Options \»'; + theDiv.style.display = "none"; + } + } + function validateColorAndUpdatePreview() { var getColor = document.getElementById("linkcolor"); var hexCode = getColor.value;