Text alignment issue in File(TXT) attachement as an Email

Hi Friends,
I have searched many threads for sending the internal table data in a TXT (notepad file)file as an attachement,but i could find the answer or that could not solve my problem.
Internal table data.
name:XYZ
Age : 21,
Place:Hyd,
Country:US.
While sending the in file attachemnt,I do not see as I expcted.It comes as below.
Second record starts below first record,but after the last latter of the first record with a blank line before it,in the same way third and fouth and so on.
a g e : X Y Z
            a g e  : 2 1
                       P l a c e  : H Y D
                                       C o u n t r y .
below as my code.
  CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
   EXPORTING
  LINE_WIDTH_SRC                    =
      line_width_dst                    = '255'
  TRANSFER_BIN                      = ' '
    TABLES
      content_in                        = itw_msg
      content_out                       = t_msg
   EXCEPTIONS
     err_line_width_src_too_long       = 1
     err_line_width_dst_too_long       = 2
     err_conv_failed                   = 3
     OTHERS                            = 4
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  DATA:wa_document_data   TYPE sodocchgi1.
  DATA:it_pdf             TYPE TABLE OF solisti1,
         it_body_msg        TYPE STANDARD TABLE OF solisti1,
         it_packing_list    TYPE TABLE OF sopcklsti1,
         it_receivers       TYPE TABLE OF somlreci1,
         wa_body_msg        TYPE solisti1,
         wa_packing_list    TYPE sopcklsti1,
         wa_receivers       TYPE somlreci1,
         wa_attachment      TYPE solisti1,
         wa_pdf             TYPE solisti1,
         gv_tab_lines       TYPE i,
         gv_sent_to_all     TYPE sonv-flag,
         t_pdfdata          TYPE TABLE OF tline,
         pdf_data           TYPE xstring,
            wa_msg_text        TYPE string.
  wa_document_data-obj_name = 'MAIL_TO_HEAD'.
  wa_document_data-obj_descr = 'Email Subject'.
  wa_document_data-obj_langu = sy-langu.
  DESCRIBE TABLE itw_msg LINES wa_packing_list-body_num.
  wa_document_data-doc_size = ( gv_tab_lines - 1 ) * 255 + STRLEN( wa_attachment ).
  wa_packing_list-head_start = 1.
  wa_packing_list-head_num = 0.
  wa_packing_list-body_start = 1.
  wa_packing_list-body_num = gv_tab_lines.
  wa_packing_list-doc_type = 'ASC'.
  APPEND wa_packing_list TO it_packing_list.
  CLEAR wa_packing_list.
WRITE PACKING LIST FOR ATTACHMENT
  wa_packing_list-transf_bin = 'X'.
  wa_packing_list-head_start = 1.
  wa_packing_list-head_num = 1.
  wa_packing_list-body_start = 1.
  DESCRIBE TABLE t_msg LINES wa_packing_list-body_num.
  wa_packing_list-doc_type = 'TXT'.
  wa_packing_list-obj_name = 'TEST_FILE'.
  wa_packing_list-obj_descr = 'TEST_FILE'.
  wa_packing_list-doc_size = wa_packing_list-body_num * 255.
  APPEND wa_packing_list TO it_packing_list.
  CLEAR wa_packing_list.
*Receiver List table population.
data:contents_txt type SOLISTI1.
Call the Function Module to send the message to External and SAP Inbox
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data              = wa_document_data
      put_in_outbox              = 'X'
      commit_work                = 'X'
    IMPORTING
      sent_to_all                = gv_sent_to_all
    TABLES
      packing_list               = it_packing_list
      contents_txt               = t_msg "it_body_msg
     contents_bin               =
      receivers                  = it_receivers
    EXCEPTIONS
      too_many_receivers         = 1
      document_not_sent          = 2
      document_type_not_exist    = 3
      operation_no_authorization = 4
      parameter_error            = 5
      x_error                    = 6
      enqueue_error              = 7
      OTHERS                     = 8.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
Do I need concatenate the internal table data with something,some value like 'ODA' etc.Please help me.
I am working on the issue for last two days,but could not solve.
Regards,
Xavier.P
Edited by: Xavier on Dec 22, 2011 5:02 AM
Edited by: Xavier on Dec 22, 2011 5:05 AM

