Site Name Styling
Permalink
I just built a site in the latest version of C5 using a free theme built by VIVID called "Grain". Everything is working great (great job Vivid!), except I can't for the life of me figure out how to apply styling to the Site Name.
I have tried every css file I can find and changed or added the color value #fff and tested (one change at a time) and I finally narrowed it to to the #logo dive located in the theme's iGotStyle css file, however, when I change the font size there, it works, but attempting to change the font color does not.
Also, I would like to remove the link there...
Any help?
http://www.denominatorsband.com
I have tried every css file I can find and changed or added the color value #fff and tested (one change at a time) and I finally narrowed it to to the #logo dive located in the theme's iGotStyle css file, however, when I change the font size there, it works, but attempting to change the font color does not.
Also, I would like to remove the link there...
Any help?
http://www.denominatorsband.com
Use inspect element in ur browser , it will let u know which CSS element is used for ur logo font colour
Line 46 of iGotStyle.css is missing the '#' in front of 'logo'. You have:
but it should be
logo a { display: block; text-decoration: none; color: #FFF; }
but it should be
#logo a { display: block; text-decoration: none; color: #FFF; }