Hi all,
Think this is the appropriate area for this so here goes.............
Can somebody please tell me how/where to alter the pale blue text colour for links within the default theme? I'm guessing its a CSS matter but I don't have much experience with this :(
Thanks in advance :)
on your /Themes/default/css/index.css file find:
a.new_win:hover {
text-decoration: underline;
}
a.new_win:link, a.new_win:visited {
color: #334466;
text-decoration: none;
}
.bbc_link:link, .bbc_link:visited {
color: #778899;
}
Thanks for that but I cant seem to find /css/index.css in either my local copy or on the server. The only index files I have in themes/default are index.php and index.template.php. There are a couple of css files but not an index.css that I can find.
are you using 2.0 or 1.1.x?
for 1.1.x /Themes/default/style.css
a:hover {
text-decoration: underline;
}
a:link {
color: #476c8e;
text-decoration: none;
}
Done this now, thanks for your help Mr O :)