forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: anna.y on September 21, 2005, 03:05:05 am

Title: Unwanted blue color in text
Post by: anna.y on September 21, 2005, 03:05:05 am
I've fixed the problem of blue background with the kind help of experts here.

There is another place that I have blue text which I don't seem able to change in a 'classic' based theme. Names of Albums remain blue in FF no matter what color I put in '.ablink'.

I noticed that some other themes have the same problem, but others do not. 

Both 'Water drop' and 'Rainy day' themes have album titles in 'blue' in FF when their CSS defines  them to be black:
 
.alblink a {
        text-decoration: underline;
        color: #000000;
}

I've devoted already way too many hours to this little detail and I seem to be at the dead end.

It would be a shame to have to leave this 'blue' where it really does not belong...

I would appreciate suggestions where else to look for this problem  or where to insert a line: 'No blue anywhere!!!' to be effective...

Thank you in advance... I do realize it is a small problem, but it is very frustrating.

Anna
Title: Re: Unwanted blue color in text
Post by: kegobeer on September 21, 2005, 03:06:27 am
Can you post a link to a page with the blue text?
Title: Re: Unwanted blue color in text
Post by: anna.y on September 21, 2005, 03:11:21 am
Thank you so very much kegobeer:

http://www.torontogsdrescue.org/gallery/

Anna
Title: Re: Unwanted blue color in text
Post by: Tranz on September 21, 2005, 05:01:13 am
Try just adding a color tag to .alblink (as opposed to .alblink a)
Title: Re: Unwanted blue color in text
Post by: artistsinhawaii on September 21, 2005, 05:14:33 am
Anna,

In your CSS file(s) edit the following #0033CC  to any other color:

a {
        color: #0033CC;
        text-decoration: none;
}

a:hover {
        color: #0033CC;
        text-decoration: underline;
}

bblink a {
        color: #0033CC;
        text-decoration: none;
}

bblink a:hover {
        color: #0033CC;
        text-decoration: underline


Dennis
Title: Re: Unwanted blue color in text
Post by: anna.y on September 21, 2005, 06:07:26 am
Dennis, you're a genius, THANK YOU!!! worked like a charm...

I just feel so stupid now...

Anna
Title: Re: Unwanted blue color in text
Post by: anna.y on September 21, 2005, 06:14:43 am
Try just adding a color tag to .alblink (as opposed to .alblink a)

Thank you, I tried that TranzNDance and it does works for the mouse off, but would still turn blue for the 'hover'...

Anna
Title: Re: Unwanted blue color in text
Post by: artistsinhawaii on September 21, 2005, 06:15:06 am
Dennis, you're a genius, THANK YOU!!! worked like a charm...

I just feel so stupid now...

Anna

aww shucks :-[ you're welcome.  Glad to be able to help someone else. No need to feel stupid. I'm constantly groping in the dark. But then, I like groping in the dark...  ;)  Good luck on your site.

Dennis