PDA

View Full Version : Which Template


garyhay
06-Nov-2003, 11:20 AM
Can anyone tell me which file generates this piece of code as I need to fix the table width

Jan
06-Nov-2003, 12:13 PM
I am not expert here so answer rather nervously, I think that form is the address book from Act_Order02.html - towards the top.

[fx: checks the rest of the messages]
Yup I'm wrong, take a look here http://community.actinic.com/showthread.php?s=&threadid=4179 for more details, it looks like it might be generated from that netquotevar, there are a few width statements in design options but I couldn't say which one it might be.

Regards,

garyhay
06-Nov-2003, 12:25 PM
Thanks Jan

I an working with Flark on this one so the other thread is posted by him asking the same thing

pinbrook
06-Nov-2003, 12:36 PM
If it is the NQV as Jan suggested then Design|Options|sitedefaults

ACTSDWIDTH you can set this to a percentage

Nadeem
06-Nov-2003, 12:47 PM
Hi there

The actual address book is managed by ActinicAddressBook.pm within your site1 folder.

If you open actinicaddressbook.pm, please look at line 387, you will see the following code:


$html .= $self->TABLE_(
BORDER => "1" ,
CELLSPACING => "1" ,
CELLPADDING => "0" ,
BGCOLOR => $self->{NameBgColor},
WIDTH => '100%',
).
$self->TR(
$self->TD(
COLSPAN => 3,
' ',
).
$self->TD(
ALIGN => "CENTER",
$self->FONT(
$self->{DeleteLabel}
)
)
);


This is under the section ADDRESS_BOOK->Show - returns address book HTML

Hope this helps you Gary :)

garyhay
06-Nov-2003, 12:55 PM
Thanks

Nadeem