Can someone point me in the right direction to drop down the arrow chevrons in the home page banner adverts so they are at the bottom of the banners rather than midway?
You have to edit the css property in the css file of your theme.
Settings & tools > All Setting & tools > Webstore Templates
Then drill down into your current themes files eg:
/yourthemename/css/app.css
In the app.css file search for the following css property ".carousel-control .fa"
You should see the following entry:
.carousel-control .fa {
position: absolute;
top: 50%;
left: 50%;
z-index: 5;
display: inline-block;
}
Change top: 50%; to top: 80%; and the cevrons will then be aligned at the bottom of the carousel.