album display text color

0
www.crashevents.com

and a direct link would be.

http://www.crashevents.com/index.php?option=com_muscol&view=artists&letter=H&Itemid=66

i would either like to change the text color of the album names to a blue, or change the background rectangle from a whitish to a darker color...what file do i accomplish this in?
Responses (3)
  • Accepted Answer

    Friday, June 19 2009, 04:36 PM - #Permalink
    0
    the CSS file for all that is:

    components/com_muscol/assets/artists.css

    ... do you know some CSS, right..?? ;)
    The reply is currently minimized Show
  • Accepted Answer

    Saturday, June 20 2009, 05:06 PM - #Permalink
    0
    well, definitely not as much as you do, but i understand it enough to know that in the artists.css file, the only colors that are outlined are

    #858585
    #eeeeee
    #999999
    #CCC
    #000


    none of which are the yellow color of the text that is displayed as the title.

    where is the exact line of code to change that to blue?
    The reply is currently minimized Show
  • Accepted Answer

    Saturday, June 20 2009, 05:45 PM - #Permalink
    0
    this is yellow because your template.css file defines a:hover elements to be yellow. No property on artists.css is making it to be yellow, it is just the color your template makes it to be.

    add this somewhere and you'll get what you want:

    .artist_name a:hover{
    color:#000000;
    }

    of course, change the #000000 to the color you want it to be
    :)

    Germi
    The reply is currently minimized Show
Your Reply