Sticky Header for Sparkling WordPress theme

Is it possible to make the header sticky by adding some coding?
Also how do I change the height of the header?

Thanks in advance!

  1. You can make sticky menu by simply following these simple steps.

  2. Again this depends on your website setup but if everything is by default just like on our theme demo you can reduce header high by adding following code to Appearance >> Theme Options >> Other >> Custom CSS

.navbar-nav li a {
  line-height: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

a.navbar-brand {
  height: 30px;
  padding-top: 5px;
}

if you want to make header larger, just increase those values instead of reducing them. But like I said, it will work only if everything is by default as I don’t know how your website looks.