text linking problem - Post ID 6150

User 486615 Photo


Registered User
1 post

ok , so im real new to this software, but i just want to type some text and create a link , for example , i typed the words ABOUT MIKE
, i slected it , created a link to a page , every thing works out great, but the text is now underlined and changed color , how do i do this so that there is no underline and the color stays the same.
User 282670 Photo


Registered User
3,940 posts

in the head section of your page between <head>here</head> place this code and just change the colors a:link { text-decoration: none;
color: black;
}

a:active {
color: black;
}

a:visited {
color: black;
}

a:hover {
color: blue;
}




User 456980 Photo


Registered User
81 posts

The other thing is, in HTML editor, when you go to make a new page from quickstart, you can change the settings for the appearance of links in the new page.
I work on my computer mainly for the purpose of working on my computer.
User 463058 Photo


Ambassador
1,086 posts

Just quick note that a:active should come last, so you have link, visited, hover, and active.

a:link {
text-decoration: none;
color: black;
}

a:visited {
color: black;
}

a:hover {
color: blue;
}

a:active {
color: black;
}
User 456980 Photo


Registered User
81 posts

One thing I just thought of: the "hover" colour is the colour it will turn when someone's mouse passes over it.. so if you want that to stay the same as well, make it the same as the other two.
I work on my computer mainly for the purpose of working on my computer.

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.