How to remove link underline from wml??

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

    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.
    PHP Code:
    /* I don't know everything hehe */ 
    Find me on facebook

    #2
    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?
    PHP Code:
    /* I don't know everything hehe */ 
    Find me on facebook

    Comment


      #3
      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
      BakGat
      Code:
      class Counter {
      public:
        void Count();
        int  ReadDisplay();
      private:
        int  CurrentCount;
      };








      Back up my hard drive? How do I put it in reverse?
      My Community
      BakGat
      sigpic

      Comment


        #4
        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
        PHP Code:
        /* I don't know everything hehe */ 
        Find me on facebook

        Comment

        Working...
        X