I would like to change all the text color on my gallery.I know I need to edit Style.css but what part is it under?
take a look at the theme styleguide that comes with coppermine and is available on the demo page as well. It will show you what part of coppermine output is controlled by which css class.
Joachim
I tried that but didnt help much.Also I would like to change the footer which says "Powered by Coppermine"Not that like but under it there are two big banners which I dont like.
Quotetwo big banners which I dont like
That's the anycontent block. You can disable it in your config settings. It's covered in the documentation.
starttable("100%", "Welcome");
?>
<tr><td class="tableb" >
This is for any content block - just a test - Edit the file "anycontent.php" to change what is shown here
</td></tr>
<?php
endtable();
?>
This is all whats in anycontent.php
Am I missing something? Can't seem to find your gallery's url.
Joachim
www.georebel.com
you're using the experimental theme "2bornot2b", which is not part of the standard coppermine distribution. If you would have posted your link or at least the fact that you're using this theme, we could have solved this with ease in no time. Next time, make sure to provide all necessary information, especially a link to your page is always helpfull.
Your issue is most basic, no PHP knowledge involved, just plain html: edit themes/2bornot2b/template.html, find<p align="center"><a href="http://validator.w3.org/check?uri=http%3A%2F%2Ftariquesani.net%2Findex.php"><img
src="http://www.w3.org/Icons/valid-xhtml10"
alt="Valid XHTML 1.0!" height="31" width="88" border="0" />
</a>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0; width:88px; height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
and remove it.
Joachim
That worked,thanks!