Hyperlink on red backgroundShould hyperlink text color be changed after visitedHyperlink the verb or the noun?When should hyperlink text be used?Red (and green) indicator icons on a dark blue backgroundShould long line of text be used as a hyperlink?Should special characters or punctuation be included in hyperlink text?What is the general meaning of a struck out hyperlink?What color for error messages for a form with a red background?white text on yellow backgroundDefining colour themes of gradient scales: should I use hex or RGBA?
How can this pool heater gas line be disconnected?
Can I use my laptop, which says 240V, in the USA?
stdout and stderr redirection to different files
We are two immediate neighbors who forged our own powers to form concatenated relationship. Who are we?
What is the best way for a skeleton to impersonate human without using magic?
Renting a house to a graduate student in my department
What are some possible reasons that a father's name is missing from a birth certificate - England?
How to select certain lines (n, n+4, n+8, n+12...) from the file?
Should these notes be played as a chord or one after another?
The lexical root of the past tense forms differs from the lexical root of the infinitive form
How do I compare the result of "1d20+x, with advantage" to "1d20+y, without advantage", assuming x < y?
find not returning expected files
International Code of Ethics for order of co-authors in research papers
How can I answer high-school writing prompts without sounding weird and fake?
Why do unstable nuclei form?
Is a vertical stabiliser needed for straight line flight in a glider?
How do I get past a 3-year ban from overstay with VWP?
histogram using edges
How to make the table in the figure in LaTeX?
How to pronounce "r" after a "g"?
Is Simic Ascendancy triggered by Awakening of Vitu-Ghazi?
Is there any evidence to support the claim that the United States was "suckered into WW1" by Zionists, made by Benjamin Freedman in his 1961 speech?
Guns in space with bullets that return?
Is there enough time to Planar Bind a creature conjured by a one hour duration spell?
Hyperlink on red background
Should hyperlink text color be changed after visitedHyperlink the verb or the noun?When should hyperlink text be used?Red (and green) indicator icons on a dark blue backgroundShould long line of text be used as a hyperlink?Should special characters or punctuation be included in hyperlink text?What is the general meaning of a struck out hyperlink?What color for error messages for a form with a red background?white text on yellow backgroundDefining colour themes of gradient scales: should I use hex or RGBA?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am currently working on a website where I have a very prominent error box with the colour #e20413
and text in #FFF
. However this, text contains two links that are blue and therefore not very readable.
What colour would normally be used for the hyperlink in these situations?
Example of current situation:
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
Visible in action: https://jsfiddle.net/kLxv8psg/
color hyperlinks
add a comment |
I am currently working on a website where I have a very prominent error box with the colour #e20413
and text in #FFF
. However this, text contains two links that are blue and therefore not very readable.
What colour would normally be used for the hyperlink in these situations?
Example of current situation:
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
Visible in action: https://jsfiddle.net/kLxv8psg/
color hyperlinks
4
This is less of a UX question than a graphics question.
– Mayo
May 1 at 12:49
1
@Joost_96 you should include your code on StackOverflow, not just as a jsfiddle. StackExchange added Stack Snippets for this purpose if you want to edit your question to include it.
– Marie
May 1 at 14:37
2
@Marie. I've inlined the code (suggested edit pending review), but Stack Snippets don't work on this site, so I've left the link to JS Fiddle in place too.
– TRiG
May 1 at 16:00
1
@Marie. Further: ux.meta.stackexchange.com/q/3321/2131.
– TRiG
May 1 at 16:03
Hi Joost! I'm unsure this is the kind of question that this particular site is suited for.
– invot
May 1 at 17:23
add a comment |
I am currently working on a website where I have a very prominent error box with the colour #e20413
and text in #FFF
. However this, text contains two links that are blue and therefore not very readable.
What colour would normally be used for the hyperlink in these situations?
Example of current situation:
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
Visible in action: https://jsfiddle.net/kLxv8psg/
color hyperlinks
I am currently working on a website where I have a very prominent error box with the colour #e20413
and text in #FFF
. However this, text contains two links that are blue and therefore not very readable.
What colour would normally be used for the hyperlink in these situations?
Example of current situation:
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
.alert
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
font-size: 12px;
margin-top: 10px;
.alert-danger
color: #FFF;
background-color: #e20413;
border-color: #ebccd1;
<div class="alert alert-danger">
This is some text with a link to <a href="">some webpage</a> and some more text with another <a href="">link</a>!
</div>
Visible in action: https://jsfiddle.net/kLxv8psg/
color hyperlinks
color hyperlinks
edited May 1 at 16:33
TRiG
721616
721616
asked May 1 at 8:25
Joost_96Joost_96
293
293
4
This is less of a UX question than a graphics question.
– Mayo
May 1 at 12:49
1
@Joost_96 you should include your code on StackOverflow, not just as a jsfiddle. StackExchange added Stack Snippets for this purpose if you want to edit your question to include it.
– Marie
May 1 at 14:37
2
@Marie. I've inlined the code (suggested edit pending review), but Stack Snippets don't work on this site, so I've left the link to JS Fiddle in place too.
– TRiG
May 1 at 16:00
1
@Marie. Further: ux.meta.stackexchange.com/q/3321/2131.
– TRiG
May 1 at 16:03
Hi Joost! I'm unsure this is the kind of question that this particular site is suited for.
– invot
May 1 at 17:23
add a comment |
4
This is less of a UX question than a graphics question.
– Mayo
May 1 at 12:49
1
@Joost_96 you should include your code on StackOverflow, not just as a jsfiddle. StackExchange added Stack Snippets for this purpose if you want to edit your question to include it.
– Marie
May 1 at 14:37
2
@Marie. I've inlined the code (suggested edit pending review), but Stack Snippets don't work on this site, so I've left the link to JS Fiddle in place too.
– TRiG
May 1 at 16:00
1
@Marie. Further: ux.meta.stackexchange.com/q/3321/2131.
– TRiG
May 1 at 16:03
Hi Joost! I'm unsure this is the kind of question that this particular site is suited for.
– invot
May 1 at 17:23
4
4
This is less of a UX question than a graphics question.
– Mayo
May 1 at 12:49
This is less of a UX question than a graphics question.
– Mayo
May 1 at 12:49
1
1
@Joost_96 you should include your code on StackOverflow, not just as a jsfiddle. StackExchange added Stack Snippets for this purpose if you want to edit your question to include it.
– Marie
May 1 at 14:37
@Joost_96 you should include your code on StackOverflow, not just as a jsfiddle. StackExchange added Stack Snippets for this purpose if you want to edit your question to include it.
– Marie
May 1 at 14:37
2
2
@Marie. I've inlined the code (suggested edit pending review), but Stack Snippets don't work on this site, so I've left the link to JS Fiddle in place too.
– TRiG
May 1 at 16:00
@Marie. I've inlined the code (suggested edit pending review), but Stack Snippets don't work on this site, so I've left the link to JS Fiddle in place too.
– TRiG
May 1 at 16:00
1
1
@Marie. Further: ux.meta.stackexchange.com/q/3321/2131.
– TRiG
May 1 at 16:03
@Marie. Further: ux.meta.stackexchange.com/q/3321/2131.
– TRiG
May 1 at 16:03
Hi Joost! I'm unsure this is the kind of question that this particular site is suited for.
– invot
May 1 at 17:23
Hi Joost! I'm unsure this is the kind of question that this particular site is suited for.
– invot
May 1 at 17:23
add a comment |
5 Answers
5
active
oldest
votes
Just use white for the links too.
alert a
color: white;
The underline shows clearly that it is a link: https://jsfiddle.net/2dmp9cbj/
I'd also add another style for the one you remove. i.e. instead of blue colour, leave it white but throw in a font-weight modifier.
– insidesin
May 2 at 2:15
How about states like visited?
– Thomas
May 2 at 14:19
Maybe I'm just old-school, but I'm always wary of white text.
– cloudworks
May 6 at 15:10
add a comment |
Try a softer red with a harsh red border - like this:
download bmml source – Wireframes created with Balsamiq Mockups
I would normally do that and but the client wanted it more prominent and inline with the other elements on the webpage, that's why it is the solid red colour.
– Joost_96
May 1 at 8:47
16
As an expert in your field you need to advise them, either the hyperlink colour needs to be changed or a softer red used, there's no magic button that's going to make blue any easier to read on deep red.
– DarrylGodden
May 1 at 8:50
2
Precisely what Darryl said. I had this same conversation with our business once. I mocked up the actual site with the softer red elements and explained how dark red would negatively affect usability and they loved them.
– Marie
May 1 at 14:39
add a comment |
Try out this site:
https://webaim.org/resources/contrastchecker/
You basically have a colour contrast issue here. Although you may want to keep the blue colour as that's the standard (and generally most well-known colour) for hyperlinks, people are savvy enough these days to know if the piece of text is a different colour to the surrounding wording and is underlined then it's a clickable link.
Yup, colour contrast is the correct term here. There's also webaim.org/resources/linkcontrastchecker specifically for checking link colours, and colorsafe.co is a useful tool to generate colours when you need a starting point.
– Bob
May 2 at 16:57
add a comment |
This is a very deep topic, with lots of research out there depending on your purpose. For just plain and simple "I want it to stand out but still be readable", however, I'm personally fond of yellow for red backgrounds.
https://jsfiddle.net/uh6f84jm/
add a comment |
If you want it more prominent and a red warning add a red box:
.alert a
background-color: red;
color: white;
padding: 1px 2px;
text-decoration: underline;
text-transform: uppercase;
Now you can change the color of the box, link, even uppercase, independently from the alert box color. This can be modified to suit an alert link that you should click (important message) or a link that you should not click (rouge website warning).
Keeping this UX (and not design) it needs to be clear what the intended action of the alert is, if ignoring the alert is reasonable (permitted) it need not be uppercased, if it's something that you are warning against clicking on then it can be strikeout without an underline. It may be ugly but it can flash if it must. As long as each choice and outcome is obvious to a user trained to use the software.
I appreciate that your text is an example. For a general webpage for the public, without prior training in the use of the webapp, some more text explaining the purpose and consequences of the links would be useful additional information.
Note: It's possible to outline the box for people whom are colorblind.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "102"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f125341%2fhyperlink-on-red-background%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just use white for the links too.
alert a
color: white;
The underline shows clearly that it is a link: https://jsfiddle.net/2dmp9cbj/
I'd also add another style for the one you remove. i.e. instead of blue colour, leave it white but throw in a font-weight modifier.
– insidesin
May 2 at 2:15
How about states like visited?
– Thomas
May 2 at 14:19
Maybe I'm just old-school, but I'm always wary of white text.
– cloudworks
May 6 at 15:10
add a comment |
Just use white for the links too.
alert a
color: white;
The underline shows clearly that it is a link: https://jsfiddle.net/2dmp9cbj/
I'd also add another style for the one you remove. i.e. instead of blue colour, leave it white but throw in a font-weight modifier.
– insidesin
May 2 at 2:15
How about states like visited?
– Thomas
May 2 at 14:19
Maybe I'm just old-school, but I'm always wary of white text.
– cloudworks
May 6 at 15:10
add a comment |
Just use white for the links too.
alert a
color: white;
The underline shows clearly that it is a link: https://jsfiddle.net/2dmp9cbj/
Just use white for the links too.
alert a
color: white;
The underline shows clearly that it is a link: https://jsfiddle.net/2dmp9cbj/
answered May 1 at 10:29
user2397282user2397282
65915
65915
I'd also add another style for the one you remove. i.e. instead of blue colour, leave it white but throw in a font-weight modifier.
– insidesin
May 2 at 2:15
How about states like visited?
– Thomas
May 2 at 14:19
Maybe I'm just old-school, but I'm always wary of white text.
– cloudworks
May 6 at 15:10
add a comment |
I'd also add another style for the one you remove. i.e. instead of blue colour, leave it white but throw in a font-weight modifier.
– insidesin
May 2 at 2:15
How about states like visited?
– Thomas
May 2 at 14:19
Maybe I'm just old-school, but I'm always wary of white text.
– cloudworks
May 6 at 15:10
I'd also add another style for the one you remove. i.e. instead of blue colour, leave it white but throw in a font-weight modifier.
– insidesin
May 2 at 2:15
I'd also add another style for the one you remove. i.e. instead of blue colour, leave it white but throw in a font-weight modifier.
– insidesin
May 2 at 2:15
How about states like visited?
– Thomas
May 2 at 14:19
How about states like visited?
– Thomas
May 2 at 14:19
Maybe I'm just old-school, but I'm always wary of white text.
– cloudworks
May 6 at 15:10
Maybe I'm just old-school, but I'm always wary of white text.
– cloudworks
May 6 at 15:10
add a comment |
Try a softer red with a harsh red border - like this:
download bmml source – Wireframes created with Balsamiq Mockups
I would normally do that and but the client wanted it more prominent and inline with the other elements on the webpage, that's why it is the solid red colour.
– Joost_96
May 1 at 8:47
16
As an expert in your field you need to advise them, either the hyperlink colour needs to be changed or a softer red used, there's no magic button that's going to make blue any easier to read on deep red.
– DarrylGodden
May 1 at 8:50
2
Precisely what Darryl said. I had this same conversation with our business once. I mocked up the actual site with the softer red elements and explained how dark red would negatively affect usability and they loved them.
– Marie
May 1 at 14:39
add a comment |
Try a softer red with a harsh red border - like this:
download bmml source – Wireframes created with Balsamiq Mockups
I would normally do that and but the client wanted it more prominent and inline with the other elements on the webpage, that's why it is the solid red colour.
– Joost_96
May 1 at 8:47
16
As an expert in your field you need to advise them, either the hyperlink colour needs to be changed or a softer red used, there's no magic button that's going to make blue any easier to read on deep red.
– DarrylGodden
May 1 at 8:50
2
Precisely what Darryl said. I had this same conversation with our business once. I mocked up the actual site with the softer red elements and explained how dark red would negatively affect usability and they loved them.
– Marie
May 1 at 14:39
add a comment |
Try a softer red with a harsh red border - like this:
download bmml source – Wireframes created with Balsamiq Mockups
Try a softer red with a harsh red border - like this:
download bmml source – Wireframes created with Balsamiq Mockups
answered May 1 at 8:41
DarrylGoddenDarrylGodden
5,381932
5,381932
I would normally do that and but the client wanted it more prominent and inline with the other elements on the webpage, that's why it is the solid red colour.
– Joost_96
May 1 at 8:47
16
As an expert in your field you need to advise them, either the hyperlink colour needs to be changed or a softer red used, there's no magic button that's going to make blue any easier to read on deep red.
– DarrylGodden
May 1 at 8:50
2
Precisely what Darryl said. I had this same conversation with our business once. I mocked up the actual site with the softer red elements and explained how dark red would negatively affect usability and they loved them.
– Marie
May 1 at 14:39
add a comment |
I would normally do that and but the client wanted it more prominent and inline with the other elements on the webpage, that's why it is the solid red colour.
– Joost_96
May 1 at 8:47
16
As an expert in your field you need to advise them, either the hyperlink colour needs to be changed or a softer red used, there's no magic button that's going to make blue any easier to read on deep red.
– DarrylGodden
May 1 at 8:50
2
Precisely what Darryl said. I had this same conversation with our business once. I mocked up the actual site with the softer red elements and explained how dark red would negatively affect usability and they loved them.
– Marie
May 1 at 14:39
I would normally do that and but the client wanted it more prominent and inline with the other elements on the webpage, that's why it is the solid red colour.
– Joost_96
May 1 at 8:47
I would normally do that and but the client wanted it more prominent and inline with the other elements on the webpage, that's why it is the solid red colour.
– Joost_96
May 1 at 8:47
16
16
As an expert in your field you need to advise them, either the hyperlink colour needs to be changed or a softer red used, there's no magic button that's going to make blue any easier to read on deep red.
– DarrylGodden
May 1 at 8:50
As an expert in your field you need to advise them, either the hyperlink colour needs to be changed or a softer red used, there's no magic button that's going to make blue any easier to read on deep red.
– DarrylGodden
May 1 at 8:50
2
2
Precisely what Darryl said. I had this same conversation with our business once. I mocked up the actual site with the softer red elements and explained how dark red would negatively affect usability and they loved them.
– Marie
May 1 at 14:39
Precisely what Darryl said. I had this same conversation with our business once. I mocked up the actual site with the softer red elements and explained how dark red would negatively affect usability and they loved them.
– Marie
May 1 at 14:39
add a comment |
Try out this site:
https://webaim.org/resources/contrastchecker/
You basically have a colour contrast issue here. Although you may want to keep the blue colour as that's the standard (and generally most well-known colour) for hyperlinks, people are savvy enough these days to know if the piece of text is a different colour to the surrounding wording and is underlined then it's a clickable link.
Yup, colour contrast is the correct term here. There's also webaim.org/resources/linkcontrastchecker specifically for checking link colours, and colorsafe.co is a useful tool to generate colours when you need a starting point.
– Bob
May 2 at 16:57
add a comment |
Try out this site:
https://webaim.org/resources/contrastchecker/
You basically have a colour contrast issue here. Although you may want to keep the blue colour as that's the standard (and generally most well-known colour) for hyperlinks, people are savvy enough these days to know if the piece of text is a different colour to the surrounding wording and is underlined then it's a clickable link.
Yup, colour contrast is the correct term here. There's also webaim.org/resources/linkcontrastchecker specifically for checking link colours, and colorsafe.co is a useful tool to generate colours when you need a starting point.
– Bob
May 2 at 16:57
add a comment |
Try out this site:
https://webaim.org/resources/contrastchecker/
You basically have a colour contrast issue here. Although you may want to keep the blue colour as that's the standard (and generally most well-known colour) for hyperlinks, people are savvy enough these days to know if the piece of text is a different colour to the surrounding wording and is underlined then it's a clickable link.
Try out this site:
https://webaim.org/resources/contrastchecker/
You basically have a colour contrast issue here. Although you may want to keep the blue colour as that's the standard (and generally most well-known colour) for hyperlinks, people are savvy enough these days to know if the piece of text is a different colour to the surrounding wording and is underlined then it's a clickable link.
answered May 1 at 9:58
sclarkesclarke
1,3051519
1,3051519
Yup, colour contrast is the correct term here. There's also webaim.org/resources/linkcontrastchecker specifically for checking link colours, and colorsafe.co is a useful tool to generate colours when you need a starting point.
– Bob
May 2 at 16:57
add a comment |
Yup, colour contrast is the correct term here. There's also webaim.org/resources/linkcontrastchecker specifically for checking link colours, and colorsafe.co is a useful tool to generate colours when you need a starting point.
– Bob
May 2 at 16:57
Yup, colour contrast is the correct term here. There's also webaim.org/resources/linkcontrastchecker specifically for checking link colours, and colorsafe.co is a useful tool to generate colours when you need a starting point.
– Bob
May 2 at 16:57
Yup, colour contrast is the correct term here. There's also webaim.org/resources/linkcontrastchecker specifically for checking link colours, and colorsafe.co is a useful tool to generate colours when you need a starting point.
– Bob
May 2 at 16:57
add a comment |
This is a very deep topic, with lots of research out there depending on your purpose. For just plain and simple "I want it to stand out but still be readable", however, I'm personally fond of yellow for red backgrounds.
https://jsfiddle.net/uh6f84jm/
add a comment |
This is a very deep topic, with lots of research out there depending on your purpose. For just plain and simple "I want it to stand out but still be readable", however, I'm personally fond of yellow for red backgrounds.
https://jsfiddle.net/uh6f84jm/
add a comment |
This is a very deep topic, with lots of research out there depending on your purpose. For just plain and simple "I want it to stand out but still be readable", however, I'm personally fond of yellow for red backgrounds.
https://jsfiddle.net/uh6f84jm/
This is a very deep topic, with lots of research out there depending on your purpose. For just plain and simple "I want it to stand out but still be readable", however, I'm personally fond of yellow for red backgrounds.
https://jsfiddle.net/uh6f84jm/
answered May 2 at 2:49
ap55ap55
191
191
add a comment |
add a comment |
If you want it more prominent and a red warning add a red box:
.alert a
background-color: red;
color: white;
padding: 1px 2px;
text-decoration: underline;
text-transform: uppercase;
Now you can change the color of the box, link, even uppercase, independently from the alert box color. This can be modified to suit an alert link that you should click (important message) or a link that you should not click (rouge website warning).
Keeping this UX (and not design) it needs to be clear what the intended action of the alert is, if ignoring the alert is reasonable (permitted) it need not be uppercased, if it's something that you are warning against clicking on then it can be strikeout without an underline. It may be ugly but it can flash if it must. As long as each choice and outcome is obvious to a user trained to use the software.
I appreciate that your text is an example. For a general webpage for the public, without prior training in the use of the webapp, some more text explaining the purpose and consequences of the links would be useful additional information.
Note: It's possible to outline the box for people whom are colorblind.
add a comment |
If you want it more prominent and a red warning add a red box:
.alert a
background-color: red;
color: white;
padding: 1px 2px;
text-decoration: underline;
text-transform: uppercase;
Now you can change the color of the box, link, even uppercase, independently from the alert box color. This can be modified to suit an alert link that you should click (important message) or a link that you should not click (rouge website warning).
Keeping this UX (and not design) it needs to be clear what the intended action of the alert is, if ignoring the alert is reasonable (permitted) it need not be uppercased, if it's something that you are warning against clicking on then it can be strikeout without an underline. It may be ugly but it can flash if it must. As long as each choice and outcome is obvious to a user trained to use the software.
I appreciate that your text is an example. For a general webpage for the public, without prior training in the use of the webapp, some more text explaining the purpose and consequences of the links would be useful additional information.
Note: It's possible to outline the box for people whom are colorblind.
add a comment |
If you want it more prominent and a red warning add a red box:
.alert a
background-color: red;
color: white;
padding: 1px 2px;
text-decoration: underline;
text-transform: uppercase;
Now you can change the color of the box, link, even uppercase, independently from the alert box color. This can be modified to suit an alert link that you should click (important message) or a link that you should not click (rouge website warning).
Keeping this UX (and not design) it needs to be clear what the intended action of the alert is, if ignoring the alert is reasonable (permitted) it need not be uppercased, if it's something that you are warning against clicking on then it can be strikeout without an underline. It may be ugly but it can flash if it must. As long as each choice and outcome is obvious to a user trained to use the software.
I appreciate that your text is an example. For a general webpage for the public, without prior training in the use of the webapp, some more text explaining the purpose and consequences of the links would be useful additional information.
Note: It's possible to outline the box for people whom are colorblind.
If you want it more prominent and a red warning add a red box:
.alert a
background-color: red;
color: white;
padding: 1px 2px;
text-decoration: underline;
text-transform: uppercase;
Now you can change the color of the box, link, even uppercase, independently from the alert box color. This can be modified to suit an alert link that you should click (important message) or a link that you should not click (rouge website warning).
Keeping this UX (and not design) it needs to be clear what the intended action of the alert is, if ignoring the alert is reasonable (permitted) it need not be uppercased, if it's something that you are warning against clicking on then it can be strikeout without an underline. It may be ugly but it can flash if it must. As long as each choice and outcome is obvious to a user trained to use the software.
I appreciate that your text is an example. For a general webpage for the public, without prior training in the use of the webapp, some more text explaining the purpose and consequences of the links would be useful additional information.
Note: It's possible to outline the box for people whom are colorblind.
answered May 2 at 3:52
RobRob
145117
145117
add a comment |
add a comment |
Thanks for contributing an answer to User Experience Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f125341%2fhyperlink-on-red-background%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
This is less of a UX question than a graphics question.
– Mayo
May 1 at 12:49
1
@Joost_96 you should include your code on StackOverflow, not just as a jsfiddle. StackExchange added Stack Snippets for this purpose if you want to edit your question to include it.
– Marie
May 1 at 14:37
2
@Marie. I've inlined the code (suggested edit pending review), but Stack Snippets don't work on this site, so I've left the link to JS Fiddle in place too.
– TRiG
May 1 at 16:00
1
@Marie. Further: ux.meta.stackexchange.com/q/3321/2131.
– TRiG
May 1 at 16:03
Hi Joost! I'm unsure this is the kind of question that this particular site is suited for.
– invot
May 1 at 17:23