LvnLife
(Ryan G)
August 22, 2017, 2:47pm
1
Hi, trying to get rid of the visited hyperlink color blue #dreadedPirateRobertsBlue ;(
I tried everything @vincent mentioned here > How to change color of visited links - #2 by vincent
I’ve attached screenshots of pretty much all content areas where the edits should happen
In my example, from a drop down menu list, the Visited link which is blue is what I’m trying to change to black [ client doesn’t want it and we do what the client wants…lol ]
Capacity Building Fund is shown in blue
Class for all these styled links = nav_DropDown_style
Code I’m pasting is
a:nav_DropDown_style:visited {
color: #000000;
}
any help would be appreciated
bbrazis
(Bradley Brazis)
August 22, 2017, 3:40pm
2
@LvnLife did the code not work on the published site? Custom code will only work on a published site and not on the site preview.
LvnLife
(Ryan G)
August 23, 2017, 5:04pm
3
Yes, I published it and cleared my cache! @vincent any chance you can shed some 0:30 second light on what could be the issue? thxs
Here’s a published link > https://preview.webflow.com/preview/tpc-yukon-2017?preview=db50a22be3cbe98f6d812047a110c65b
LvnLife
(Ryan G)
August 23, 2017, 9:47pm
5
I tried this @bbrazis and still no Joy;(
a:nav-dropdown-style:visited {
color: #000000;
}
and Published it
samliew
(webflowexpert.com)
August 23, 2017, 10:55pm
6
This is invalid.
a.nav-dropdown-style:visited {
color: black;
}
1 Like
LvnLife
(Ryan G)
August 23, 2017, 11:16pm
7
super, thanks @samliew - unfort’ it took away the on.Rollover code I had for it I set-up in the Editor.
So trying this and it doesn’t seem to be working ;(
<style>
a.nav-dropdown-style:visited {
color: black;
}
a:hover {
color: #b11e28;
}
</style>
any idea what I’m doing wrong / syntax ?
samliew
(webflowexpert.com)
August 23, 2017, 11:57pm
8
<style>
a.nav-dropdown-style:visited {
color: black;
}
a.nav-dropdown-style:hover {
color: #b11e28;
}
</style>
1 Like
LvnLife
(Ryan G)
August 24, 2017, 12:07am
9
You the man Sam [ but you already know this :] thanks for the help #goodEnergy
AnnaKelian
(Anna Kelian)
January 11, 2018, 12:53pm
10
Now, you can style the text color, background color, and border color of visited links without custom code by choosing the visited state from the States menu.