My normal desktop site has links like this
<a class="various fancybox.iframe" href="template.html"><div class="text_14">Feature Article</div> </a>
But for my phone site i need the "class" to be gone. So that the link will open as a subpage instead of a fancy box.
So i tried
@media only screen and (max-width : 480px) {
a{
text-decoration: none;
class: none;
}
which doesn't work. So how do i get the class to not be displayed?