MyBB Community Forums

Full Version: hey guys i need some help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
okay so i just put one this new theme but i hate the color and its the links and its blue i want to change it but iv'e looked through the css and did not find were to change it if some one could help me that would be great

heres my website
http://clownmodding.com

so can anyone help me
You can change the values for the link color at the global.css stylesheet of that theme.
(2012-11-12, 02:40 PM)borbole Wrote: [ -> ]You can change the values for the link color at the global.css stylesheet of that theme.

i understand that but i do not know witch one it is
(2012-11-13, 12:04 AM)Nitro56 Wrote: [ -> ]
(2012-11-12, 02:40 PM)borbole Wrote: [ -> ]You can change the values for the link color at the global.css stylesheet of that theme.

i understand that but i do not know witch one it is


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

a:visited {
        color: #b00005;
        text-decoration: none;
}

a:hover, a:active {
         color: #b00005;
         text-decoration: none;
}


And change the values for the color accordingly.