Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: DocBuilder:
Templates

 

 


MayDay
User

Oct 8, 2004, 12:31 PM

Post #1 of 4 (6399 views)
Shortcut
Templates Can't Post

I am trying to customize my templates and am having a problem with the height of the _doc_header.html. When I try to increase the table height in the template, the resulting page just hides the bottom of the header. Is there another place that controls the height of the header frame? I am not sure what the code is in _doc_index.html, if that is where this is.

Thanks for your great support.

Robert


Cliff
Staff


Oct 8, 2004, 4:28 PM

Post #2 of 4 (6392 views)
Shortcut
Re: [MayDay] Templates [In reply to] Can't Post

Hi Robert,

Thanks for posting.

There is a <table> in the _doc_header.html template that has a height value in it that you can use to adjust the height of the header. It looks like this:


Code
<table border=0 cellspacing=0 cellpadding=0 width=100% height=58>


All you need to do is modify that height attribute, and you should get the result that you are looking for. If that doesn't work the way that you expect, just let me know and I'll see if there is anything else that you can try and change Smile
Regards,
Cliff Stefanuk - Customer Service Manager
[email]support@interactivetools.com[/email]


MayDay
User

Oct 8, 2004, 4:58 PM

Post #3 of 4 (6390 views)
Shortcut
Re: [Cliff] Templates [In reply to] Can't Post

Cliff,
As I said in my post, I tried changing the height of the table and it does a strange thing.
In the table cell at the bottom of the header is some text "Close Window". It is hidden, even though the table in the template is appropriate. My code:

<table width=100% height="75" border=0 cellpadding=0 cellspacing=0>
<tr>
<td align="left" valign="top"><img src="/sccd/images/sccdlogo.gif" width="202" height="50" hspace="20"></td>
<td width=99% align="center" valign="middle">
<p><font color="ffcc33" size=4 face="Arial, Helvetica, sans-serif"><b>$group_name$</b></font><br>
<font color="ffffb4" size=2 face="verdana,arial, helvetica"><b>$group_subheading$</b></font><br>
</p>
</td>
</tr>
<tr valign="middle">
<td height="18" colspan=3 bgcolor="#000000"><img src="$imageurl$spacer.gif" width="25" height=18 align="absmiddle"><font color="#FFFFB4" size="1" face="Arial, Helvetica, sans-serif"><a href="javascript:window.close();"><strong>Close This Page</strong></a></font></td>
</tr>
</table>

This should be enough height to show the black table row.
HELP!
Thanks,

Robert

(This post was edited by MayDay on Oct 9, 2004, 10:59 PM)


Cliff
Staff


Oct 9, 2004, 5:58 PM

Post #4 of 4 (6381 views)
Shortcut
Re: [MayDay] Templates [In reply to] Can't Post

Hey Robert,

Sorry about that! I misunderstood Blush

What you will want to change is the first frameset of the _doc_index.html template. I adjusted mine with the following code and it worked great. So instead of this


Code
<frameset rows="68,*,32" border="0">


You will have this


Code
<frameset rows="90,*,32" border="1">


The first attribute determines the height in pixels for the header frame. Try that out, and I think you will find that it's exactly what you need Smile
Regards,
Cliff Stefanuk - Customer Service Manager
[email]support@interactivetools.com[/email]