How to remove link underline from wml??

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Ponick
    replied
    Originally posted by bOrN2pwn View Post
    Ok let's start from here. you want no lines like that in WML. Well lets see as HTML (Hyper Text Markup Language) can use the function style for style sheets. That is why it says Hyper Text Markup Language as WML (Wireless Markup Language), formerly called HDML (Handheld Devices Markup Languages) can use it if you call your header to do so.

    Wat you are seeing when running your code and you get HTML markup failed means your trying to run a WML script in a HTML format which wont work. So run a better DTD (Document Type Definition) by maybe converting you WML to HTML or xHTML.

    Wish you the best of luck.

    WapLive WEB
    yah ...thanx alot ...... your wishes were succesfully working .... i did it :D

    Leave a comment:


  • bOrN2pwn
    replied
    Ok let's start from here. you want no lines like that in WML. Well lets see as HTML (Hyper Text Markup Language) can use the function style for style sheets. That is why it says Hyper Text Markup Language as WML (Wireless Markup Language), formerly called HDML (Handheld Devices Markup Languages) can use it if you call your header to do so.

    Wat you are seeing when running your code and you get HTML markup failed means your trying to run a WML script in a HTML format which wont work. So run a better DTD (Document Type Definition) by maybe converting you WML to HTML or xHTML.

    Wish you the best of luck.

    WapLive WEB

    Leave a comment:


  • Ponick
    replied
    i tried with this <style type=”text/css”>
    a {
    text-decoration: none;
    }
    </style>



    but my browser showing

    XML parsing failed: syntax error (Line: 9, Character: 0)

    6:
    7:
    8: </head>
    9: <style type=�text/css�>
    10: a {
    11: text-decoration: none;
    12: }





    and if i click Reparse document as HTML ....then it work .... can somebody help?

    Leave a comment:


  • Ponick
    started a topic How to remove link underline from wml??

    How to remove link underline from wml??

    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
    Last edited by Ponick; 29.12.09, 12:48.
Working...
X