forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: Kurtm on January 25, 2005, 07:23:39 pm

Title: Theme applied to entire web
Post by: Kurtm on January 25, 2005, 07:23:39 pm
     I have searched for and found a few topics but nothing I can piece together to do what I want.  I really like the eyeball theme and would like to apply it to the rest of my web-site, but I don't know how.
     
     Should I start by using the theme.html and the style.css?  If so, how do I make the images show in the theme.html?  Do I copy the original images over to another folder and manually apply them or is there a way to automate the process?

Thank you.

Kurt

Title: Re: Theme applied to entire web
Post by: rvblog on January 25, 2005, 10:09:54 pm
You just start with your site's basic html template (made from your site's index.html - or index.php file):

Code: [Select]
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <title>Your Site Title</title>
 <link rel="stylesheet" href="http://www.yoursite.com/yourdirectorystructure/style.css" type="text/css" media="screen" />
</head>
<body>

Add all your content and html tags in here

</body>
</html>

Then create a css style sheet, and link to it.

And then, just use CSS to make your site's html file look like your coppermine eyeball  theme  - you do need to have a basic knowledge of html and CSS because it's hard to just cut and paste due to all the different ID and class names that are used.

Title: Re: Theme applied to entire web
Post by: Kurtm on January 25, 2005, 10:19:42 pm
Thanks for the Info!  I just relized I should not have postedthis type of question here.  Sorry!

I guess I have alot to learn!