forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: marion2u on November 21, 2010, 12:27:32 pm

Title: No title
Post by: marion2u on November 21, 2010, 12:27:32 pm
Hi,

Since i've got this new theme I saw that the title of my Gallery has gone, now as title it's the url which is very weird.
Should I change something in my php codes or anywhere else?
Url to gallery : http://www.marionravenphotos.com/gallery/

Thanks
Kim
Title: Re: No title
Post by: Nibbler on November 21, 2010, 12:36:39 pm
Your theme's template.html is a mess. For a start you should replace all of this

Code: [Select]
<html>
<head>
<titleMarion Raven Photo Gallery &gt; MARIONRAVENPHOTOS.COM &gt; A Marion Raven
photo Gallery!</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
<link rel="stylesheet" href="http://www.marionravenphotos.com/gallery/themes/samgallery/style.css" type="text/css">
<script type="text/javascript" src="scripts.js"></script>
</head>

With this

Code: [Select]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="{LANG_DIR}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta http-equiv="Pragma" content="no-cache" />
<title>{TITLE}</title>
{META}
<link rel="stylesheet" href="css/coppermine.css" type="text/css" />
<link rel="stylesheet" href="themes/samgallery/style.css" type="text/css" />
{JAVASCRIPT}
</head>