Im currently working on a Blackberry webworks app and having problems removing the default blue highlight on links. I've following the guides on the blackberry site and added the:

<meta name="x-blackberry-defaultHoverEffect" content="false" />

and the css

a:hover{background-color:transparent}

I've tried all sorts of background css properties with no luck.

Neither of these are working.

link|improve this question
feedback

1 Answer

I've got the same problem. In my css I used:

/* Links */
a, a:link, a:visited, a:active{
    cursor: pointer;
    text-decoration:none;
    color: #353535;
    font-weight: bold
}
a:hover{
    text-decoration: none;
}
a:focus {
    outline: none;
}


and then:

#my-content .txt a{
    color: #BF3232;
    font-weight: normal;
    cursor: default;
    text-decoration: none;
}   
#my-content .txt a:hover{
    text-decoration: none;
}


It worked for me.
Cheers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.