Dw fluid grid - How do I move text away from the edge?

I want to move the text "Article 2 Title" a few pixels to the left so it isn't against the right edge of the box.  How can I do this?

In the meantime,  Copy & paste this code into a new, blank document. 
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HTML5 Document</title>
<style>
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
section {
    width: 80%;
    margin: 0 auto;
    overflow:hidden;
    border: 4px groove #CCC;
article {
    float: left;
    width: 50%;
    padding: 0 2%;
    border: 1px dotted red;
.right {text-align:right}
</style>
</head>
<body>
<section>
<article>
<h3>Heading 3</h3>
<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris vitae libero lacus, vel hendrerit nisi!
Maecenas quis velit nisl, volutpat viverra felis.
Vestibulum luctus mauris sed sem dapibus luctus.
Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius.
Quisque varius scelerisque nunc eget rhoncus.
Aenean tristique enim ut ante dignissim. </p>
</article>
<article>
<h3 class="right">Heading 3</h3>
<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Mauris vitae libero lacus, vel hendrerit nisi!
Maecenas quis velit nisl, volutpat viverra felis.
Vestibulum luctus mauris sed sem dapibus luctus.
Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius.
Quisque varius scelerisque nunc eget rhoncus.
Aenean tristique enim ut ante dignissim. </p>
</article>
</section>
</body>
</html>
This is how it looks in Firefox:
Nancy O.

Similar Messages

  • How do I move an icon from the second page of my home screen to the first page  and vice versa?

    How do I move an icon from the second page of my home screen to the first page and vice versa?

    Hold an icon down until they all wiggle.
    Drag it wherever you want it.

  • How do I move music files from the startup disc to iTunes in the other internal hard disk os 10.5.8?

    How do I move music files from the startup disc to iTunes in the other internal hard disk os 10.5.8?
    The music I want to move was in iTunes but is now just files. I had to reinstall a new iTunes and lost all my old music.
    Thank you!

    That article is about using your iPod as an external hard drive, to move files from one computer to another computer.  It is not related to your question.
    You can't use iTunes to move song files from iPod to computer, except for songs you purchased from the iTunes Store (and you can also re-download purchases).  However, there are third-party methods and utilities that can move song files from iPod to computer.  If you do a Google search on something like "ipod transfer," you should get some links.
    Once the song files are on your current computer, add them to that computer's iTunes library by dragging the files (or folder containing the files) to the iTunes window.  After confirming everything is there (and fixing the data issue you mentioned) you can sync the iPod.  You may want to do a Restore on the iPod, if it might have a data corruption issue, which will erase the iPod's hard drive, re-install the latest software, and set it to defautl settings.

  • How do I move aiff files from the viewer to the timeline-it is not working when I try to drag and click or clicking on overwrite or insert in Final Cut Pro 7. Thanks

    How do I move aiff files from the viewer to the timeline-it is not working when I click and drag or when I try to move the files to the overwrite or insert buttons-Thanks.

    hi
    You cannot move audio from the viewer
    Mark your in and out points then in the browser grab hold of the audio tracks icon and drag that to the time line
    PJ

  • I would like to have at least 1 of my toolbars displayed at the BOTTOM of my open browser screen.How do I move a toolbar from the top to the bottom of the page?

    I would like to have at least one of my toolbars displayed at the '''BOTTOM''' of my open browser screen. How do I move '''a''' toolbar from the top to the bottom of the page? I do NOT want to do this by using an extension, and when I read about the extension, I really did not see how it would move the toolbar from the top to the bottom any open browser page.
    Thank you in advance for supply the answer and procedure to get this accomplished.

    Try this extension to create extra toolbar at the bottom and drag items from other toolbars on it.
    *TotalToolbar: http://totaltoolbar.mozdev.org/
    ''(compatibility is at 13.0a1, so you may need to override the installation to check if the extensions works)''

  • Move the text slightly away from the edge?

    Is there a way to move the text slightly away from the edge?  When I viewed my project on the big screen, the edge of the text on the right side was cut off and not visible. I can't find a way to move it.

    I've had a look at all the themes available, and they all align text to the left.
    Are you talking about iMovie iOS or for Mac?

  • How do you move text messages from contact to contact

    Recently a friend of mine changed their phone number so I removed their old number and put in their new one. The text messages that I received from them before this change is now labeled as the the old number. I have 2 questions:
    1. Is it possible to move text messages from that old number to this new one?
    2. Can I put the old number under the contact but label it "old number"? If so, when I text in that screen again will it go to the old number or the new one?
    Thanks

    Just my 2 cents...
    1) As far as I know, those text messages are attached to THAT phone number. There is no way to assign them to another number.
    2) You could certainly add the number as another number for your friend. This would atleast TITLE that thread, so you knew who the conversation was with. However, again, those texts and that THREAD is tied to that "old" phone number. Therefore, if you reply in that thread, the messages are going to be sent to the old number.
    I would just recommend adding the number to the contact, so you have it labled if you forget who it was or something, but then just start a new thread with the friend?!..

  • How to download a text file from the server

    hi everyone,
    can anyone tell me how to download and read a text file from the server and saved in into resource folder.
    with regards
    pallavi

    its really easy
    To read from server, use something like:
    HttpConnection connector = null;
    InputStream inp_stream = null;
    OutputStream out_stream = null;
    void CloseConnection()
         if(inp_stream!=null)inp_stream.close();
         inp_stream=null;
         if(out_stream!=null)out_stream.close();
         out_stream=null;
         connector.close();
         connector = null;
    public void getResponse(String URL,String params)
      try
         if(connector==null)connector = (HttpConnection)Connector.open(URL);//URL of your text file / php script
         connector.setRequestMethod(HttpConnection.POST);
         connector.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.1");
         connector.setRequestProperty("content-type", "application/x-www-form-urlencoded");
         //connector.setRequestProperty("charset","windows-1251");
         //*** If you need to send ("arg1=value&arg2=value") arguments to script use this:
         out_stream = connector.openOutputStream();
         byte postmsg[] = params.getBytes();
         out_stream.write(postmsg);
         int rc = connector.getResponseCode();//in any case here connection will be opened & closed
         if (rc != HttpConnection.HTTP_OK)
              CloseConnection();
              throw new IOException("HTTP response code: " + rc);
         inp_stream = connector.openInputStream();
         int pack_len = inp_stream.available();
         byte answ[]=new byte[pack_len];
         inp_stream.read(answ);
         CloseConnection();
         ProcAnswer(answ);//process received data
      catch(Exception ex)
         System.err.println("ERROR IN getResponse(): "+ex);
    } And you can read from resource file like
    public void loadFile(String filename)
        DataInputStream dis = new DataInputStream(getClass().getResourceAsStream("/"+filename));
        String str="";
        try
             while (true)
                ch = dis.read();//read character
                if(ch=='\r')continue;//if file made in windows
                if(ch=='\n' || ch==-1)//end of line or end of file
                    if(str.length()==0)continue;//if empty line
                    //do some thing with "str"
                    if(ch==-1)break;//it was last line
                    str="";//next line
                    continue;
                 str+=(char)ch;
           dis.close();
       catch (Exception e)
           System.err.println("ERROR in loadFile() " + e);
    }Welcome! =)
    Edited by: MorskoyZmey on Aug 14, 2008 3:40 AM

  • HOW to make a text apper from the other side in a Textfield

    am trying to allow the text come from the other side in a textfield. eg..look at the caculator on your windows OS. see how the textfield appears from the left. any suggestions.???

    this are the errors on ur code
    even after i imported javax.swing.text
    NoteSizeFilter.java:2: cannot find symbol
    symbol: class DocumentFilter
    public class NoteSizeFilter extends DocumentFilter {
    ^
    NoteSizeFilter.java:14: cannot find symbol
    symbol : class FilterBypass
    location: class NoteSizeFilter
    public void insertString(FilterBypass fb, int offs, String str, AttributeSet a)
    ^
    NoteSizeFilter.java:14: cannot find symbol
    symbol : class AttributeSet
    location: class NoteSizeFilter
    public void insertString(FilterBypass fb, int offs, String str, AttributeSet a)
    ^
    NoteSizeFilter.java:15: cannot find symbol
    symbol : class BadLocationException
    location: class NoteSizeFilter
    throws BadLocationException {
    ^
    NoteSizeFilter.java:23: cannot find symbol
    symbol : class FilterBypass
    location: class NoteSizeFilter
    public void replace(FilterBypass fb, int offs, int length, String str, AttributeSet a)
    ^
    NoteSizeFilter.java:23: cannot find symbol
    symbol : class AttributeSet
    location: class NoteSizeFilter
    public void replace(FilterBypass fb, int offs, int length, String str, AttributeSet a)
    ^
    NoteSizeFilter.java:24: cannot find symbol
    symbol : class BadLocationException
    location: class NoteSizeFilter
    throws BadLocationException {
    ^
    NoteSizeFilter.java:16: operator + cannot be applied to FilterBypass.getDocument.getLength,int
    if ((fb.getDocument().getLength() + str.length()) <= maxCharacters) {
    ^
    NoteSizeFilter.java:16: operator <= cannot be applied to <nulltype>,int
    if ((fb.getDocument().getLength() + str.length()) <= maxCharacters) {
    ^
    NoteSizeFilter.java:17: cannot find symbol
    symbol : variable super
    location: class NoteSizeFilter
    super.insertString(fb, offs, str, a);
    ^
    NoteSizeFilter.java:25: operator + cannot be applied to FilterBypass.getDocument.getLength,int
    if ((fb.getDocument().getLength() + str.length() - length) <= maxCharacters) {
    ^
    NoteSizeFilter.java:25: operator - cannot be applied to <nulltype>,int
    if ((fb.getDocument().getLength() + str.length() - length) <= maxCharacters) {
    ^
    NoteSizeFilter.java:26: cannot find symbol
    symbol : variable super
    location: class NoteSizeFilter
    super.replace(fb, offs, length, str, a);
    ^
    NoteSizeFilter.java:28: cannot find symbol
    symbol : variable super
    location: class NoteSizeFilter
    super.replace(fb, offs, length, str, a);
    ^
    NoteSizeFilter.java:31: cannot find symbol
    symbol : variable super
    location: class NoteSizeFilter
    super.replace(fb, 0, fb.getDocument().getLength(), parsed, a);
    ^
    15 errors
    C:\Java Files\GUI\Calculator>

  • Why does the mouse cursor move to away from the currrent application without the mouse being moved

    the mouse cursor moves away from the current application without the mouse having been moved - this started with the new version - re-installing Firefox makes the problem go away for a short period - re-installing is not a solution
    == This happened ==
    Every time Firefox opened
    == a few days after installing 3.6.3

    Hello Jim.
    It's probably one of three things:
    #your mouse is getting old (this behavior is common in old optical mouses);
    #you have software that is making your mouse cursor behave unexpectedly (I know of an option in Windows that will automatically move your mouse to windows buttons...);
    #or you may be having a problem with some extension or plugin that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?

  • How do I move text files from my desktop to my iPod Touch?

    How do I transfer (export) text files from my Mac (word processor files) to the Notes app on my iPod?

    WesternGuy wrote:
    I am going to assume that I can move individual profiles, or even delete profiles that I no longer need.
    Just be aware that if you delete or don't move profiles that are currently assigned to images LR will (without warning) reassign those images with the Adobe Standard profile.
    You can use AnyFilter, Data Explorer, or DevMeta plugins to determine if any images are assigned to a profile you want to delete. You can then reassign the profile of your choice. Once that's completed you can safely delete the camera profile.

  • How do I move an App from the cloud to my iPad?

    I downloaded an App (Houston Chronicle for iPad) and somehow I placed it on the Cloud instead of on my iPad. How do I move the App to my iPad?

    BTW, your apps remain in the "cloud" regardless of if you think you "moved" them. You cannot delete them from the cloud. They will remain there until:
    1. Apple removes it from the App Store for some reason
    2. The developer chooses to have it removed from the App Store for some reason

  • HT5953 How can I move my books from the ibook store to my Android device? I bought the book, so I have every right to move it as I see fit!

    The new Ibooks on Mac computers is about the worst thing to happen to Apple in a long time. I bought a book from the Ibook store, and I want to move it to my adnroid device. The thing is refusing to let me move my purchase. I mean, I used my money to purchase a BOOK. How does it make sense that I am limited in the movement of my book, somethng I purchased with my money? Can someone PLEASE explain how that is possible?

    First of all, you posted in completely the wrong section.
    It says right on the purchase page that you need an iOS device.
    The publishers want restrictions on what devices can read the books to make sure everyone pays.
    In any case, if you ask google there are lots of converters such as Epubsoft Ebook Converter
    I have never used it myself though.

  • How Do You "Move" Items/Applications from the Mac Hard Drive?

    Hi,
    As the subject line suggests I need to "move" things from my regular Mac Hard Drive to the additional Hard Drive I installed. My normal (forgive my lack of technical talk) hard drive is almost full. I would like to move things like iTunes, iPhoto etc to my new hard drive (1TB) so that I can free up space on my current more regularly used hard drive. Is there an easy way to do this?
    Ali

    There's various approaches you can take. Personally I would try to leave applications and the system on the main drive and just move data files to another drive. Some applications really want to be run from the main drive and will become cranky if you put them elsewhere because things aren't where they expect them to be.
    Moving files is often just a matter of dragging them to the new place. Note that if this new place is another drive the files get copied and you will have to delete the originals from the original drive once you are done copying.
    Applications can have a complex structure with bits and pieces of files all over the place, some may be invisible. While these can be copied, as I said before it is often best to leave them on the main drive.
    Just for your information, you posted your software question in the Apple.com > Support > Discussions > Power Mac G5 > Power Mac G5 (tower) hardware questions area. Your computer information says you are running a Mac Pro and Snow Leopard (which won't run on a G5). It doesn't really matter in this case but if you have a platform specific question in future, for fastest response you might want to make sure it gets into the correct forum.

  • How can I move my media from the Apple TV to ITunes?

    I have a lot of purchused content that did not download to my itunes on my computer and I do not want to lose it. What can I do?

    It sounds like you might have your Apple TV set up for streaming, rather than syncing.  On your Apple TV (this is for the old version, but it may be the same on the newer one), you go to the heading all the way on the right to the "Settings" menu.  Choose "computers".  If you have a "shared" library, you'll want to remove this.  Once you have done this, you'll want to sync with iTunes (I believe it is similar to this, do not choose "Add shared iTunes Library", the only other choice).  Apple TV will provide you with a code, which you will enter on your computer.  At that point, it will automatically start syncing all your stuff off your Apple TV to your computer (make sure you have a lot of room on your HD).  It also automatically will sync a certain number of items to play directly from your ATV, rather than your home directory - however, if you sync it so that nothing is on your ATV (and nothing syncs to your ATV) then all of your content will show up in "MY ..." under the item (i.e. TV shows, Movies, Music....)  Anything you buy on your ATV will automatically sync with your computer and be removed from the ATV after it is done downloading. 
    If you don't have room for everything, then you'll have to use do the reverse of the above, and after syncing some of your stuff to your computer, remove the library, and re add it back as a "shared iTunes Library", which will allow you to see those items on your computer when it is on, and itunes is running (this is true regardless).

Maybe you are looking for

  • My java is extremely slow in yosemite

    my java is extremely slow in Yosemite. i found existing comments on uninstall java and reinstall. I did reinstalled java couple of times, but not helping. when i simply enter java, java -version, javac in the terminal, its taking **** lot of time to

  • Incremental RMAN backup

    Dear all, How could i eradicate the below error ? 1002,07-DEC-07,RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ========= ====== 1002,07-DEC-07,ORA-19641: backup datafile checkpoint is SCN 1746331111 time 09/19/2007 22:09:11 1002,07-DEC-07,R

  • On certain web sites the page opens then over runs to a blank screen with the same address and stopped showing on the status line

    When trying to access certain web pages the browser finds and loads the page then 'over rides' to a blank screen. The page address doesn't seem to change but the tab shows continued 'loading' The status bar at the bottom shows either 'stopped' or 'do

  • "Make Link"  What is it for in Safari?

    Highlight the URL in Safari Toolbar (and Camino) and right click on the selection and the second item in the contextual menu is "Make Link" How is this used and what's it for? It does not appear to be documented? G4 MDD, 17" Pb   Mac OS X (10.4.5)  

  • Sprint Evo Android 2.1

    Just set the server up with the June build. Having 2 problems with the phone and sync. Set it up using the active sync connector. The calendar does not give you the option to invite a guest. Flip over to the gmail calendar and it is there. Also can o