Select to view content in your preferred language

Change Hyperlink Color in Text Box

406
2
Jump to solution
02-15-2024 05:38 AM
Ed_
by MVP Regular Contributor
MVP Regular Contributor

Based on the HTML below, how can I change the hyperlink color to white instead of the default blue in the text box?

<h2 style="text-align: center;"><span style="background-color: initial; color: currentcolor; font-family: var(--fontsBaseFamily),Avenir Next;">Select a category to begin your journey</span></h2><p style="text-align: left;">*Please note that some apps might require a login using your username (for the application) and password; if you do not have access, please contact&nbsp;<a href="mailto:LOL@AOL.org" style="background-color: rgb(28, 42, 72); font-family: Calibri, sans-serif; font-size: 14.6667px; text-align: start;">LOL@AOL.org</a><span style="color: rgb(0, 0, 0); font-family: Calibri, sans-serif; font-size: 14.6667px; text-align: start;">.</span></p>
Question | Analyze | Visualize
0 Kudos
1 Solution

Accepted Solutions
Amir-Sarrafzadeh-Arasi
Occasional Contributor

Dear Ed_,

I hope you are doing great,

There is a keyword which you can add to your <a> tag.

color: white;

Please find the html file in the attachment.

 

Best Wishes

Amir Sarrafzadeh Arasi

View solution in original post

2 Replies
Amir-Sarrafzadeh-Arasi
Occasional Contributor

Dear Ed_,

I hope you are doing great,

There is a keyword which you can add to your <a> tag.

color: white;

Please find the html file in the attachment.

 

Best Wishes

Amir Sarrafzadeh Arasi
Ed_
by MVP Regular Contributor
MVP Regular Contributor

@Amir-Sarrafzadeh-Arasi yup that works, thank you so much for the quick response 🙂

Question | Analyze | Visualize