Announcement

Collapse
No announcement yet.

Receipt Page Display/Print Issue....and another screen shot

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

    Receipt Page Display/Print Issue....and another screen shot

    I decided to go through the order process on an alternative browser. I'd never tried it on Opera before. When I got to the receipt page something looked odd. I repeated the process on IE and Firefox and got the same result. In the header of the form, my company name, address, etc. on the left side is indented to the right and jammed up against the phone, fax, email, etc. on the right side. I've never noticed it before. Does it look this way for everybody? If possible, I would like to get the stuff on the left aligned to the left.

    See screen shot....


    I believe the problem is in this Act_Order4 code, but I don't what to do to fix it.

    <BR>
    <TABLE BORDER=0 ALIGN=RIGHT CELLPADDING=2>
    <TR>
    <TD VALIGN="TOP" CLASS="actxsmall">
    NETQUOTEVAR:COMPANYCONTACTNAME
    NETQUOTEVAR:COMPANYCONTACTTITLE
    NETQUOTEVAR:COMPANYNAME
    NETQUOTEVAR:COMPANYSTREETADDRESS1
    NETQUOTEVAR:COMPANYSTREETADDRESS2
    NETQUOTEVAR:COMPANYSTREETADDRESS3
    NETQUOTEVAR:COMPANYSTREETADDRESS4
    NETQUOTEVAR:COMPANYPOSTCODE
    NETQUOTEVAR:COMPANYCOUNTRY
    </TD>
    <TD VALIGN="TOP" CLASS="actxsmall">
    NETQUOTEVAR:COMPANYPHONE
    NETQUOTEVAR:COMPANYFAX
    NETQUOTEVAR:COMPANYEMAIL
    NETQUOTEVAR:COMPANYURL
    </TD>
    </TR>
    </TABLE>
    <BR CLEAR=ALL><BR>
    Attached Files

    #2
    something wrong - can't view your attachment...
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment


      #3
      Sorry, I was trying to make the image clearer. Please try again.

      Comment


        #4
        Try changing this <TABLE BORDER=0 ALIGN=RIGHT CELLPADDING=2> to <TABLE BORDER=0 ALIGN=LEFT CELLPADDING=2>
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment


          #5
          Well, now I've got the opposite effect, but it does look better. Everything on the right is jammed up against the text on the left. Apparently there's no code in there to put some distance between the info on the left and the info on the right.

          Thanks Bill.

          Charles

          Comment


            #6
            Try adding the following for the second TD.
            <TD VALIGN="TOP" CLASS="actxsmall"> to <TD VALIGN="TOP" CLASS="actxsmall" ALIGN="RIGHT">

            Comment


              #7
              For me, the next step would be to reapply the right alignment, but remove the </TD><TD VALIGN="TOP" CLASS="actxsmall"> so that it all ends up in one vertical column - OR - introduce a third column <td>&nbsp;</td></TD>
              <TD VALIGN="TOP" CLASS="actxsmall">.
              Bill
              www.egyptianwonders.co.uk
              Text directoryWorldwide Actinic(TM) shops
              BC Ness Solutions Support services, custom software
              Registered Microsoft™ Partner (ISV)
              VoIP UK: 0131 208 0605
              Located: Alexandria, EGYPT

              Comment


                #8
                I'll give it/them a go with another fix I've got to do and repost with the results.
                Thanks for the replies.

                Have a great weekend!

                Charles

                Comment


                  #9
                  Interseting the way this ran, I was not posting in opposition to Duncan's suggestion (had not seen that when I opened the reply box), though it could be read that way. Duncan's suggestion is equally valid.
                  Bill
                  www.egyptianwonders.co.uk
                  Text directoryWorldwide Actinic(TM) shops
                  BC Ness Solutions Support services, custom software
                  Registered Microsoft™ Partner (ISV)
                  VoIP UK: 0131 208 0605
                  Located: Alexandria, EGYPT

                  Comment


                    #10
                    @Duncan

                    I tried <TD VALIGN="TOP" CLASS="actxsmall" ALIGN="RIGHT">. It caused the info on the right to go flush right, but it kept its place right up against the info on the left.

                    @Bill

                    Before I tried your fix I started looking at all the TR, TD, TABLE stuff. Just on a goof I tried the following and it worked . I'm not sure, but I think I created a new table, aligned right, to hold the info on the right. Whatever I did may not be elegant in code terms, but it is working I don't want to mess with anything that's working.
                    See screen shot.

                    <TABLE BORDER=0 ALIGN=LEFT CELLPADDING=2>
                    <TR>
                    <TD VALIGN="TOP" CLASS="actxsmall">
                    NETQUOTEVAR:COMPANYCONTACTNAME
                    NETQUOTEVAR:COMPANYCONTACTTITLE
                    NETQUOTEVAR:COMPANYNAME
                    NETQUOTEVAR:COMPANYSTREETADDRESS1
                    NETQUOTEVAR:COMPANYSTREETADDRESS2
                    NETQUOTEVAR:COMPANYSTREETADDRESS3
                    NETQUOTEVAR:COMPANYSTREETADDRESS4
                    NETQUOTEVAR:COMPANYPOSTCODE
                    NETQUOTEVAR:COMPANYCOUNTRY

                    </TD>
                    </TR
                    </TABLE>

                    <TABLE BORDER=0 ALIGN=RIGHT CELLPADDING=2>
                    <TR>
                    <TD VALIGN="TOP" CLASS="actxsmall">
                    NETQUOTEVAR:COMPANYPHONE
                    NETQUOTEVAR:COMPANYFAX
                    NETQUOTEVAR:COMPANYEMAIL
                    NETQUOTEVAR:COMPANYURL
                    </TD>
                    </TR>
                    </TABLE>


                    All suggestions appreciated very much.

                    Charles
                    Attached Files

                    Comment

                    Working...
                    X