 |

MayDay
User
Oct 8, 2004, 12:31 PM
Post #1 of 4
(4613 views)
Shortcut
|
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
(4607 views)
Shortcut
|
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:
<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 Regards, Cliff Stefanuk - Customer Service Manager support@interactivetools.com
|
|
|  |
 |

MayDay
User
Oct 8, 2004, 4:58 PM
Post #3 of 4
(4605 views)
Shortcut
|
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
(4596 views)
Shortcut
|
Hey Robert, Sorry about that! I misunderstood 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
<frameset rows="68,*,32" border="0"> You will have this
<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 Regards, Cliff Stefanuk - Customer Service Manager support@interactivetools.com
|
|
|  |
|