I have a CPG embedded in a page that uses styling which is affecting the "Powered by Coppermine" link at the bottom of the gallery. See what I'm talking about here (http://kokospetspa.com/gallery/). Mouse over the area and you'll see the link is still there - just white, like the background.
I tried searching through the theme.php file from the sample folder, but the closest I could find that (to me, at least) seemed to have anything to do with that link was the "Function for writing a pagefooter".
Where/how can I set the styling specifically for just that link?
Thanks for anyone's help.
It is the css you want to look at. We'll not tell you how to remove the link as that would not be playing the game.
Working out what css does what is really simple. If you use Firefox as your browser then there is a fantastic plugin call firebug (https://addons.mozilla.org/en-US/firefox/addon/1843). It will tell you exactly what line in the css you need to edit and you can even try things live on your site to see how it looks.
Phil, thank you for your quick reply. No, I'm never asked how to remove it. As I said I'm trying to apply specific styling to just that link due to the styling scheme I'm using on anchor tags on the page the gallery is on.
I should have mentioned that I did find in the style.css file the ".footer", ".footer a", and ".footer a:hover" styling, but adding color styling to those items did not work, as the styling I am using on the page (and site wide) is for anchor tags as well, presumably because the class is overridden by the tag styling I'm using.
My thinking was to find the HTML that builds either that link or the div that it is in (with the footer class), add an id to the div and style that in my style sheet.
All the styling can be done via css. Use the !important; (http://webdesign.about.com/od/css/f/blcssfaqimportn.htm) tag. So if you want a bright purple footer use color:#EE00EE !important;
in .footer.
That did the trick!
Thanks a lot, Phill!