Announcement

Collapse
No announcement yet.

centre the about us, terms & Con etc

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    centre the about us, terms & Con etc

    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
    Jacys Computer Supplies
    Web: http://www.jacyscomputers.com.au
    email: sales@jacyscomputers.com.au

    #2
    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.

    Comment


      #3
      Actually, you want to open Act_InfoLine.html and add an align="center" into the <table> tag for the information line.

      Comment


        #4
        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
        Jacys Computer Supplies
        Web: http://www.jacyscomputers.com.au
        email: sales@jacyscomputers.com.au

        Comment


          #5
          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.

          Comment


            #6
            Hi Chris,

            I tried that but it didn't change anything.

            Cheers,
            Jacy
            Jacys Computer Supplies
            Web: http://www.jacyscomputers.com.au
            email: sales@jacyscomputers.com.au

            Comment


              #7
              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"

              Comment


                #8
                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
                Jacys Computer Supplies
                Web: http://www.jacyscomputers.com.au
                email: sales@jacyscomputers.com.au

                Comment


                  #9
                  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>

                  Comment

                  Working...
                  X