Hi,
pass like below
wa_packing_list-trans_bin =  space .               <----
wa_packing_list-head_start = 1.
wa_packing_list-head_num = 0.
wa_packing_list-body_start = 1.
wa_packing_list-body_num = gv_tab_lines.
wa_packing_list-doc_type = 'RAW'.                     <----
Regards,
Ravi

Similar Messages

  • HAving issues in sending txt attachment in abap email pgm

    Hi,
        I need to send an email from my Abap program with a txt attachment in the flowing format:
    We are glad to see these results
    Kindly forward the details                                        Number
    Vendor details:123
    However, this is not getting formatted properly and the txt file is getting unnessacary spaces. I am working in ECC 6 and is Unicode complaint.
    I am not able to format this in the txt attachment.
    I am providing the sample code as below.Please kindly help me.Thanks!
    Creation of the document to be sent File Name
      maildata-obj_name = 'Payee extraction data'. "EC NOTEXT
    Mail Subject
      maildata-obj_descr = 'Payee Positive pay'. "EC NOTEXT
    Mail Contents
      loop at lt_file into l_file.
        mailtxt-line = l_file.
      xtex1-line = l_file.
      append xtex1.
        append mailtxt.
      endloop.
      clear:    mailpack, mailbin, mailhead.
      refresh:  mailpack, mailbin, mailhead.
      describe table mailtxt lines tab_lines.
      read table mailtxt index tab_lines.
      maildata-doc_size = ( tab_lines - 1 ) * 255 + strlen( mailtxt ).
    Creation of the entry for the compressed document
      clear mailpack-transf_bin.
      mailpack-head_start = 1.
      mailpack-head_num = 0.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'RAW'.
      append mailpack.
      mailhead = 'PayeePositivepay.txt'.
      append mailhead.
    Mail Contents
      loop at lt_file into l_file.
        mailbin-line = l_file.
        append mailbin.
      endloop.
    break-point.
      describe table mailbin lines tab_lines.
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'txt'.
      mailpack-obj_name = 'payee'.
      mailpack-obj_descr = 'Subject'. "EC NOTEXT
      mailpack-doc_size = tab_lines * 140.
      append mailpack.
    Get the neccessary email ids from the table
      SELECT * FROM ZFI_EMAILIDS INTO table I_ZFI_EMAILIDS.
      LOOP AT I_ZFI_emailids.
        mailrec-receiver = i_zfi_emailids-zemailid .
        mailrec-rec_type  = 'U'.
        mailrec-com_type = 'INT'.
        mailrec-notif_del = 'X'.
        mailrec-notif_ndel = 'X'.
        mailrec-express = 'X'.
        append mailrec.
      endloop.
    Sending the document
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = maildata
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = mailpack
          object_header              = mailhead
          contents_bin               = mailbin[]
          contents_txt               = mailtxt
         CONTENTS_HEX               = xtex
          receivers                  = mailrec
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          others                     = 99.
    endform.                    "send_email

    Hi,
    You need to use attribute CL_ABAP_CHAR_UTILITIES=> NEWLINE or CR to use format the mail contents.

  • Running Safari 6.0.3  When trying to print files using Adobe Reader 11.0.02, print preview screen is all black.  If files are attached to an email, receiver can't open it.  It does work OK in Firefox 19.0.2  Any ideas?

    Running Safari 6.0.3  When trying to print files using Adobe Reader 11.0.02, print preview screen is all black.  If files are attached to an email, receiver can't open it.  It does work OK in Firefox 19.0.2  Any ideas?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • I am unable to create adobe file from attached document from email

    I am unable to create adobe file from attached document from email. No 'open in' link is available as given in directions. What to do?

    Because there is no abode on the IOS.  you'll need to do a search in the app store to resolve your issue.

  • I have iphone6 and I cant open PDF files which attached to my email

    Dear All
    I have iPhone and I cant open PDF files which attached to my email
    Regards

    thanks for the suggestions weather15 - the firefox help site you directed me to explains what ought to happen but i cant make it work. I shut my firefox browser on my new machine and attach the hard drive from my old machine. I can explore the contents of that drive but when i search it for the suggested folder " %APPDATA%\Mozilla\Firefox\Profiles\" nothing is found. when i try and open firefox from the old drive, the browser opens that is the new version that i have on my new computer with no saved bookmarks! Am I doing everything right?

  • I have 6 pdf files to attach to an email. I don't want them all to open in the body of the email. How do I just attach the pdf file?

    I have 6 pdf files to attach to an email. I don't want them all to open in the body of the email. How do I just attach the pdf file?

    Never mind. Found the solution here: Re: How to mail PDF file as an icon

  • JTable text alignment issues when using JPanel as custom TableCellRenderer

    Hi there,
    I'm having some difficulty with text alignment/border issues when using a custom TableCellRenderer. I'm using a JPanel with GroupLayout (although I've also tried others like FlowLayout), and I can't seem to get label text within the JPanel to align properly with the other cells in the table. The text inside my 'panel' cell is shifted downward. If I use the code from the DefaultTableCellRenderer to set the border when the cell receives focus, the problem gets worse as the text shifts when the new border is applied to the panel upon cell selection. Here's an SSCCE to demonstrate:
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.EventQueue;
    import javax.swing.GroupLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.border.Border;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import sun.swing.DefaultLookup;
    public class TableCellPanelTest extends JFrame {
      private class PanelRenderer extends JPanel implements TableCellRenderer {
        private JLabel label = new JLabel();
        public PanelRenderer() {
          GroupLayout layout = new GroupLayout(this);
          layout.setHorizontalGroup(layout.createParallelGroup().addComponent(label));
          layout.setVerticalGroup(layout.createParallelGroup().addComponent(label));
          setLayout(layout);
        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
          if (isSelected) {
            setBackground(table.getSelectionBackground());
          } else {
            setBackground(table.getBackground());
          // Border section taken from DefaultTableCellRenderer
          if (hasFocus) {
            Border border = null;
            if (isSelected) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusSelectedCellHighlightBorder");
            if (border == null) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusCellHighlightBorder");
            setBorder(border);
            if (!isSelected && table.isCellEditable(row, column)) {
              Color col;
              col = DefaultLookup.getColor(this, ui, "Table.focusCellForeground");
              if (col != null) {
                super.setForeground(col);
              col = DefaultLookup.getColor(this, ui, "Table.focusCellBackground");
              if (col != null) {
                super.setBackground(col);
          } else {
            setBorder(null /*getNoFocusBorder()*/);
          // Set up our label
          label.setText(value.toString());
          label.setFont(table.getFont());
          return this;
      public TableCellPanelTest() {
        JTable table = new JTable(new Integer[][]{{1, 2, 3}, {4, 5, 6}}, new String[]{"A", "B", "C"});
        // set up a custom renderer on the first column
        TableColumn firstColumn = table.getColumnModel().getColumn(0);
        firstColumn.setCellRenderer(new PanelRenderer());
        getContentPane().add(table);
        pack();
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
            new TableCellPanelTest().setVisible(true);
    }There are basically two problems:
    1) When first run, the text in the custom renderer column is shifted downward slightly.
    2) Once a cell in the column is selected, it shifts down even farther.
    I'd really appreciate any help in figuring out what's up!
    Thanks!

    1) LayoutManagers need to take the border into account so the label is placed at (1,1) while labels just start at (0,0) of the cell rect. Also the layout manager tend not to shrink component below their minimum size. Setting the labels minimum size to (0,0) seems to get the same effect in your example. Doing the same for maximum size helps if you set the row height for the JTable larger. Easier might be to use BorderLayout which ignores min/max for center (and min/max height for west/east, etc).
    2) DefaultTableCellRenderer uses a 1px border if the UI no focus border is null, you don't.
    3) Include a setDefaultCloseOperation is a SSCCE please. I think I've got a hunderd test programs running now :P.

  • Another text alignment issue

    Dear friends,
    I've got this div which makes up for a left column on my page and stacked therein I've got some images with some captions underneath. Now, my problem is: I want the images aligned center within that div but the text, I need it to be justified and what happens is that if I style the div>box to center the text gets centered as well. I tried creating a new class style for the text alone but the div style overules it. What should I do?
    p-s: this is DW CS4 I'm using now (to make it worse)
    Thanks a lot for your help
    JV

    If I understand you correctlyu, you want that chocolate image to center... The easiist way I can think of is to put it in it's own div and put a class rule.  So go to code view and find this
    <img src="Chocolate em Cascais.jpg" alt="Chocolate em Cascais" width="170" height="242" />
    Change it to this
    <div class="center">< img src="Chocolate em Cascais.jpg" alt="Chocolate em Cascais" width="170" height="242" /></div>
    Next in your code find this
    #left_area .style4 {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: small;
         text-align: left;
    and add this after the last }
    .center {
    margin:0px auto;
    text-align:center;
    See what that does for you.
    Gary

  • .txt attachment hidden in Email

    iphone is on IOS 7.1.2 and some .txt file attachments seem to get hidden in the emails. The same email viewed in outlook on a pc shows the .txt without issue.
    Is this an IOS bug or why is the phone hiding the attachment? It seems to think the file is a system file or something like that doesn't make any sense.
    Any help would be awesome thanks.

    Hi all.
    I have a user (company secretary) who keeps trying to send emails with large attachments 30mb+ and then moans when they can't be delivered due to size restrictions. 
    I keep explaining to him about the size of the attachments and either split them into smaller files and send in separate emails or add them to a dropbox and email the link. He does neither and expects me to sort out the issue at silly o'clock in the early hours every time. Just because he doesn't sleep he thinks no one else should either!
    Anyway enough about my rant  - what is the maximum size that you allow for send and receive in email. Maybe we could all join forces and try to set a unofficial standard!
    This topic first appeared in the Spiceworks Community

  • Content coming as .txt attachment along with email but not in email body

    Hi,
    I have a proxy to email scenario. The requirement is to generate an excel sheet and keep it as an attachment and send it to user through email.
    I am able to get the excel sheet as an attachment in email but the content of email is also coming as attachment which I do not want.
    Problem area :
    ============================================
    The Content should come in Email body but it is coming as .txt attachment in email. The email body is blank.
    Can someone help as how I can get the content in email body.?
    /Regds
    Azahar

    Hi Azahar,
       May you can find the solution in the "
    Adapter-Specific Message Attributes
    Configuring the Receiver Mail Adapter (SAP Library - Partner Connectivity Kit)

  • Why do pdf files I attach to an email show up full blown instead of as a little icon?

    If i want to sent multiple files attached to an email, I cannot because they appear as full blown up not as a filed attached to the email.  I need to attached numerous receipts to one email and it is not possible.  Any thoughts?

    Actually, these are jpeg's, I misspoke.  On my computer I tried using the paper clip and also dragging them.  But both way that appear in the message as full blown pictures not as little attachments.  When I tried scanning them as pdf's they wouldn't open.  I would get an error message.

  • CommandMenuItem text alignment issue

    using commandMenuItem seperately (not with af:menu)
    any text that you enter for commandMenuItem will not be centered, its slightly right aligned which is very noticeable with large font size
    and reason for this is rendered output in browser for command menuItem
    is anchor [A] element class="xsn" which has padding property="0 0 0 5" changing
    padding to : "0 0 0 0" fixes the problem, but how can I change it thru adf skin
    also how would I changed the color of cimmandMenuItem text
    af|commandMenuItem::menu-item-text { color: green; } does not work
    Message was edited by:
    user626222
    Message was edited by:
    user626222

    Hi,
    padding also works through skinning, so this shouldn't be an issue.
    for the color, try
    af|commandMenuItem::bar-item-text{color:green;}
    Frank

  • Text Align Issue - Blue Border

    Hi,
    Some of the images or text I have in various table cells
    seems to move to the left no matter where I have set the alignment
    instructions.
    Also some images I'm using which link to other pages have
    blue borders around them. When I inspect the code there is no code
    for the border, how can I remove this blue border please?
    Any help appreciated.
    Ray

    quote:
    DON'T use <br> to force your text into position, like
    here for instance:
    <p><br>
    <span class="style1">Click, Hold and Move Map for More
    Info</span> -
    and at the top of you second column:
    <p align="center" class="style1"><br>
    We are keen to hear from you be through email, phone or in
    person.
    Delete the <br>s and use margin on the paragraph tag to
    achieve
    consistent results cross-browser
    p {
    margin: 15px 0px 0px 0px;
    in order thats top/right/bottom/left
    Okay, thanks for that. I'm learning!
    But if I want to set the distance of an object that is below
    one of these objects that I've aligned using the margin settings,
    is it okay to use the br tags for that?
    quote:
    >>Move the css above the closing comment tag --> as
    shown below
    Or simply remove these comment tags from the 'style' element.
    They are
    not really needed anymore.
    Micha
    Hi Micha,
    I'm not 100% sure which part of the CSS you are referring.
    Thanks for the support.
    Ray

  • 6i Text aligning issues

    I am having troubles aligning text boxs on my report. They align (horizontally) in Developer but when the report is executed from our application these text boxes go haywire. I've tried anchoring, enclosing, different fonts and system parameters but nothing seems to have any effect.

    There is no way to align text to top or bottom. You need to create a container for the field (Sprite) and align the field to the container's dimensions.

  • Css text alignment issue

    Hey guys,
    I re-did a small site for an author and some of the text very misaligned in IE. You can see on the homepage as well on each individual book page. http://lifesizemacroimages.com/.
    I am able to fix the problem in IE but then it just misaligns in FF etc..
    Hopeing a fresh set of eyes might notice the problem. My css is below. Thanks
    html, body {
        margin: 0;
        padding: 0;
    #page-container {
        width: 750px;
        margin:auto;
        margin-top:10px;
        margin-bottom:20px;   
        border-top:#fff 1px solid;
        border-left:#fff 1px solid;
        border-right:#fff 1px solid;   
        border-bottom:#fff 1px solid;
    #header {
        background:url(../images/banner.jpg);
        height: 200px;
        clear:both;
    #content {
        width:720px;
        height:550px;
        background-color:#eafcd0;
        /*background-image:url(../images/spider-bg.png);*/
        border-right:#64aa51 15px solid;
        border-left:#64aa51 15px solid;
        border-bottom:#64aa51 15px solid;
    #title {
        width:722px;
        height:50px;
        background-image:url(../images/title.png);
    #nav {
        height:12px;
        width:280px;
        position:absolute;
        margin-top:9px;
        margin-left:275px;
    #footer{
        width:650px;
        position:absolute;
        color:#FFF;
        font-size:8pt;
        margin-top:500px;
        margin-left:50px;
    #footer a:link {
        color:#FFF;
        font-size:8pt;
        text-decoration:none;
    #footer a:visited {
        color:#FFF;
        font-size:8pt;
        text-decoration:none;
    #footer a:active {
        color:#FFF;
        font-size:8pt;
        text-decoration:none;
    #footer a:hover {
        color:#000;
        font-size:8pt;
    .maintext {
        font:Arial, Helvetica, sans-serif;
        font-size:11pt;
        color:#000000;
    .maintext a:link {
        font:Arial, Helvetica, sans-serif;
        font-size:11pt;
        color:#000000;
        text-decoration:underline;
    .maintext a:visited{
        font:Arial, Helvetica, sans-serif;
        font-size:11pt;
        color:#000000;
        text-decoration:underline;
    .maintext a:active {
        font:Arial, Helvetica, sans-serif;
        font-size:11pt;
        color:#000000;
        text-decoration:underline;
    .maintext a:hover {
        font:Arial, Helvetica, sans-serif;
        font-size:11pt;
        color:#000000;
        text-decoration:none;
    #emailhover a:link {
        color:#000000;
        font-size:11pt;
        text-decoration:none;
    #emailhover a:visited {
        color:#000000;
        font-size:11pt;
        text-decoration:none;
    #emailhover a:active {
        color:#000000;
        font-size:11pt;
        text-decoration:none;
    #emailhover a:hover {
        color:#000000;
        font-size:11pt;
        text-decoration:underline;
    /* ---------- Individual Page Div's ---------- */
    #homediv {
        width:500px;
        margin-top:30px;
        margin-left:30px;
        position:absolute;
    #hometext {
        width:350px;
        margin-top:15px;
        margin-left:230px;
        position:absolute;
    #Book1div {
        width:180px;
        height:250px;
        position:absolute;
        margin-top:35px;
        margin-left:25px;
    #Book1Text {
        width:170px;
        position:absolute;
        margin-top:65px;
        margin-left:195px;   
    #Book2div {
        width:180px;
        height:250px;
        position:absolute;
        margin-top:35px;
        margin-left:370px;
    #Book2Text {
        width:170px;
        position:absolute;
        margin-top:65px;
        margin-left:540px;   
    #Book3div {
        width:180px;
        height:250px;
        position:absolute;
        margin-top:255px;
        margin-left:25px;
    #Book3Text {
        width:170px;
        position:absolute;
        margin-top:285px;
        margin-left:195px;   
    #Book4div {
        width:180px;
        height:250px;
        position:absolute;
        margin-top:255px;
        margin-left:370px;
    #Book4Text {
        width:170px;
        position:absolute;
        margin-top:290px;
        margin-left:540px;   
    #Author {
        width:500px;
        position:absolute;
        margin-top:60px;
        margin-left:100px;
    #upcoming {
        width:500px;
        position:absolute;
        margin-top:60px;
        margin-left:100px;
    .booktext {
        font-size:9pt;
        color:#000000;
        font-family:Arial, Helvetica, sans-serif;
    .booktext a:link {
        font-size:9pt;
        color:#000000;
        font-family:Arial, Helvetica, sans-serif;
        text-decoration:underline;
    .booktext a:visited {
        font-size:9pt;
        color:#000000;
        font-family:Arial, Helvetica, sans-serif;
        text-decoration:underline;
    .booktext a:active {
        font-size:9pt;
        color:#000000;
        font-family:Arial, Helvetica, sans-serif;
        text-decoration:underline;
    .booktext a:hover {
        font-size:9pt;
        color:#000000;
        font-family:Arial, Helvetica, sans-serif;
        text-decoration:none;
    .back a:link{
        font:Arial, Helvetica, sans-serif;
        font-size:9pt;
        color:#000000;
        text-decoration:none;
    .back a:visited{
        font:Arial, Helvetica, sans-serif;
        font-size:9pt;
        color:#000000;
        text-decoration:none;
    .back a:active{
        font:Arial, Helvetica, sans-serif;
        font-size:9pt;
        color:#000000;
        text-decoration:none;
    .back a:hover{
        font:Arial, Helvetica, sans-serif;
        font-size:9pt;
        color:#000000;
        text-decoration:underline;
    #butterflydiv {
        width:500px;
        margin-top:15px;
        margin-left:15px;
        position:absolute;
    #butterflytext {
        width:500px;
        margin-top:0px;
        margin-left:170px;
        position:absolute;
    #availablediv {
        width:100px;
        position:absolute;
        margin-top:210px;
        margin-left:15px;
        float:left;

    Trouble-man, you should know better than to use APDivs by now 
    http://apptools.com/examples/pagelayout101.php
    Use margins and floats -
    http://alt-web.com/DEMOS/CSS2-Captions-on-floated-images.shtml
    Also, check your code.
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

Maybe you are looking for

  • Sales Report Material Group-wise

    I want to generate Sales Report Material Group-wise is there any standard report. regards, Rajesh

  • Airprint won't stop printing

    Everytime I print from one of my IOS devices, my printer will not stop printing the iDevice continues to send the job to the printer. I have to turn the device off in order for the printer to stop printing. Any thoughts? iPhone 4S, IOS 6.0.1 iPhone 5

  • Can't join my old Airport Express Network, please help!

    Hey, I was running a wireless network without any problems last year in my appartment. I sublet for the summer, and when I came back I couldn't join my network even though my Mac was reading the same network name. I had also saved the password in the

  • Shake 4.1 price

    Can anyone tell me the major difference between Shake 4.0 and 4.1 and why the price is $3000.00 cheeper then 4.0

  • Reverting from QT 7.3 to 7.1.6/ Backup and Restore

    Hello, I need to downgrade from QT 7.3 to a lower version. I understand that I need to Backup and Re-install the OSX to do this. I'm just a little apprehensive because I've never done it before. Can anyone run me through what exactly I need to do to