Alright, so let me give you a hand here. So let's take the Website Design dropdown for instance. It's a bit snug on the right in the tablet view, so let's move it over using:
/*Tablet*/
@media (min-width: 768px) and (max-width: 959px) {
.gf-menu li.item1851:hover > .dropdown, .gf-menu li.active:hover > .dropdown {
left: -30px;
}
}
So the media query makes the CSS override specific to the Tablet view. So with the future Contact dropdown use the same code except using a different menu item # and let's move it more to the left. Contact is item1847 (you can view the item numbers in the HTML). So we have:
/*Tablet*/
@media (min-width: 768px) and (max-width: 959px) {
.gf-menu li.item1847:hover > .dropdown, .gf-menu li.active:hover > .dropdown {
left: -90px;
}
}
The more negative we go, the farther away we are from the right it seems. You can adjust that number accordingly.
Also, if it appears snug in the Desktop view, use the Desktop media query as well:
/*Desktops*/
@media only screen and (min-width: 960px) and (max-width: 1199px) {
.gf-menu li.item1847:hover > .dropdown, .gf-menu li.active:hover > .dropdown {
left: -90px;
}
}