hi ,
could you please direct me to where i can change the size of the main image,
i would like tomake it roughly 75% of the height it is now.
regards
You can insert this style in the theme customizer in the admin panel in the CSS section
.my_header{
height: YOUR VALUE IN PIXELS
}
now the value is 540px
or you can change the value directly in the base.css file of the theme
on line 398 you'll see these styles:
.my_header { width: 90.9%; padding: 0px; margin-left: 9.1%; background-image: url(images/bg_site.jpg); background-repeat: no-repeat; background-position: 0px 0px; background-size: cover; height: 540px;
change the height then enable dev mode and refresh your website for the changes to apply, then disable dev mode.