For navigation:
do a css search for
div#mw-panel div.portal div.body ul li a { color: #0645AD; } div#mw-panel div.portal div.body ul li a:visited { color: #0B0080; }
and change it to
div#mw-panel div.portal div.body ul li a { font-size:16px; color: #008000; } div#mw-panel div.portal div.body ul li a:visited { color: #A0600B; }
use this when you need the same color for the link and visited link
div#mw-panel div.portal div.body ul li a, a:visited { font-size:16px; color: #008000; }
or just add a new line with this code
#mw-panel .portal a, #mw-panel .portal a:visited { font-size:16px!important; color: red!important; }
For footer
add a new line with this code
div#footer ul li{ font-size:16px!important; color:black!important; } div#footer ul li a,div#footer ul li a:visited { color: orange!important; }
}
source share