Just uploaded a new version of the Awesome Theme.
Added an option to the settings window so you can choose if the homepage slideshow images open links in the same window or a new window.
And fixed a bug where the main menu drop downs were not showing above the homepage slideshow.
To apply just that fix... in Shopify Admin > Themes > Template Editor > find "shared.css.liquid"...
Around line 210, look for:
.main-menu {
float:left;
display:inline-block;
width:760px;
z-index:-1;
}
.main-menu ul {
text-align:center;
width:100%;
position:relative;
z-index:200;
}
And delete the two lines that contain z-index, so it will look like:
.main-menu {
float:left;
display:inline-block;
width:760px;
}
.main-menu ul {
text-align:center;
width:100%;
position:relative;
}