there are a line under of all links in my blog my blog: yamobile.blogspot pic: http://i12.tinypic.com/5zlvcyw.jpg why it happen? how i can remove it?
in the css use a { text-decoration: none; } Code (markup): it is by default set to text-decoration: underline but if you set it to text-decoration: none it will take away the underline from your links. Hope this helps!
In the css, I don't know if you have direct access to the css stylesheet for the blog (because it's on blogspot) if not put it in the head as <style> a { text-decoration: none; } </style> Code (markup): that goes between the <head> and </head> tags.