Fixes to the default template
diff --git a/inst/rmarkdown/templates/posterdown_betterland/resources/template.html b/inst/rmarkdown/templates/posterdown_betterland/resources/template.html
index 45bce90..3f62b72 100644
--- a/inst/rmarkdown/templates/posterdown_betterland/resources/template.html
+++ b/inst/rmarkdown/templates/posterdown_betterland/resources/template.html
@@ -92,6 +92,7 @@
 background-color: $if(secondary_colour)$$secondary_colour$24$else$#00808024$endif$;
 color: $if(primary_colour)$$primary_colour$$else$#0b4545$endif$;
 padding: 1.2mm;
+line-height: 1;
 border-radius: 2mm;
 }
 caption {
@@ -99,6 +100,7 @@
 font-size: $if(caption_fontsize)$$caption_fontsize$$else$20pt$endif$;
 font-style: italic;
 }
+
 tbody tr:nth-child(odd) {
     background-color: $if(primary_colour)$$primary_colour$$else$#0b4545$endif$20;
 }
@@ -122,6 +124,7 @@
 .caption {
 font-size: $if(caption_fontzie)$$caption_fontsize$$else$20pt$endif$;
 font-style: italic;
+padding-top: 0;
 }
 .references {
 font-size: 20px;
diff --git a/inst/rmarkdown/templates/posterdown_betterland/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/posterdown_betterland/skeleton/skeleton.Rmd
index 1bc96cd..d775e26 100644
--- a/inst/rmarkdown/templates/posterdown_betterland/skeleton/skeleton.Rmd
+++ b/inst/rmarkdown/templates/posterdown_betterland/skeleton/skeleton.Rmd
@@ -18,7 +18,7 @@
   posterdown::posterdown_betterland:
     self_contained: false
     pandoc_args: --mathjax
-    highlight: espresso
+    highlight: haddock
     number_sections: false
 link-citations: true
 bibliography: packages.bib
@@ -60,7 +60,6 @@
 To reference a citation you can add your `.bib` file to the working directory and name it in the YAML metadata or generate an automated one as done here, then you only need to reference the label value in the `.bib` file. For example this package is built on top of the wonderful {pagedown} package and I will cite it at the end of this sentance using this in the rmd `[@R-pagedown]` [@R-pagedown].
 
 
-
 # Results
 
 Here you may have some figures to show off, bellow I have made a scatterplot with the infamous Iris dataset and I can even reference to the figure automatically like this, `Figure \@ref(fig:irisfigure)`, Figure \@ref(fig:irisfigure).
@@ -72,20 +71,24 @@
      ylab = "Sepal Width")
 ```
 
-Maybe you want to show off some of that fancy code you spent so much time on to make that figure, well you can do that too! Just use the `echo=TRUE` option in the r code chunk options!
+Maybe you want to show off some of that fancy code you spent so much time on to make that figure, well you can do that too! Just use the `echo=TRUE` option in the r code chunk options, Figure \@ref(fig:myprettycode)!
 
-```{r myprettycode, echo=TRUE}
+```{r myprettycode, echo=TRUE,collapse=TRUE, fig.cap='Boxplots, so hot right now!', fig.height=3.5, out.width="100%"}
+#trim whitespace
+par(mar=c(2,2,0,0))
+#plot boxplots
 boxplot(iris$Sepal.Width~iris$Species,
-        col = c("#008080","#0b4545","#0b454580"), 
-        ylab = "Sepal Width",
+        col = "#008080", 
+        border = "#0b4545",
+        ylab = "Sepal Width (cm)",
         xlab = "Species")
 ```
 
-Now lets say you have a table of data that you wish to show off as well, have no fear, RMarkodwn is here, Table \@ref(tab:iristable):
+How about a neat table of data? See, Table \@ref(tab:iristable):
 
 ```{r, iristable}
 knitr::kable(
-  iris[1:5,1:5], format = "html",
+  iris[1:3,1:5], format = "html",
   caption = "A table made with the **knitr::kable** function.",
   align = "c", col.names = c("Sepal <br> Length",
                              "Sepal <br> Width",