navigation bar and caption

Hi,
Thanks for excellent theme. I have 2 questions:

  1. Is it possible to change position of the navigation bar? I would like to put a navigation bar above header image, something like this

  2. Is it possible to change the image caption style? This is default style

    and I would like this style

  1. In our theme demo we use slider instead of Custom Header Image and it would be so muh easier for you to do the same instead of trying to change element place via code. For more information on hot to setup slider, please see theme documentation.

  2. To add caption on images you can use code like this. Other customizations might be required but this should get the most of the job done. Add this code to Theme Options - Other - Custom CSS

.wp-caption .wp-caption-text {
background-color: rgba(0, 0, 0, 0.7);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #FFF;
font-size: 12px;
line-height: 1.5;
margin: 0;
max-height: 50%;
opacity: 1;
padding: 6px 8px;
bottom: 0;
left: 0;
text-align: left;
width: auto;
}

Thanks for quick answer.

  1. I will try to setup the slider.
  2. That code is exactly what I was looking for. There is only one little problem: when I use a full width image, everything is perfect(see here), but with smaller images, caption line is about 3mm longer than image canvas(example1, example2). What should I change in the code to fix this?