Hello Mark,
Thank you for your help and input! It is greatly appreciated!
I added the code your provided me to my existing gantry-custom.css file but it affected the menu item across all platforms.
It also caused it to behave improperly on the iPad. Now, when you tap the Άρθρα menu item it opens the dropdown briefly and then goes straight to it's link instead of showing the dropdown and letting you select what you want.
I realize now I was targeting the menu item incorrectly. The code I was trying to use before was this.gf-menu .dropdown ul .item284 {border-top-left-radius: 5px !important;}
.gf-menu li:hover > .dropdown ul .item284, .gf-menu li.active:hover > .dropdown ul .item284 {left: -35px !important;}
I obtained that by using firebug to inspect the elements on the page and then tried to modify it to target the menu item but was off as it did nothing for me.
Now what I have done is to implement what you gave me so that it only affects the menu item with a tablet in Portrait mode with the following code./* IPAD IN PORTRAIT MODE */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 959px)
and (orientation : portrait) {
/* TO FIX MENU ITEM ARTHRA ON IPAD AIR */
ul.gf-menu li.item284 .dropdown {
border-top-left-radius: 5px !important;
border-top-right-radius: 0px !important;
left: auto;
right: -1px;
}
}
That code works great as far as only affecting the menu item on tablets in Portrait mode.
However it doesn't solve the problem described above where the dropdown is only displayed briefly after the menu item is tapped.
What else can I do/add to the code to get the menu behaving normally again? i.e. keep the dropdown menu open when the menu item is first tapped instead of going directly to it's link.
thanks again,
Michael
P.S. - I noticed another problem when implementing your code.
As I mentioned in my previous post, with your code added, tapping on the menu item Άρθρα displays the dropdown menu only briefly before going to it's respective link.
When the site is displaying the Άρθρα page and you tap on Άρθρα again to see the dropdown menu it once again reverts to displaying itself as it originally did to the right side pushing outside the site boundaries.