How do I get messages list to appear above the selected email, like in Snow leopard.

When I opened the mail in Lion after upgrading the messages all appear on the left instead of above whewre I want them. How do I have them above ??
Thanks for any help

You will want to go into Mail preferences and click on viewing. In there you check the box that says "Use classic layout".

Similar Messages

  • How do I get a Dialog to appear in the center of the screen?

    How do I get a Dialog to appear in the center of the screen?

    You can get the screen size by using Dimension java.awt.Toolkit.getScreenSize().
    Once you get the Dimension, Before using API setVisible(true), You have to do the calculations to put your dialog in the center.

  • It says I can drag Pages documents from iMac to iCloud. But nothing shows up. Using latest with all turned on. How do I get Pages up to iCloud? The little wheel like action menu does not appear.

    It says I can drag Pages documents from iMac to iCloud. But nothing shows up.
    Using latest with all turned on. How do I get Pages up to iCloud? The little wheel like action menu does not appear.

    yes is tehre another way
    the directions do not explain anything other than drag
    or use the little action wheel menu

  • Content Holder How do you get css class to appear in the wysiwyg editor? The only option is "clear class".

    Need an answer to my question: How do you get css class to appear in the wysiwyg editor? The only option is "clear class".

    Liam,
    If it's not supported there, then where can I access the css and do you have any recommendations for a simple app to change the css style?

  • How do i get that bar to appear on the screen for http and web pages?

    How do i get that bar to appear on top of the screen for http and web pages?

    Yes im using safari version  5.1.2 (6534.52.7)  I have tried clicking show toolbar  from the view menu but i still can't see it.  It's the bar where you type in a website link or http:// that I can find - any other suggestions much appreciated

  • How can i get  all albums to appear in the artist list

    Not all of my albums for a particular artist appear in the artist list. How can I correct this?

    Hi spike1954,
    Welcome to Apple Support Communities.
    You may want to first check the Song Info associated with the albums that are not displaying correctly. See this article for the details:
    Playing and managing content in iTunes
    http://support.apple.com/kb/ht1399
    Editing and arranging content
    Editing Info
    Each audio or video file in iTunes has several settings and tags that can be easily modified. These options can be accessed by selecting any file in the iTunes browser windows and selecting "Get Info" from the File menu. You can add song lyrics, artwork and set special playback options. The "Info" tab lets you edit information about the file including artist and album info.
    Additionally, while this article refers to a previous version of iTunes, the information within can still be helpful:
    Fixing Incorrect Song or Album Listings in iTunes
    http://support.apple.com/kb/ta24677
    Best,
    Jeremy

  • How can I get a folder to appear in the Folder list when I am trying to import pictures?

    There is a folder on my hard drive that does not appear in the list of folders in the import dialog. I have tried expanding all the other folders around it (my photos are filed by date of capture) to see if it was somehow imported as a subfolder. It is simply not there. I can find and open it and access all the pictures in Photoshop Elements but not in Lightroom 4. Any ideas?

    I would try this:
    In Lr import one photo into a different folder that you can see in the list.
    Then in your OS (mac Finder / Win Explorer) move the photo to the folder that you cannot see.
    In Lr the photo will now appear with a question mark on its frame. Click directly on the question mark and select <Locate photo>. Navigate to the folder, open it, and click on the photo.
    Maybe this will help Lr to recognize the folder.
    If this doesn't help try renaming the folder in your OS.

  • How do I get my ereader to appear on the left hand side of Digital Editions?

    I have a Kobo Vox ereader and it works well.  It connects to my computer and appears  when I look at My Computer.  It doesn not appear on the left hand side of Digital Editions under Devices (devices does not appear either) when ADE is started.  The book I downloaded appears in ADE and is readable in ADE.  How do I get the Kobo to appear within ADE so I can transfer the book.  ADE does not seem to see the device to ask me to register it as the help screen suggest it might.  I've made sure that it is connected before I open ADE.  Please help.

    The eReader is authorized/activated with an AdobeID rather than with a computer.
    It is possible to have multiple computers and multiple devices all authorized with the same ID.
    The eReader gets its authorization when you Authorize Device from any computer;
    and then should work find when connected to any other computer authorized with the same ID.
    ~~~
    One possible reason for your issue is that you haven't authorized the laptop with your AdobeID.
    In that case ADE generates an anonymous/implicit ID with very limited capabilities.
    In particular, one capability missing is the ability to pass the implicit ID onto a device;
    so it is possible (???) that in that case ADE does not show the device.
    If that is the case
    ctrl-shift-D to ADE (cmd-shift-D if it's a Mac) on the laptop to remove the anonymous ID
    restart ADE (maybe not needed)
    authorize ADE with the same ID as you are using on the desktop
    restart ADE (maybe not needed)
    plug in the eReader and see if it is recognized

  • How do you get your dock to appear on the Thunderbolt display?

    When I connect my MacBook Air to the Thunderbolt, the dock remains on my laptop.
    My husband's MacBook Pro automatically puts the dock at the bottom of the Thunderbolt screen.
    Also, when I open any application or a new window in an open application, the new window appears on my laptop
    and I have to drag it to the Thunderbolt display.
    Is there any way to get the dock and windows to appear on the Thunderbolt automatically so I can work only on the
    Thunderbolt?

    Thank you, mende1!
    So, if I want to use the Thunderbolt as an extended display and not as a second display mirroring what is on my computer's screen, what would I need to do?
    Malcolm's answer has me mirroring my laptop which is better than I had. 
    But, I used to be able to have my Apple Mail on my laptop, while working on other applications on the Thunderbolt. 
    I think that is what you are referring to..... would love help!   Thanks!

  • How do I get a list of files in the DataDrvUser Dir programatically (no dialogs)

    I have version 8.1.1292 of Diadem. I wish to get a list of files in a directory without using a dialog.

    Hello Sweeten
    Attached are two snipits of code, hope this helps
    The following sub reads all the folders in a root folder. Note the use the FSO or file system object. The FSO has a number of properties and methods for working with files and folders, would definetly check it out.
    Sub ReadProjects()
    'This sub reads all the Folders in the root
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set Folder = fso.Getfolder(RootPath_)
    Set Folder = Folder.SubFolders
    i=1
    For Each SubFolder In Folder
    LstStates.Items.add SubFolder.name,i
    i=i+1
    Next
    End Sub
    This next code snipit reads all the files of a certain extention (i.e. LPD,DAT)
    Sub ReadProjectFiles()
    Dim fso,PathName,LvdNames,GraNames,path
    Dim x,y,z
    x=1:y=1:z
    =1:w=1
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set Folder = fso.Getfolder(ProjectPath_)
    Set Files = Folder.Files
    For Each file In files
    Select Case file.type
    Case "LPD File"
    LstGraph.items.add file.name , x
    x=x+1
    Case "DAT File"
    LstData.Items.add file.name , y
    y = y+1
    Case "LVD File"
    LstView.Items.add file.name , z
    z = z+1
    End Select
    Next
    Let me know if this is helpful
    Tom Ferraro
    DIAdem Product Manager
    512-683-6841

  • How do i get my videos from iphoto to work after I update to snow leopard?

    My videos were working fine, but after I upgraded to snow leopard my videos form Iphoto stopped working.  Also I noticed my mac is running really slow after the update.  Is there anything i can do to up the speed of my mac?

    my videos form Iphoto stopped working.
    Please clarify.  Exactly what happens when you click on the videos?  Any error messages?  What do they state?  The iPhoto users hang out in the iPhoto forums.  You may wish to cross-post there.
    my mac is running really slow after the update.  Is there anything i can do to up the speed of my mac?
    Did you repair permissions and restarted your computer after upgrading?
    How large is you HD and how much space do you have left?
    Check out the following & do the necessary: 
    User Tip:  Why is my computer slow?
    What to do when your computer is too slow
    Speeding up your Mac

  • How do I get home share when it says: the selected files could not be copied because the machine is not a member of the home share?

    What do I do when it says the selected files could not be copied becasue the machine is not a member of the home share?

    You dont say how you are connected to PC .
    This is how i copy data .
    USB Mass Storage mode .
    Use Windows Explorer to open memory card and copy .
    Your free space problem if not resolved copy data off memory card to pc then back .
         jje

  • HT5891 how do I clear all the apps so I can see just the desktop background like in Snow Leopard all those years ago?

    I used to just be able to three finger swipe up!

    Sorry I wasn't quite clear,
    I meant that in order to see what I have on my desktop like on startup before I use any apps, I just want to hide any apps that are running without having to actually close any. Say for example I want to open a document or movie that I know is on my desktop I could just swipe up on Snow Leopard and see them, but I don't know how to do this on Mavericks.

  • How do I get contact names to appear in the Verizon Messages browser version?

    Hey Guys,
    I just got the S5 and was giving the Verizon Messages app a shot since Mighty Text is acting a little wonky with Kit Kat and won't sync outgoing browser texts with the phone. With the VZW Messages app sending and receiving texts from my phone and browser works fine but I wanted the contact names to show up in the browser window. I figured Verizon was pulling the data from the cloud storage and not directly from the phone so I synced my contacts with vzw cloud but it only synced 35 out of my 350 contacts. They all originated from Google Contacts and seamlessly imported to my new phone from my old one.
    Any ideas?

        Having the ability to access your contacts via Verizon Messages is very important JoeVoorhees. I am happy to inform you that with Verizon Messages, you do have the ability to import your contacts. To do this, simply sign into your Verizon Messages online>on the upper right hand side>click on menu>manage contacts>import contacts>on the top right hand side of the page you will see a picture of your phone and sync. Click on sync.
    Thank You,
    MichelleL_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • I had icons for all bookmarks in my other browser, so how do I get them all to appear in the Mozilla bookmark toolbar alongside the name?

    I like the icons alongside the bookmark name. It appears that when the bookmark connects, some of the icons get automatically imported - e.g. Google, while others do not, e.g. Southwest Airlines. All of my bookmarks had icons in IE, so I assumed Mozilla would pick them up also. Is this a problem with the bookmarked website exporting the icon to Mozilla, or Mozilla polling the website to obtain the icon to display on the toolbar?

    No change in my bookmark toolbar icons, using the add-on above. Again, most of my bookmarks in Firefox have the icon, but others, e.g. Southwest Airlines, Comerica Bank (i.e. large companies that I'd expect Firefox to grab the icons). Clearly IE does something different than firefox to import the icon, otherwise they'd be the same across theboard.

Maybe you are looking for

  • Check purchase requsition before making amc/service purchase order

    Hi! I have problem regarding making Purchse requisition field mandatory for the Sevice purchse order. Can anyone help me on this issue?

  • GotoAndPlay next scene when reach the "end" cue point

    Hi, I have a flv with actionscript cue point "welcome_end". It's will be progressive download from web server. It has a component name "flv_welcome" on stage. What I want to do is after the flv play reach to its end, the flash movie will go to and pl

  • IBooks PDF's synced between devices, what is maximum amount?

    I sync PDF documents for my job across all my devices using iBooks and iTunes. No matter how many I upload to the iPad or iPhone they seem to max out the quantity at 231 or 232. Is there a definite maximum that can be downloaded and synced regardless

  • ITunes LPs not working

    Hi. I recently bought four Metallica albums (Ride the Lightning, Master of Puppets, ...And Justice for All, and Metallica). All four came with the digital booklets. At the time I bought these albums I still had an older version of iTunes (9 or someth

  • Vibrator not working .....plz help

    I have apple iPhone 4S it's vibrator is not working .... Could any give Me any idea about this problem . I shall be very thnkful