any one know how to remove link under line in php wml site??
i know how to remove underline from html
Typing in the blue code ” style=”text-decoration:none” “, will remove the hyperlink underline:
to all link
<style type=”text/css”>
a {
text-decoration: none;
}
</style>
but this html tricks not working with php,wml
i know how to remove underline from html
Typing in the blue code ” style=”text-decoration:none” “, will remove the hyperlink underline:
to all link
<style type=”text/css”>
a {
text-decoration: none;
}
</style>
but this html tricks not working with php,wml
Comment