Hi berniexltd,
You’ll want to add some support for Safari for the FlexBox layout. You currently have the following in your CSS:
#menu-primary.site-navigation.menu-container {
padding-right: 20px;
display: flex;
float: none;
}
Adding either display: -webkit-flex; or display: -webkit-box; should do the trick. I tried it with display: -webkit-box; and the menu centered over the image. You might want to add both just to be sure. So, you’d end up with:
#menu-primary.site-navigation.menu-container {
padding-right: 20px;
display: flex;
display: -webkit-flex;
display: -webkit-box;
float: none;
}
Thanks so much! That did the trick.