Hi,
On a website I am setting up using a WordPress responsive theme there are links to neighborhood restaurants on the website version that are disabled in the handheld device version. I use:
`#content a {
pointer-events: none;
color: #616161;
}`
There is one link that is not disabled. I use:
`#content a[href="http://feedingamerica.org"]:link {
pointer-events: auto;
color: #4886C7;
}`
This works fine on the Iphone and Android phones but I have not been able to confirm but it appears it doesn't work on windows mobile phones.
Does it work on windows mobile phones?
If not, is there a way I can accomplish this?
Please note, I am not a developer and anything beyond a few lines of CSS code is way out of my league.
Thank You