Jump to content
xisto Community
Sign in to follow this  
Guest

Html Linking

Recommended Posts

Probably a noobish question, But how do i get rid of the Underlining under text links
You can make stylesheet to has not underlinelink by put "text-decoration: none" .

example (put code in current page between tag <head> </head> )

<style type="text/css">
a:link { color: #0000ff; text-decoration: none}
a:visited { color: #808080; text-decoration: none}
a:active { color: #808080; text-decoration: none}
a:hover { color: #ff8040; text-decoration: none}
</style>

Or you can put code in to file .css and link them from current page
example (code in style.css)

<LINK href="style.css" type=text/css rel=stylesheet>

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.