That code should work, but you need to upload a proper image. Take a look at what ElectricFeet says in this post:
https://www.ads-software.com/support/topic/where-are-my-images-3?replies=13
So, first step, upload a proper image.
Second step, change your custom css.
For example, about the height, this is the same also for increasing it, just set proper values.
https://www.themesandco.com/snippet/reduce-height-slider/
If you also want to change the width (in the snippet you posted I see a width of 1200px, by default the boxed slider width is 1170px), add this to your style.css:
@media (min-width: 1200px){
#customizr-slider.container {
width: 1200px;
}
And remember to set properly width values for different screen width, to ensure the responsiveness.
p.s.
I hope you don’t mind if I tell you that you have a problem with your header. For example, in “About Us”, you can’t access to the first link in your right sidebar, that’s cause your top menu overlaps it. If you want you can try this:
Add these two rules in your style.css
.navbar-inner .social-block {
display: none;
}
.navbar-inner .inside.site-description {
display: none;
}
And remove this one:
.navbar .nav > li > a {
position: relative;
top: -95px;
}