PDA

View Full Version : centre the about us, terms & Con etc


jacy
14-Jul-2003, 12:05 PM
Hi there,
Could someone please tell me how to centre the terms and conditions, about us etc. They are at the top of the page and are aligned to the right of the screen. I would like them in the centre of the screen. (This is easy isn't it? :) )

Cheers and thanks again

Jacy

I-CC
14-Jul-2003, 12:34 PM
If you locate the text NETQUOTEVAR:HEADERGUIDE OR NETQUOTEVAR:FOOTERGUIDE dependant on the theme being used and place the following around it:

<DIV ALIGN="CENTER">NETQUOTEVAR:FOOTERGUIDE</DIV>

that should align it to the centre of the area available to it.

cdicken
14-Jul-2003, 04:15 PM
Actually, you want to open Act_InfoLine.html and add an align="center" into the <table> tag for the information line.

jacy
14-Jul-2003, 11:27 PM
Hi Guys,
Thanks for replying here is the infoline. html

<!-- InfoLine HTML begin -->
<!-- Insert HTML for the beginning of an information section -->

<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=10 WIDTH="CUSTOMVAR:ACTSTDWIDTH">
<TR>
<TD VALIGN="TOP" ALIGN="LEFT">
<B>NETQUOTEVAR:INFOTITLE </B>
<SPAN CLASS="actxxsmall">
NETQUOTEVAR:INFOTEXT
</SPAN>
</TD>
</TR>
</TABLE>

<!-- Insert HTML for the end of an information section -->
<!-- InfoLine HTML end -->
Where in there exactly do i need to put ALIGN="CENTRE" ?

Cheers,
Jacy

cdicken
15-Jul-2003, 07:27 AM
Just change

<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=10 WIDTH="CUSTOMVAR:ACTSTDWIDTH">

to

<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=10 WIDTH="CUSTOMVAR:ACTSTDWIDTH" ALIGN="CENTER">

(note american spelling)

and see if this has the required effect.

jacy
18-Jul-2003, 10:32 AM
Hi Chris,

I tried that but it didn't change anything.

Cheers,
Jacy

cdicken
18-Jul-2003, 04:04 PM
Oh, are you talking about the navigation links?

In that case, open Act_Primary.html and locate the code that says NETQUOTEVAR:FOOTERGUIDE

Locate the code for the table cell which contains the variable. This will be a <td> tag that looks something like this:

<td align="right">NETQUOTEVAR:FOOTERGUIDE&nbsp;</td>

Change

align="right"

to

align="center"

jacy
19-Jul-2003, 11:59 AM
Excellent thank you Chris that worked!!
I did a preview and noticed that my about us, terms and con pages etc are only showing up on my home page.
I would like these visable on all pages. Is there an easy way to do this? I am using fragments for each page.

Cheers,

Jacy

cdicken
21-Jul-2003, 10:34 AM
There is no way to do this in the product.

You could hard-code all the terms and conditions into the bottom of the overall layout template (Act_Primary.html) but then most sites just have a 'terms and conditions' link in the footers of each page.

This can be achieved by entering the folloing code towards the bottom of your overall layout template (Act_Primary.html)

<div align="center">
<a href="NETQUOTEVAR:NAVBINFOLINK">NETQUOTEVAR:NAVBINFOTEXT</a>
</div>