• I have custom stylesheets for all links – however they are not showing up on the page in any browser. The links in the right nav are correct but the links on the pages or posts are not – they are blue and purple on visited. See what I am talking about here:

    https://www.windsorbikes.com/trips-trails/

    How do I fix this?

Viewing 1 replies (of 1 total)
  • if you want them like the links in the pages menu in the right sidebar,
    add ‘.art-Post a’ with :link, :visited, and :hover to the existing styles, for instance change style.css here:

    .art-BlockContent-body a:link, .art-Post a:link
    {
    	color: #624B26 !important;
    font-family: Arial, Helvetica, Sans-Serif;
    text-decoration: underline;
    }
    
    .art-BlockContent-body a:visited, .art-BlockContent-body a.visited, .art-Post a:visited
    {
    	color: #9B773C !important;
    font-family: Arial, Helvetica, Sans-Serif;
    text-decoration: underline;
    }
    
    .art-BlockContent-body a:hover, .art-BlockContent-body a.hover, .art-Post a:hover
    {
    	color: #030303;
    font-family: Arial, Helvetica, Sans-Serif;
    text-decoration: none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘CSS for a:link color not overriding standard blue?’ is closed to new replies.