Text not aligning . . .

Does anyone have any suggestions on how to align text? I'm designing a page using a text box. It looks great with iWeb, but when I publish it, all the text doesn't look right. This page is suppose to host my resume so I'm pretty concerned about the appearance. I pasted in my text from MS Word document. I also tried first pasting everything into a text file, then coping it into iWeb and it didn't seem to make a difference. Any suggestions are welcome!

Thanks for the suggestion. When using TextEdit, does it make a difference if I use "Wrap to Window" or "Wrap to Page"? After importing from TextEdit, there is also some funny indents in paragraphs that I can't seem to adjust.

Similar Messages

  • Text not aligning right - too much space on top or bottom in tables

    Hi,
    I am in the process of learning DW myself and building my own website, but have run into problems putting my cv into a nice format.
    Here is the link:
    http://www.junjundesigns.com/cv.html
    First of all, in dw, it looks much different than it does when it loads in my firefox.
    The problem that I can't solve is how the text on the left in the body does not align to the top of the box, to equal height of the text in the right is.
    For example, I want "20047 Jul-Present" to begin at the same level/height as "Etam Clothing Company Ltd. - Designer Manager", and subsequently I want the next item "2007 Apr-Jul" to align to the top of "The Collection..." and so on.
    I checked the codes and I don't find any extra /p or br/ breaks, and tried putting more in and taking some out with the same results or just not what I want.
    Please help. Thanks!

    I have two suggestions:
    1. Vertically align your table cells to Top:
              <td width="172" valign="top" bgcolor="#0099FF"><p>2007 Jul-Present <br />Shanghai, China</p></td>
              <td width="684" valign="top" bgcolor="#0099FF"><p align="left"><strong>Etam Clothing Company..............
    2. Learn to lay your pages out with CSS instead of tables. You will have much more control with positioning elements on a page.

  • Table of contents text not aligned

    After about four hours of "googling" I can still not find a solution.  Please see the screenshot of my "problem".  (A picture is worth a thousand words - do I need to explain the problem?)  How do I solve this?  (Pages 5 2 2). I have tried everything!

    Thanks PeterBreis, you never fail to impress me!  I've done what you suggested.  Is it possible to increase the space between the text and page number manually? I would like the word "Act" (1.2) to move to the next line.  I've played around, so I know how to align the numbers etc. 

  • Text alignment "Justify" is not aligned in Crystal Viewer.

    Hi,
    I am having a text field in report like paragraph format in Detail section and I have setting the text alignment as u201CJustifyu201D. If I launch the report through dhtml viewer the text is not aligned in justify format, it is getting aligned as left alignment, but it is working properly while exporting to PDF and Design Preview panel.
    This problem is occurs in Crystal Report XI Release 2 and Crystal Report 2008 also.
    This has been already posted and the link is Text Alignment - Justification Problem
    Please help me to overcome this issue.
    Thanks in Advance.

    With CR 2008, make sure you are on SP4:
    SP4
    https://smpdl.sap-ag.de/~sapidp/012002523100008782452011E/cr2008sp4.exe
    SP4 MSI
    https://smpdl.sap-ag.de/~sapidp/012002523100008782532011E/cr2008sp4_redist.zip
    SP4 MSM
    https://smpdl.sap-ag.de/~sapidp/012002523100008782522011E/cr2008sp4_mm.zip
    If that does not help, please provide a link to screen shots of the issue.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • PanelLabelAndMessage not aligned in hierachical viewer until node is clicke

    Hi,
    I am using the DVT Hierarchical Viewer. Using the code below (which is similar to the the demo code). The Labels column is coming out zig-zagging (not aligned to the right) but the OutputText column comes out aligned correctly to the left. Once I select (put focus on the node), the label column aligned correctly.
    Can someone please tell me what I need to so that the nodes will render with the label column aligned.
    <af:panelFormLayout inlineStyle="padding:5px" id="pflc3" styleClass="AFStretchWidth">
    <af:panelLabelAndMessage label="Name" id="plmc3" >
    <af:goLink text="#{node.name}" id="gl2"
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage id="pn1" label="First Name">
    <af:outputText id="iii" value="#{node.firstName}" />
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage id="pn11" label="Last Name">
    <af:outputText id="iii1" value="#{node.lastName}" />
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage id="pn111" label="Email">
    <af:outputText id="iii11" value="#{node.email}" />
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage id="pn1112" label="Work Phone">
    <af:outputText id="iii112" value="#{node.phoneNumber}" />
    </af:panelLabelAndMessage>
    </af:panelFormLayout>

    Thanks for the suggestion David.  I tried that this morning but the issue still remained.  Are there any known issues with the latest 3.3 patch and the viewer?
    As an added note, the issue is not browser specific.  It happens in both IE and Firefox.
    Thank you.

  • Output is not aligning

    Hi,
    Can someone please tell me what I can do to make my output align correctly? I used Titanic and then Mission Impossible for the name of the DVD's and the output is all off. It's correct but not aligned right with the column headings.
    Thank you!!!
    import java.util.Scanner;
    import java.text.*;
    public class inventory
      public static void main(String[] args)
        //This will hold the product name
        String name;
        //This will hold the value number of products
        int numberofproducts;
        //Creates a Scanner object to read input
        Scanner input = new Scanner(System.in);
        //Creating a number format instance to make pay print with 2 decimal digits
        NumberFormat nf = NumberFormat.getInstance();
        nf.setMaximumFractionDigits(2);      ; ;
        //prompting user to enter number of products (array size)
        System.out.print("Enter the number of products:  ");
        numberofproducts = input.nextInt();
        //creating an array of products to store information in
        DVD[] productarray = new DVD[numberofproducts];
        //This will loop until the number of products is 0
        for(int j = 0; j < numberofproducts; j++)
            productarray[j] = new DVD();
          //prompting user to enter product name
          System.out.print("Enter the DVD Title:  ");
          input.nextLine();
          //reading user's input
          productarray[j].setName(input.nextLine());
          //prompting user to enter the product number
          System.out.print("Enter the product number for " + productarray[j].getName() + " :  ");
          //reading user's input
          productarray[j].setProductnumber(input.nextInt());
          //prompting user to enter the price per unit
          System.out.print("Enter the price per unit for " + productarray[j].getName() + " :  ");
          //reading user's input
          productarray[j].setPriceperunit(input.nextDouble());
          //prompting user for the number of units
          System.out.print("Enter the number of units " + productarray[j].getName() + " on hand: ");
          //reading user's input
          productarray[j].setNumberofunits(input.nextInt());
           //Calculating the Value of Invetory
          nextProduct.setValueofinventory(nextProduct.getPriceperunit() * nextProduct.getNumberofunits());
          grandTotal += nextProduct.getValueofinventory();
          productarray[i] = nextProduct;
          input.nextLine();
        }//end for loop
        //Displaying the Inventory
        System.out.println("Item #\tName\tProduct #\t# of Units\tUnit Cost\tTotal Cost");
        for(int j = 0; j < numberofproducts; j++)
            System.out.print((j + 1) + "\t" + productarray[j].getName() + "\t" + productarray[j].getProductnumber() + "\t\t");
            System.out.print(productarray[j].getNumberofunits() + "\t\t$" + nf.format(productarray[j].getPriceperunit()) + "\t\t$");
            System.out.println(nf.format(productarray[j].getValueofinventory()));
        }//end for loop
    System.out.println("The Value of the entire inventory is:  " + "$" + grandTotal );
      }//end main method
    }//end class inventory
    class DVD extends product
        private double valueofinventory;
        private double restockingfee;
        public DVD()
        }//end constructor
      //sets the valueofinventory variable plus a 5% restocking fee
      public void setValueofinventory(double valueofinventory)
            restockingfee = valueofinventory * .05;
        this.valueofinventory = valueofinventory * 1.05;
      }//end setValueofinventory
      //returns the valueofinventory value
      public double getValueofinventory()
          return valueofinventory;
      }//end getValueofinventory
      //returns the restockingfee value
      public double getRestockingfee()
          return restockingfee;
      }//end getRestockingfee
    }//end class DVD
    //This class will hold the information for the product
    class product
      //This will hold the product name
      private String name;
      //This will hold the values for product number, price of each unit, and number of units in stock
      private int productnumber, numberofunits;
      //This will hold the price of each unit
      private double priceperunit, valueofinventory;
        public product()
        }//end constructor
        //Sets the name variable
        public void setName(String name)
            this.name = name;
        }//end setName
        //returns the string value for Name
        public String getName()
            return name;
        }//end getName
        //sets the productnumber variable
        public void setProductnumber(int productnumber)
            this.productnumber = productnumber;
        }//end setProductNumber
        //returns the integer assigned to productnumber
        public int getProductnumber()
            return productnumber;
        }//end getProductnumber
        //sets the priceperunit variable
        public void setPriceperunit(double priceperunit)
            this.priceperunit = priceperunit;
        }//end setPriceperunit
        //returns the priceperunit value
        public double getPriceperunit()
            return priceperunit;
        }//end getPriceperunit
        //sets the valueofinventory variable
        public void setValueofinventory(double valueofinventory)
            this.valueofinventory = valueofinventory;
        }//end setValueofinventory
        //returns the valueofinventory value
        public double getValueofinventory()
            return valueofinventory;
        }//end getValueofinventory
        //sets the numberofunits variable
        public void setNumberofunits(int numberofunits)
            this.numberofunits = numberofunits;
        }//end setNumberofunits
        //returns the numberofunits value
        public int getNumberofunits()
            return numberofunits;
        }//end getNumberofunits
    }//end class product

    Java is not actually designed and developed for stand alone console application. So you cannot expect output in console as you thought. There may be third party utilities for your needs. Just google it. You can use your own logic to do this. It is not difficult. Anyhow I include this code here. This would be helpful I hope.
    public static String padAlign(String string, int fieldLength, char padding, boolean alignRight)
    int length = fieldLength - string.length();
    if (length <= 0)
    return string.substring(0,string.length());
    StringBuffer buffer = new StringBuffer(fieldLength);
    for(int i=0; i<length; i++)
    buffer.append(padding);
    if (alignRight)
    buffer.append(string);
    else
    buffer.insert(0,string);
    return new String(buffer);
    public static void main(String[] args)
    System.out.println(padAlign("Test",20,' ',true)+" "+padAlign("Test again",20,' ',true));
    System.out.println("--------------------|--------------------|");
    System.out.println(padAlign("Test",20,' ',false)+" "+padAlign("Test again",20,' ',false));
    }

  • Paragraphs do not align to grid

    Hello there:-)
    I created a baseline grid of 6pt, body text 12pt, head lead 12pt, space before and space after 12pt and 6pt. In one chapter, everything aligns, in the second one the paragraphs do not align. I'm going back and forth the paragraph style to change the space before and after of the head, but everything is still the same. What am I doing wrong?
    Any help is appreciated.

    saranas wrote:
    I think you're right. Could you please give an example of how to do this "Unless the total of the leading, space before, and space after total an increment of 12 you'll be off grid."? I just need to see some numbers to see whether I can correct this.
    Many thanks.
    Well, in all honesty there's no way to do this so that you always have grid alignement and consistent spacing between the headings and and the body text unless they all use a leading value that's a multiple of 12 and all space before/space after is also a multiple of 12 (or whatever number you've chosen for the leading or the body text).  As soon as you introduce an odd number you're going to wind up with a larger space below a heading (usually at the top of the page), or a misalignment.
    On the other hand, if youy keep everything in multiples of the same body text leading value, you don't need a grid to maintain alignment.

  • Objects not aligned in output power point as in project xcelsius2008 sp1

    Hi everybody,
    I need help...
    first of all, apologise me for my english...
    my principal problem is to create graphics with a legend that can be interactive with the line of the graphic... is there a function about this?
    The only thing I've found to solve my problem is to create many switches buttons and put them over the legend's label, but, when I try to export to PPT this objects are not aligned with the legend's text so the result is not useful and with a bad look...
    I've tried to use ceck boxes located near to the legend baut happens the same problem.
    If I export in html it works properly... but I net the power point..
    Thanks very much
    I hope someone can help me...
    Maurizio

    Hi Javier Jimenez,
    thanks again for the new suggestion!!
    in effect this could solve my problem cause the trasparency doesn't let to see if the new icon I put over the legend's icon is not perfectly aligned!
    in Italy we say : "It was the Coloumb's egg!" .. it means that if I'd thought enough, may be I'd have solved the problem by myself...
    Thanks again!
    If I can take advantage of you, the big problem for us is the heavyness of our swf inside ppt....
    I'll try to explain..
    excel file inside the project has 837 cells to be used for my graph (13 item in Coloumn x 65 item in Rows)
    this because we need to create a graphic to be able to show a trend of about 2 years, which increase (filling the empty cells) every month...
    so many informations, so many objects (icon, etc) tell me, is too much isn't it?
    because when I've exported the file in ppt, every time it takes 1 minute only to open that chart...
    is possible not to include the excel? could be a solution to take the information from an sql DB ?
    thank you very much!
    Maurizio

  • Content not aligning properly?

    I'm Having trouble getting my content to align properly, it looks right in dreamweaver but when I put it (doesn't matter what internet browser) it is not aligned the same way it is in dreamweaver. The site is www.thecrowdedroom.ca It's pretty obvious what isn't linging up.... The nave container the page identifier and the page content
    Here's my code, I've put the code for the style sheets below the source code
    SOURCE CODE:
    <html>
    <head>
    <title>crowded room - home</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="stylesheet1.css" rel="stylesheet" type="text/css">
    </head><center>
    <body>
    <div id="container">
    <div id="navbar" align="left">
            <ul>
                <li><a href="CRhome.html"><img src="images/home-button.jpg" alt="Home" width="75" height="23" border="0"></a></li>
                <li><a href="CRprojects.html"><img src="images/projects-button.jpg" alt="Projects" width="87" height="23" border="0"></a></li>
                <li><a href="CRinfo.html"><img src="images/rundown-button.jpg" alt="Info" width="131" height="23" border="0"></a></li>
                <li><a href="CRcontact.html"><img src="images/contact-button.jpg" alt="Contact" width="89" height="23" border="0"></a></li>
            </ul>
    </div>
    <div id="display">
      <img src="images/home-display.jpg" width="182" height="34">
    </div>
    <div id="content">
    Welcome to the Crowded Room<br><br>
    Home of Web Developement, Media Production, and Event Planning<br>
    Take a look around, check out our current and past projects  
    </div>
    <div id="footer">
      Copyright © 2009 CROWDED ROOM PRODUCTIONS. All rights reserved
    </div>
    <this is the container div nothing goes below it>
    </div>
    </body></center>
    </html>
    STYLE SHEETS
    #container {
        background-image: url(images/CRhome.jpg);
        background-repeat: no-repeat;
        height: 800px;
        width: 800px;
        margin-top: 30;
        margin-right: auto;
        margin-left: auto;
    #container #navbar ul  {
        list-style-type: none;
        clip: rect(auto,auto,auto,auto);
        height: 4px;
        width: 100px;
    #container #navbar ul li {
        margin-top: 6px;
    #navbar {
        height: 100px;
        width: 100px;
        float: none;
        margin-top: 202px;
        margin-left: 50px;
        position: absolute;
        left: 254px;
        top: 87px;
    #display {
        position: absolute;
        left: 311px;
        top: 630px;
    #content {
        letter-spacing: normal;
        text-align: left;
        word-spacing: normal;
        overflow: auto;
        height: 122px;
        width: 760px;
        margin-top: 635px;
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 20px;
        position: absolute;
        font-family: "Myriad Pro";
        font-size: 14px;
        font-style: normal;
        line-height: 25px;
        vertical-align: middle;
        left: 284px;
        top: 30px;
    #footer {
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 9px;
        height: 14px;
        width: 800px;
        position: absolute;
        text-align: center;
        left: 283px;
        top: 785px;
        margin-top: 30;
        margin-right: auto;
        margin-left: auto;
    #contentpic {
        letter-spacing: normal;
        text-align: left;
        word-spacing: normal;
        overflow: auto;
        height: 150px;
        width: 200px;
        margin-top: 635px;
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 20px;
        position: absolute;
        font-family: "Myriad Pro";
        font-size: 14px;
        font-style: normal;
        line-height: 25px;
        vertical-align: middle;
        left: 12px;
        top: 32px;
    #contentwordpic {
        letter-spacing: normal;
        text-align: left;
        word-spacing: normal;
        overflow: auto;
        height: 150px;
        width: 560px;
        margin-top: 635px;
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 20px;
        position: absolute;
        font-family: "Myriad Pro";
        font-size: 14px;
        font-style: normal;
        line-height: 25px;
        vertical-align: middle;
        top: 31px;
        left: 214px;

    http://www.thecrowdedroom.ca 
    I can tell you that having no document type declaration (DTD) on the first line of your HTML docs is not a good thing and sends your page into Browser Quirks Mode.
    DW   automatically applies a doc type to new pages so you may have copied & pasted this code  from someplace else ??
    To fix this problem, Go to File Menu > Convert > Select a Doc type that fits your coding skills.  Either XHTML or HTML (transitional).
    HINT:  It's a good idea to use HTML heading <h1> <h2> <h3> or paragraph <p> tags around your text content for search engines to find.  Heading 1 carries greater importance than heading 2 and so on...
    Related Links:
    HTML Validator - http://validator.w3.org 
    CSS Validator - http://jigsaw.w3.org/css-validator/  
    HTML & CSS Tutorials - http://w3schools.com/
    Creating  your first website in DW CS4 -
    http://www.adobe.com/devnet/dreamweaver/articles/first_cs4_website_pt1.html
    Good luck with your project,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Datas in Application Server file is not aligned

    Dear all,
               I have created a program in SE38 and transfer the data to the Application server file using Transfer statement.
               The datas are transferd to Application Server file , but datas are not aligned.
               In out Application server file thd datas are displaied one after another..
               But i want to display the datas in single row.
              I have include program for your reference.
    With Regards,
    Baskaran.
    report  zsutest34 message-id ztcpo.
                    DATA AND VARIABLES DECLARATION
    data: begin of leban occurs 0.
            include structure eban.
    data end of leban.
    data new(1).
                    SELECTION-SCREEN
    selection-screen begin of block 001 with frame title text-001.
    selection-screen skip 1.
    parameters filename(128) default '
    192.168.100.33\SAPMNT\IDS\dvebmgs00\data\santhosh.dat'. "\SYS\GLOBAL\testfile1.txt' LOWER CASE.
    select-options ldat for sy-datum.
    parameters lwerks type eban-werks.
    selection-screen skip 1.
    selection-screen end of block 001.
    START-OF-SELECTION
    select * from eban into leban where erdat in ldat and werks = lwerks.
      append leban.
    endselect.
    sort leban by banfn bnfpo.
    clear leban.
                    REGARDING DATASET
    perform value1.
    form value1.
    open dataset filename for output in text mode encoding default. " MESSAGE D_MSG_TEXT.
    data: l_msg(255) type c.
        if sy-subrc ne 0.
          message i001.
          exit.
        endif.
    concatenate 'The following file was opened:'(002) filename into l_msg separated by space.
            write: l_msg.
    uline.
                    TRANSFORMING TO APPLICATION SERVER FILE
    loop at leban.
          transfer leban-banfn to filename.
          transfer leban-bnfpo to filename.
          transfer leban-ekgrp to filename.
          transfer leban-matnr to filename.
          transfer leban-werks to filename.
    AT FIRST.
       WRITE: /10 TEXT-001, 30 TEXT-002, 45 TEXT-003, 50 TEXT-004, 65 TEXT-005.
       '            ITEMNO GRP MATERIAL           PLANT           QTY ' COLOR = 2.
    ENDAT.
      at new banfn.
        uline.
        write:/1 'PRNO-',leban-banfn.
        new = 'x'.
        uline.
        skip.
      endat.
      if new = 'x'.
        WRITE:/ '            ITEMNO GRP MATERIAL           PLANT           QTY ' color = 2.
        write:/14 leban-bnfpo,  leban-ekgrp, leban-matnr, leban-werks, leban-menge.
        clear new.
      else.
        write:/14 leban-bnfpo,  leban-ekgrp, leban-matnr, leban-werks, leban-menge.
      endif.
    endloop.
                    DATASET CLOSING
    close dataset filename.
    endform.

    wa_string type string
    loop at leban.
    concatenate leban-banfn
              leban-bnfpo
              leban-ekgrp
                 leban-matnr
                 leban-werks into wa_string
                 separated by CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
    transfer wa_string to filename.
    endloop.

  • Tabs not aligning in cs6

    Have three lines of text formatted with tabs giving 4 columns of numbers, no tab on first column which is descriptions. Text has a paragraph indent. Using soft returns to carry tab attributes through paragraph. Also using 'indent to here' character on first line. Tabs do not align. Have to insert an additional tab in place of 'insert to here' for numbers to align. Previous versions did not have this problem. Anyone else encountered this?

    Judging from the tags on the original post, this is a Mac file,
    Oof. Yup, that'd be a Mac file. Bowie, it might be useful to do that even though you know it's a new file - you could tell us exactly which version of CS6 you are using, e.g. 8.0.1.406
    (Joel, it seems your tabs setup doesn't quite match that of Bowie.)
    You're right, Tom - I would have thought that the differences were insignificant.
    Either there is something that I am missing (I hammered this sample out in fifteen seconds, it's quite possible that it's still not an accurate recreation) or perhaps this issue is be platform-related. Also, I'd want to second Mike's suggestion here - is there any way you can post this file (or a file that recreates the issue without sharing any proprietary info) to something like Dropbox?

  • I am looking for some hotels on mozilla and encountered a strange issue, the hotel ad for first slot is not aligned in knowledge panel.

    I was looking for a hotel on mozilla and the first hotel exhibiting in the ad is not aligned with knowledge panel. However it is showing correct result on other browsers. This error is not just contained for one hotel ad but to other as well. I am just curious if it's an issue from their end or some technical syntax error in mozilla
    Please find an attachment.
    Thanks.

    You may have zoomed web page(s) by accident.
    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl/Command+0 (zero))
    *http://kb.mozillazine.org/Zoom_text_of_web_pages
    If you have made changes to Advanced font settings like increasing the minimum/default font size then try the default minimum setting "none" and the default font size 16 in case the current setting is causing problems.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow pages to choose their own fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but to use an extension to set the default page zoom to prevent issues with text not being displayed properly.

  • Illustrator CS 6 - tabs not aligning

    anyone else having an issue with tabbed text in a paragraph not aligning?

    I have the same problem!
    Illustrator CS6 ran fine before I installed OS X 10.10 Yosemite on my MacBook Pro.  But it never ran once afterwards.  When I launch AI CS6, it says it needs me to install the legacy Java SE 6 runtime.  Did anyone else encounter this?  I don't want to install the older version of java without knowing if it'll fix the problem, or what the impact will be to other programs which all seem to run fine after my upgrade to Yosemite.  Any guidance out there for us?
    Thanks a ton!
    -Eric

  • HP Color LaserJet CP1518ni - COLORS NOT ALIGNED

    Has anyone resolved this ridiculous issue where all the colors are not aligned when printing?  Black text prints perfectly. But when printing images, colors are not aligned. Issue has been going on for months and YES I've done the following:Calibrated a thousand timesRestored printer defaults 1000x'sWasted my money and spent almost $200 on OEM all 4 color cartridges ... wasted!Reinstalled drivers 1000x'sHave the most updated drivers... believe me.Ran the HP Print and Scan Doctor software and it's showing me NO ISSUES... ridiculousChecked the HP Support Forum with no resolution....I'm with you fellow people with this same issue. HP HELP PLEASE! Please tell me it's a HARDWARE ISSUE!!!! Of course you're not going to admit it.Same issue occurs on my PC-Win 7, Macbook.. doesn't matter... it's the printer!!!And I finally posted this plead for HELP!!!Thank you HP.

    Hi ITSwami
    I understand the printer is printing out of alignment.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector)
    I have included a document for print quality and alignment issues. In
    Solution eight: Print a diagnostics page, if the color alignment bars are off, calibrating is the only method of fixing this issue which you have already ran several times. I would also do Solution eleven: Identify and replace the problem print cartridge, in case it is just one cartridge causing this issue. Remove the toner and check for a tuck blade to make sure it isn't sticking out of the bottom of it.
    I have provided all the Manuals for the printer.
    You would want to contact HP Tech Support to inquire about getting a replacement toner if that ends up being the issue.
     

  • Font just does not align totally left

    Hi folks, I need to know, how i can align the text totally to the border of the text frame, as you can see in the picture it just does not align totally left.
    I´ve been searching the web for solutions but did not find anything. I tried "Textrahmenoptionen" - I guess in english it´s text frame options, but there everything seems so to be right, please help me. Thanks in advance

    Check this thread:
    Re: Text alignment to column (not baseline) guides

Maybe you are looking for