Yes, I tried that. I did it again now though, and my edit to the 'company title' field came through this time. According to the wiki, though: 'You can then preview your new template by specifying it "on the fly" using an url such as www.yourdomain.com/whmcs/?systpl=xxxxx where xxxxx is the name of your new template.' But that doesn't work for my template for whatever reason.
So now I've added this line:
Code:
{include file="templates/vs_aqua/header.php"}
Just after the <head> tag in header.tpl. Nothing changes on the actual page, though.
Here's what I have in that file (header.php):
Code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Vertimyst Solutions - Coming Soon</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<div id="logo">
<img src="images/logo.png" alt="Vertimyst Solutions" height="100" width="200" />
</div>
<div id="banner">
<img src="images/banner.png" alt="Hosting Building Creating Designing Solving." height="100" width="824" />
</div>
<div id="filler">
<img src="images/filler.png" height="100" width="100%" />
</div>
<div id="top_shadow">
<img src="images/top_shadow.png" height="10" width="100%" />
</div>
<div id="navBarContainer">
<ul id="navBar">
<li id="navBarHome"><a href="#">Home</a></li>
<li id="navBarServices"><a href="#">Services</a></li>
<li id="navBarRegister"><a href="#">Register</a></li>
<li id="navBarSupport"><a href="#">Support</a></li>
<li id="navBarCommunity"><a href="#">Community</a></li>
<li id="navBarBlog"><a href="#">Blog</a></li>
<li id="navBarAbout"><a href="#">About</a></li>
</ul>
</div>