diff --git a/book/style.css b/book/style.css
index 03ba5b1..fae4450 100644
--- a/book/style.css
+++ b/book/style.css
@@ -208,9 +208,8 @@ figcaption.caption {
padding: 0;
}
-.menu-items .chapterToc {
+.menu-items .chapterToc, .menu-items .likechapterToc {
display: block;
- margin-bottom: 10px;
}
.menu-items a {
@@ -273,10 +272,6 @@ figcaption.caption {
z-index: 1;
}
- .menu-items .chapterToc {
- margin-bottom: 8px;
- }
-
.menu {
background: #F5F2EF;
padding: 20px 0px;
diff --git a/website/modify_build.rb b/website/modify_build.rb
index da84cce..025343f 100644
--- a/website/modify_build.rb
+++ b/website/modify_build.rb
@@ -225,7 +225,11 @@ class ModifyBuild
return text if menu.nil?
home_html = %Q{Home}
- menu.inner_html = "#{home_html} #{menu.inner_html}"
+ appendix_html = %Q{
+ Donate
+ Hardcover Book
+ }
+ menu.inner_html = "#{home_html} #{menu.inner_html} #{appendix_html}"
doc.to_html
end