Dear Wal,
The reason for this behavior is simply how the touch phones work.
On the desktop, you have a mouse, which on hover changes to dark grey, and to red when mouse is moved out.
However, on phones, when you tap on a tab, the hover state is activated, and is not removed until you tap somewhere else.
Try tapping on a tab, and then try tapping somewhere outside the tab and you'll understand.
What we can do here is override the default CSS set.
Please paste the following CSS in:
Portfolio Manager > Settings > Advanced Tab > Custom CSS
@media only screen and (max-width: 768px) {
eds-bpm-section li span:hover {
background: #DA4453 !important;
color: #ffffff !important;
}
}
What this will do is, on iPad and smaller screens, the hover color would change to red. And since the screens smaller then 768px (iPad) are always touch-screen devices, the hover won't be relevant.
Please let me know if this works for yuou.