text linking problem - Post ID 6150
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.
, 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.
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;
}
color: black;
}
a:active {
color: black;
}
a:visited {
color: black;
}
a:hover {
color: blue;
}
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.
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;
}
text-decoration: none;
color: black;
}
a:visited {
color: black;
}
a:hover {
color: blue;
}
a:active {
color: black;
}
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.