Theme applied to entire web Theme applied to entire web
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Theme applied to entire web

Started by Kurtm, January 25, 2005, 07:23:39 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Kurtm

     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


rvblog

You just start with your site's basic html template (made from your site's index.html - or index.php file):


<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.


Kurtm

Thanks for the Info!  I just relized I should not have postedthis type of question here.  Sorry!

I guess I have alot to learn!