forum.coppermine-gallery.net

Support => cpg1.4 themes/skins/templates => cpg1.4.x Support => Older/other versions => cpg1.4 theme contributions => Topic started by: snork13 on November 24, 2005, 06:47:29 pm

Title: BlackBirch-Theme for cpg1.4.x
Post by: snork13 on November 24, 2005, 06:47:29 pm
ramppi made BlackBirch for1.3 version (http://forum.coppermine-gallery.net/index.php?topic=20141.0), thought i would port it for the 1.4 release.
Hope this can be moved, and that it was ported correctly.

the zip was too large to attach :P

download here (http://www.phantasyposters.org/gallery/displayimage.php?album=3&pos=0)

-snork

Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Joachim Müller on November 24, 2005, 11:19:56 pm
Demo (http://coppermine-gallery.net/demo/cpg14x/index.php?theme=blackbirch) - Download (http://prdownloads.sourceforge.net/coppermine/cpg1.4.x_theme_blackbirch.zip?download)

Thanks for converting it.
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: ramppi on November 29, 2005, 07:06:50 am
Hi Snork13,

Not been visiting here for a while - nice to find out that You have made  blackbirch migration for 1.4(applause) - just thought to fix it in 'these days'.

All Good
Matti
Title: Link to logo in Blackbirch
Post by: ramppi on November 29, 2005, 07:12:21 am
One user asked how to link in Blackbirch logo. 'Logo' (site-logob.jpg) is bgr image so it can not be done straight but You can do it like this:

Make a transparent .gif (for example 'site_logotrans.gif') and place it in template.html cell (top left) over your logo- fix size to fit your logo and link to that transparent .gif.

All Good
Matti
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Titooy on November 29, 2005, 11:01:22 am
There is one bug: the charset (iso-8859-1) is hardcoded into the template.html file.
Title: Re: Link to logo in Blackbirch
Post by: natrlhy on November 29, 2005, 10:53:19 pm
One user asked how to link in Blackbirch logo. 'Logo' (site-logob.jpg) is bgr image so it can not be done straight but You can do it like this:

Make a transparent .gif (for example 'site_logotrans.gif') and place it in template.html cell (top left) over your logo- fix size to fit your logo and link to that transparent .gif.

All Good
Matti

Thanks for your help Matti regarding creating a linkable image.  What I did was modify his line (about line # 25. I made other changes):

td width="25%" align="left" valign="bottom"><span class="topmenu"><a href="http://yoursite.com"><img src="themes/blackbirch/images/site_logob.jpg" border="0"></a></span></td>

After doing that and playing around with table sizes, it's looking great now!  ;D

Thanks again!
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: natrlhy on November 29, 2005, 10:58:30 pm
I am also seeing a bug where clicking on the help-icons (the little ? clickable icon when enabled in the config)  with the blackbirch theme enabled, the background is white as well as the text.  Images appear as normal though.  Not sure which file would need to be edited in order to fix this.  Maybe the sytles.css file?
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: calan on November 29, 2005, 10:59:41 pm
I just downloaded and installed cpg1.4.x_theme_blackbirch.zip from Sourceforge and the theme says it's valid XHTML and CSS, it doesn't seem to be. I made the necessary changes to the theme to make it valid (at least on my server). Anyone want this?

Edit: Hmm. It's valid. But I still get a bunch of warnings on the CSS. Haven't looke in to this yet.
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: calan on November 29, 2005, 11:11:52 pm
I am also seeing a bug where clicking on the help-icons (the little ? clickable icon when enabled in the config)  with the blackbirch theme enabled, the background is white as well as the text.  Images appear as normal though.  Not sure which file would need to be edited in order to fix this.  Maybe the sytles.css file?

Inserting a color-line after line 168 in style.css solves this problem and gives black text on white background. I don't know if it has any adverse side-effects though.

Change

Code: [Select]
.tableb {
        background: transparent;
        padding-top: 2px;

to

Code: [Select]
.tableb {
        background: transparent;
color : #000000;
        padding-top: 2px;

cheers.
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: natrlhy on November 29, 2005, 11:50:21 pm
Inserting a color-line after line 168 in style.css solves this problem and gives black text on white background. I don't know if it has any adverse side-effects though.

Change

Code: [Select]
.tableb {
        background: transparent;
        padding-top: 2px;

to

Code: [Select]
.tableb {
        background: transparent;
color : #000000;
        padding-top: 2px;

cheers.
Quote

Most appreciated!  This worked perfectly.  I did try changing just the background: transparent; to #000000; and it did not look as good with the images.

MANY THANKS! I was viewing the source of the help file pop-up and saw this: <body class="tableb"> but still learning about CSS.

UPDATE: I found the side-effect... other text that was used elsewhere is now black and cannot be read (I was in the catagory section)
Modified it to this and seems OK:

Code: [Select]
.tableb {
        background: black;
        color : #FFFFFF;
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: calan on November 29, 2005, 11:59:38 pm
Oh, and while you're mucking about in the stylesheet you might as well fix an error in in it.

Line 428
Code: [Select]
letter-spacing: 0,5pxshould be
Code: [Select]
letter-spacing: 0.5px
cheers.
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: natrlhy on November 30, 2005, 12:04:03 am
 8) Thanks! What does this change affect?
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: calan on November 30, 2005, 12:18:45 am
8) Thanks! What does this change affect?

It's just a typo from the person that wrote the stylesheet to begin with. Hopefully it shouldn't change anything noticeably but it avoids any errors in parsing (because a comma is not the same as a dot).

Cheers.

Edit: I mucked about a bit, and I can't really figure out what it actually does. I can't find any changes when changing the value of that. Maybe it's unused?
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Joachim Müller on December 12, 2005, 07:26:55 am
split unrelated issue (login with IE) into separate thread: http://forum.coppermine-gallery.net/index.php?topic=24982.0
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: docgonzo on February 04, 2006, 06:35:02 pm
I 've used this excellent theme, and remixed it a bit...
Check it out on : http://www.docgonzo.com (http://www.docgonzo.com)
Would like to thank ramppi and snork13 for theri excellent work!
Title: Small fix to Blackbirch
Post by: ramppi on February 22, 2006, 10:35:18 am
Theme updated (I updated my galleries to cpg 1.4.4 too). The site body background-color (default=black #000000) is now ruled by .css (instead of template). Also readme.txt updated

Can be loaded here
http://www.mattikoivu.fi/blackbirch.zip (http://www.mattikoivu.fi/blackbirch.zip)

Working example of BB theme
http://www.petankki.net/galleria (http://www.petankki.net/galleria)

all good
Matti
Title: Blackbirch theme - small update
Post by: ramppi on March 19, 2006, 04:46:29 pm
Done small update to bb-theme. Total site background-color is now ruled by .css (instead of template body)
Here
http://forum.coppermine-gallery.net/index.php?topic=24041.msg130757#msg130757 (http://forum.coppermine-gallery.net/index.php?topic=24041.msg130757#msg130757)

all good, Matti

If You like to do update, it's so small that it's easy to do manually also:

in 'template.html' delete line 8: <body bgcolor="#000000"> away. Add in Your  <body> tag: <body class="allover_bgr">.
in css add somewhere (in the beginning):

.allover_bgr {
      background-color: #000000;
}

thats it - Matti (change that now in css if You like to change Your bgr-col)
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Gizmo on April 07, 2006, 09:36:04 pm
I use Firefox 99% of the time and didn't notice that there is a bug in the flimstrip for this theme. If you use IE (my version is 6.0.x - SP2) you'll see that only the corners have the film.gif and none showing inbetween. I checked nearly all the sites listed in this thread and they all show the same issues as does the demo. I can't seem to put my finger on it but thought I'd post a warning.

Cheers,
Billy
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Gizmo on April 08, 2006, 10:18:53 pm
It's raining like crazy here so thought I would tinker with this IE problem to see if I could find a solution since I'm using a modified version of this. Since my html experience isn't as high as the dev folks, I'll outline what I found and hope for an answer. Attached is a screenshot of the filmstrip in IE. The template.html and style.css for this cpg 1.4.4 version of the Blackbirch theme did not validate correctly so I've fixed everything except one problem which is causing the issue in IE in the first place.

The issue causing the before problem was the background pic (handu.jpg) used in the intermediate photo table is messing with the filmstrip table. So, I commented it out in the style.css if anyone wants to play with it.

Now here is the strange part, following the instructions in the upgade doc (http://coppermine-gallery.net/demo/cpg14x/docs/theme/index.html (http://coppermine-gallery.net/demo/cpg14x/docs/theme/index.html)), everything was cool except I kept getting the broke issue in IE. Come to find out it's the DOCTYPE statement that's causing all the problem. Changing this:

Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
to this:

Code: [Select]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
is causing the problem and if I leave it as 4.01 Transitional, all is well. Here is a post that mentions this issue as well http://forum.coppermine-gallery.net/index.php?topic=24454.0 (http://forum.coppermine-gallery.net/index.php?topic=24454.0) so I'll leave here as it is and go have a pint since it's not going to stop raining.

Cheers,

Billy

PS. The attached theme is working well now except that the template.html has the older doctype statement. You can see the new version here on my test gallery http://www.bullseyephotos.com/gallery/displayimage.php?album=random&cat=0&pos=-17&theme=blackbirch (http://www.bullseyephotos.com/gallery/displayimage.php?album=random&cat=0&pos=-17&theme=blackbirch).

Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Joachim Müller on January 28, 2007, 01:12:24 pm
The Blackbirch theme had been broken on the demo as well as in the downloads section. Gizmo fixed them and created a new package. Links to demo and download are still valid as per my reply above:
Demo (http://coppermine-gallery.net/demo/cpg14x/index.php?theme=blackbirch) - Download (http://prdownloads.sourceforge.net/coppermine/cpg1.4.x_theme_blackbirch.zip?download)
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Catie on July 02, 2007, 05:02:08 am
Love this theme! thanks a ton to snork and ramppi! I modified it to match my team colors here:http://www.privateers.sittingonair.com/index.php (http://www.privateers.sittingonair.com/index.php)
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Jassu on October 17, 2007, 06:09:32 pm
Anyone have psd with layers of handu.jpg?
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Pascal YAP on October 18, 2007, 01:54:23 pm
This file is not in the official package.
Have you read the README file, and see inside it author's email ?

PYAP
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Joachim Müller on October 18, 2007, 06:10:51 pm
The psd version of handu.jpg is not included in the original release of the theme (that was designed for cpg1.3.x) neither. The theme has originally been created by ramppi (http://forum.coppermine-gallery.net/index.php?action=profile;u=18609) (see announcement thread, link to cpg1.3.x-version of this theme). However, according to our logs, ramppi has been last online here on 2007-02-02.
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: abnvet on November 01, 2007, 08:14:46 pm
Nice theme, I was wondering how I modify the area on the top right of the header: YOUR SITE ETC | LINKS IF YOU LIKE
SOME MENULINK | LINK NR 2
Title: Re: BlackBirch-Theme for cpg1.4.x
Post by: Joachim Müller on November 02, 2007, 06:33:34 am
We have a strict "one question per thread" policy that you agreed to respect when signing up. This is an announcement thread for a particular theme, you mustn't ask theme customization questions here. Start a thread of your own, posting a link to your gallery and attaching your theme as a zip file to your thread.