forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: Sert Turk on August 28, 2004, 10:06:02 pm

Title: How to change text color
Post by: Sert Turk on August 28, 2004, 10:06:02 pm
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?
Title: Re: How to change text color
Post by: Joachim Müller on August 29, 2004, 01:56:51 am
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
Title: Re: How to change text color
Post by: Sert Turk on August 30, 2004, 12:13:03 am
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.
Title: Re: How to change text color
Post by: kegobeer on August 30, 2004, 12:31:57 am
Quote
two 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.
Title: Re: How to change text color
Post by: Sert Turk on August 30, 2004, 01:57:13 am

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
Title: Re: How to change text color
Post by: Joachim Müller on August 30, 2004, 04:10:26 am
Am I missing something? Can't seem to find your gallery's url.

Joachim
Title: Re: How to change text color
Post by: Sert Turk on August 30, 2004, 11:54:34 am
www.georebel.com
Title: Re: How to change text color
Post by: Joachim Müller on August 31, 2004, 08:10:30 am
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
Code: [Select]
<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
Title: Re: How to change text color
Post by: Sert Turk on August 31, 2004, 03:41:19 pm
That worked,thanks!