diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-12-19 22:12:08 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-12-19 22:12:08 -0500 |
commit | d4ab74b25eeccef4701f05a56165268e7a17038c (patch) | |
tree | a33bddb261c4e10958a070bf27e236973648000b /view/tpl | |
parent | 87248c9f47dca9f3862332430cc2f4e6160bb85a (diff) | |
download | volse-hubzilla-d4ab74b25eeccef4701f05a56165268e7a17038c.tar.gz volse-hubzilla-d4ab74b25eeccef4701f05a56165268e7a17038c.tar.bz2 volse-hubzilla-d4ab74b25eeccef4701f05a56165268e7a17038c.zip |
Move headings down to start at H3 at Mario's direction
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/help.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 8eb53417a..15d8548a3 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -3,10 +3,10 @@ <h2>{{$title}}: {{$heading}}</h2> </div> <div class="section-content-wrapper" id="doco-content"> - <h1 class="fakelink" id="doco-top-toc-heading"><span onclick="docoTocToggle(); return false;"> + <h3 class="fakelink" id="doco-top-toc-heading"><span onclick="docoTocToggle(); return false;"> <i class="fakelink fa fa-caret-right" id="doco-toc-toggle"></i> {{$tocHeading}} - </span></h1> + </span></h3> <ul id="doco-top-toc" style="margin-bottom: 1.5em; display: none;"></ul> {{$content}} </div> @@ -16,7 +16,7 @@ // Generate the table of contents in the side nav menu (see view/tpl/help.tpl) $(document).ready(function () { - $('#doco-top-toc').toc({content: "#doco-content", headings: "h1,h2,h3,h4"}); + $('#doco-top-toc').toc({content: "#doco-content", headings: "h3,h4,h5,h6"}); }); function docoTocToggle() { |