Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: StrangerWithin on December 21, 2010, 04:55:29 PM

Title: CSS Question
Post by: StrangerWithin on December 21, 2010, 04:55:29 PM
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 :)
Title: Re: CSS Question
Post by: mirahalo on December 21, 2010, 06:19:27 PM
on your /Themes/default/css/index.css file find:

Code (css) Select

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;
}


Title: Re: CSS Question
Post by: StrangerWithin on December 21, 2010, 06:40:53 PM
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.
Title: Re: CSS Question
Post by: mirahalo on December 21, 2010, 06:45:36 PM
are you using 2.0 or 1.1.x?


for 1.1.x   /Themes/default/style.css

Code (css) Select

a:hover {
text-decoration: underline;
}

a:link {
color: #476c8e;
text-decoration: none;
}




Title: Re: CSS Question
Post by: StrangerWithin on December 24, 2010, 10:08:53 AM
Done this now, thanks for your help Mr O :)