forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: raindance on July 31, 2009, 06:15:05 pm

Title: [Solved]: Asterix next to theme name in theme list, theme not appearing?
Post by: raindance on July 31, 2009, 06:15:05 pm
Hi,
I'm just beginning to customize my first theme. I followed the steps in the documentation although I must be doing something wrong or missing something obvious.

I took the theme "sample"
Renamed to KP
Found all instances of theme/sample and changed to theme/KP in theme.php, css and theme.html files
Uploaded
Logged in as admin
Changed to KP theme in the config area
Don't see new theme/styles when i look at the gallery in a browser
Do see an asterix/dot next to theme name in theme list

Have i done something wrong so far?

Thanks in advance
Laura
Title: Re: Asterix next to theme name in theme list, theme not appearing?
Post by: Nibbler on July 31, 2009, 06:21:20 pm
You should not copy the sample theme but one that's close to what you want.

Post a link to your site. Clear your cookies.
Title: Re: Asterix next to theme name in theme list, theme not appearing?
Post by: raindance on July 31, 2009, 06:29:59 pm
http://www.raindancemedia.com/gallery/index.php?theme=KP

Cookies cleared

All I did so far was change the background color on the style sheet.

I'll try starting from a different theme.

Thanks
Title: Re: Asterix next to theme name in theme list, theme not appearing?
Post by: Nibbler on July 31, 2009, 06:50:25 pm
These paths are not correct

Code: [Select]
<link rel="stylesheet" href="../KP2/themes/KP/style.css" type="text/css" />
<script type="text/javascript" src="../KP2/scripts.js"></script>

Should be

Code: [Select]
<link rel="stylesheet" href="themes/KP/style.css" type="text/css" />
<script type="text/javascript" src="scripts.js"></script>
Title: Re: Asterix next to theme name in theme list, theme not appearing?
Post by: raindance on July 31, 2009, 07:00:18 pm
Nibbler,
Changed, thanks for catching that, but still not working.
Title: Re: Asterix next to theme name in theme list, theme not appearing?
Post by: Nibbler on July 31, 2009, 07:03:38 pm
It's still wrong.

Code: [Select]
<link rel="stylesheet" href="../KP/themes/KP/style.css" type="text/css" />

Should be

Code: [Select]
<link rel="stylesheet" href="themes/KP/style.css" type="text/css" />
Title: Re: Asterix next to theme name in theme list, theme not appearing?
Post by: raindance on July 31, 2009, 07:04:58 pm
In template.html i have

<link rel="stylesheet" href="../KP/themes/KP/style.css" type="text/css" />
<script type="text/javascript" src="scripts.js"></script>

I did a find and replace for both water_drop and KP2 to KP

Are you seeing it wrong in another place?
Title: Re: Asterix next to theme name in theme list, theme not appearing?
Post by: raindance on July 31, 2009, 07:06:21 pm
Got it, sorry. My total mistake.  Didn't see that .. before dir

Thank you! It's showing up now.

I appreciate your help and fast response!