Help with email alignment

Hi Guys, looking for some help with center alignment of an email.
Its center aligning fine in dreamweaver preview and in the preview of mail chimp, but when I sent it to Gmail it's aligned to the left.
Any ideas why this is?
Bear in mind im a rookie in coding and Dreamweaver.
Hope the code below helps...
Thanks!

Thanks for responing!
Removing display: inline-table; worked!
Its now center aligned.
Cheers osgood_

Similar Messages

  • Can anyone help with email in my old G4 17"  ??

    My G4 17", bought December 2004, is considered an antique by Apple, and no longer supported. (I now mostly use my early 2011 MacBookPro.)
    But the big screen on by G4 is very useful for Sibelius 4, the music program I mostly use (Sibelius 7 in the MacBookPro - but much too fussy for me.)
    Sibelius 4 in the G4 continues to work flawlessly.
    But my email account recently sort of died. It's  POP account (whatever that means). I can no longer receive messages, BUT I can still create and
    send new messages, and of course forward any saved message to myself in the MacBookPro.
    ALSO:  if I have to shut down the G4, it usually reopens with a horizontally divided display, and it usually takes many restarts before it will open
    will a full screen display (seems to reopen correctly more often if left in a cool place overnight.)
    Can anyone help with one or both these issues? I want to keep the G4 going as long as I can.  BTW, I don't use it for browsing anyone, Safari installed,
    because it is now so slow. The MacBookPro handles all that for me.
    Thanks very much, James Johnson in Plattsburgh NY (where it is still cold and wintry, o f--k)

    To RCCHARLES: THANKS !!!!  I did the safe boot start, following the link you provided, then waited, and waited, and waited, and ---
    Well that is interesting. Amoung other things safe boot does:
    -- check and fixes up your file system.  The files system allows you to keep files on your harddrive.
    -- Does all video rendering in software.
    You could have a one time glitch or harddrive is slowly failing.  If you never replaced the harddrive, it is time for a new one.
    You may want to consider getting a new harddrive.  The easiest way is to get an external drive.  No disassembly of the machine is required.
    You need an external Firewire drive to boot a PowerPC Mac computer [ a few G5's will boot from USB ].
    I recommend you do a google search on any external harddrive you are looking at.
    I bought a low cost external drive enclosure. When I started having trouble with it, I did a google search and found a lot of complaints about the drive enclosure. I ended up buying a new drive enclosure. On my second go around, I decided to buy a drive enclosure with a good history of working with Macs. The chip set seems to be the key ingredient. The Oxford line of chips seems to be good. I got the Oxford 911.
    I'd give OWC a call. 1-815-338-8685.
    FireWire 800 + USB 3, + eSATA
    save a little money interface:
    FireWire 400 + USB 2.0
    This web page lists both external harddrive types. You may need to scroll to the right to see both.
    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
         (2) FireWire 800/400 Ports (Up to 100MB/s / 50MB/s)
         (1) USB 3.0 Port (Up to 500MB/s / 60MB/s)
         (1) eSATA Port (Up to 300MB/s)
    Has a combo firewire 800/400 port.  Not sure what this is.  Looks like you will  need 400 cable.
    http://eshop.macsales.com/shop/ministack

  • Please help with email and synching

    Hoping someone could help with my email!! I have my show filed messages to off. So, when I go in the hub and click my one email account, it shows all my filed emails, such as a folder named old mail. Now, I can fix this by clicking on the dropdown and click inbox, then it shows just my inbox and no filed messages. But if I get a text or FB and enter that in the hub, then click back in the email account it then shows all my filed messages. I just want to see my inbox and that is it! Why is this not working right? I'm on 10.1 and using Microsoft Exchange. I have my old mail being synced, but I don't want to see my old mail. It's literally thousands of emails.  If I unsych old mail then it is fine...but if I want to file something to the old mail file, then the whole thing sychs again and shows all my filed messages.
    I don't know why this is becoming so difficult, but I just can't continue with my email folder showing all of these folders I don't want to see. The email is hard enough without seeing a line of the body of the email and only the subject....this is making it even more crazy for me. I really want to stick it out....but not sure if I can...and I want to. Is this a bug or just the new way BB handles email.  Assuming its a bug being I have filed messages not to be seen.

    Finally, this plug-in is ready for beta testing on www.amazoncanvas.com
    Thank you all who have participated in this program.

  • New user needs help with Email account questions

    Good day - I have been a 10-year user of Blackberrys (Curve, Bold, and earlier models). Just received a new Q10 for work. Enterprise Outlook synched up and I am getting all emails, calendar, and contact information as in the past. All good with this. Here are my questions I cannot find answers to anywhere:
    1) How can I insert a "signature" with emails I compose from Q10?
    2) How can I delete all emails on Q10, rather than one at a time?
    3) How do I set the Q10 to only delete from phone and not network. In other words I only want to delete emails from the Q10 device and not my PC.
    Appreciate any help. Thank you,
    Chris

    #3 is even easier
    Go to Hub settings, then display and actions and drag down, you'll see the option 'delete'.
    Regards.
    Blackberry! Here, now, forever!

  • Help with email script

    I am trying to create a script that will automatically send an email with information contained in a text file and the name of the text file changes daily based on the date. Currently the script is just sending the attachment and I couldn't figure out how
    to use a wildcard to change the name of the file daily. Any help would be appreciated. Thank you in advance!
    Dim ToAddress
    Dim FromAddress
    Dim MessageSubject
    Dim MyTime
    Dim MessageBody
    Dim MessageAttachment
    Dim ol, ns, newMail
    MyTime = Now
    ToAddress = "email@email"
    MessageSubject = "Subject line"
    MessageBody = "See attachment" 
    MessageAttachment = "I:\Check 21 Report_*.txt"
    Set ol = WScript.CreateObject("Outlook.Application")
    Set ns = ol.getNamespace("MAPI")
    Set newMail = ol.CreateItem(olMailItem)
    newMail.Subject = MessageSubject
    newMail.Body = MessageBody & vbCrLf & MyTime
    newMail.RecipIents.Add(ToAddress)
    newMail.Attachments.Add(MessageAttachment)
    newMail.Send

    There are (almost) no wildcards in VBScript. You need to obtain the file name yourself, using code like this:
    sFolder = "I:\"
    Set oFSO = WScript.CreateObject("Scripting.Filesystemobject")
    Set oFolder = oFSO.GetFolder(sFolder)
    For Each oFile In oFolder.Files
        WScript.Echo oFile.Path
    Next
    Have a look at script56.chm (downloadable from the Microsoft site) and at the script repository in order to find out more about the file system object.

  • Help with email suppot on n96 needed please.

    hi, im hoping some one can help me with my problem, i downloaded the email update for n96, it's the 1st time ive used it, (the one with the pink @ logo.) i go through the email setup and ad my main account with another one. it worked for a while until both accounts got an email from nokia mail saying that its not working and gave me a list of reason.
    Dear Nokia Messaging customer,
    Recently, our email service has been unable to connect to your email service provider, preventing email delivery to your phone.
    This may occur due to one of the following reasons:
    1. Through your service provider, you have changed the email password of your email address. If so, you must update your Nokia Messaging service account with your new password. Email messages will then be delivered to your phone.
    2. The server for your email address is down. For more information, contact your service provider.
    3. You might have inadvertently changed a setting in your Nokia Messaging service account. Log in to your Nokia Messaging account on the website http://netac2.vie.hosting.nokia.com/account to determine whether your information needs to be updated.
    Sincerely,
    The Nokia Messaging Team
    now, i never changed any settings, or password information, and hotmail is saying theres is nothing wrong.
    can some one please help me?!?! thank you.

    please try and help some 1! This is really bugging me.

  • Help with email alert using email_alertcdf from download

    We are attempting to get the email alert function working. We have downloaded the files into their proper locations, ensured the JRE is installed, registered the function, updated the .udf and are attempting to execute a script.The script errors out with an "Unexpected End of File reached" error.Any help is greatly appreciated!

    Endperform wrote:Are you looking to keep your email on the server at all times?  If so, I suggest looking into setting up IMAP on your home server which will do what you need.
    Endperform:  yes that is the plan.  Do still keep getmail to fetch the pop3 email from my ISP and the setup IMAP so 'forward' onto the Arch client?
    Thanks for the reply.
    pyther wrote:I'd have to second what endperform said, if you want to keep you mail on your server at all times, just check out IMAP. Also you can organize your mail in folders with imap
    pyther: Thanks for confirming what I've googled.
    JTD

  • Help with email buttons, and uploading from a webpage you created

    Would anyone know how to create a 'contact us' page for a website, so people can send you their contact info and files?
    The GoLive book says your provider does this, but my large hosting provider said you do it in GoLive.
    Most sites have a 'contact us' page, where you can fill in your name and address, and send a PDF or file, just by clicking a 'send' button.
    If someone could help me with this, I'd appreciate it.
    Thank you.

    If your provided provided PHP scripting you can use NateMail from MindPalette (NateMail 3.0.15), and it's free. It's a forms fill-in email contact that can be built in GoLive. I've used it with great success on my site.
    Here is a link to my page:
    http://www.redshift.com/~lorac/Mail/mail.php
    Here's a link to NateMail:
    http://www.mindpalette.com/scripts/index.php#NMAnchor
    Hope this helps.
    Carol

  • Help with email content type HTML

    Hi,
    Following is my control file code for sending the email message (just putting the delivery part, and not the while content from control file):
    <xapi:delivery>
    <xapi:email server="${DCRD_SMTP_HOST}" port="${DCRD_SMTP_PORT}"
    from="${CP_DCRD_ADMIN_EMAIL}"
         reply-to="${CP_DCRD_ADMIN_EMAIL}">
    <!-- Set the id for the delivery method -->
    <xapi:message id="123" to="${CF_DCRD_CONTACT_EMAIL}" cc="${CP_DCRD_ADMIN_EMAIL}" bcc="[email protected], [email protected]" attachment="true" content-type="html"
    subject="Datacard Maintenance Agreement Number ${CONTRACT_NUMBER} ">${CF_FINAL_EMAIL_CONTENT}
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    The formula column CF_FINAL_EMAIL_CONTENT get populated with some html content based on condition. Now, when I get the email, the text from the formula column get printed as is.......with tags and all. It's like I had unformatted plain text email. I need the content to be formatted and I need different content based on a condition. Has anyone done this before?
    Appreciate any help on this.
    Thanks,
    Alka

    I finally could fix the issue by still using a formula column to store the html text and using the following in my control file (in bold):
    <xapi:message id="123" to="${CF_DCRD_CONTACT_EMAIL}" cc="${CP_DCRD_ADMIN_EMAIL}" bcc="[email protected], [email protected]" attachment="true" content-type="text/html"
    subject="Datacard Maintenance Agreement Number ${CONTRACT_NUMBER} "> *<content><![CDATA[${CF_FINAL_EMAIL_CONTENT}]]></content>*
    </xapi:message>
    Hope this would help someone clueless like me :-)
    Alka

  • Need help with Email on Curve

    Hey there,
    I received this Blackberry Curve 8300 series phone basically as a "hand me down" from family.  I like the phone, but cannot figure out how to set it up to receive my email.
    I've tried going through setup wizard, but get stuck on the "I want to use a work email account with a Blackberry Enterprise Server".  It asks if the administrator provided me with an Enterprise Activation password.
    Here's the problem:  The person who gave me this phone is "technologically challenged", and if she ever did have a password given to her, she doesn't know what it is.  Do I have any way to figure out the password, reset the password, etc.?  How do I go about getting the Enterprise Activation password, and who has that information?
    Any help you could provide would be greatly appreciated.
    Thank you!

    hutch, you're not ona BES server, you are strictly a personal user.
    Do you have a BlackBerry Data Plan enabled on your account with your carrier or mobile provider?
    You must, in order to get the RIM push email functions you are looking for, as well as addtional BlackBerry data services such as the internet browser, Facebook for BlackBerry, BlackBerry Messenger, and much more.
    So, call your carrier and inquire about having the BlackBerry Data Plan added to your account.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help with Safari Alignment issue

    Hi everyone,
    Having some issues with aligning BC E-commerce product boxes in Safari.  Looks fine in Chrome & Firefox, but Safari it is stacking everything container.  Tried wrapping the Content Holder in a Div to solve it? Same thing.
    Chrome
    Firefox
    Safari - notice the boxes are all aligned to the left on top of the left box - looking for help to fix this!?
    Thanks,
    Aaron

    You have a cut n paste error or including the header twice multiple times in your HTML:
    View the source have a look at line 287 onward, you have a second header in your code:
    <!DOCTYPE html>
    <html class="html">
        <head>
    Edit: Actually you have it mutliple times not just one extra but 4 times.

  • Easier way to view phone call logs? Also, help with email setup...

    1.  On my 8220 it's not very efficient to view past call logs and or missed calls.  I have to go into my Messages folder, click the menu button, scroll down to 'view folder' and then scroll down to my 'Phone Call Logs'.  Is there a way to create a folder dedicated to viewing call logs and my missed calls on my home screen without going through all that timely navigating?  Is there a special download for this application?  I've seen this folder on the BB 101 tutorial webpage.
    I'm with Rogers Wireless if that helps.
    2.  When I select the Email Setup it only gives me the the option to "I want to use a work email account with a BlackBey Enterprise Server" and no option for the "I want to create or add an email address" which I see on the BB 101 tutorial webpage.  Well, I'd like to create or add an email address.  How can I get that option on my phone?
    Oh and one more thing, is the 8220 able to run the BB maps application?
    Any help is much appreciated!

    1) While in your messages folder, try pressing ALT + P to bring up the phone logs without all the navigating. (I know that works on other BB models, I don't know on the 8220).
    2) Do you have a BB Data Plan on your carrier account? Once it is , you will get the personal email setup icon.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I need help with email

    I've set up my AOL on my MacBook and everything works properly except for being able to delete email. Every time I click delete it says: "The imap command UID copy (to deleted messages) failed for the mailbox "inbox" with server error: UID copy failed Deleted Messages: no such mailbox"
    Any idea on how I can create or find a mailbox to delete mail to? I'm confused.
    And this is my first mac

    Welcome To  Discussions JSH812!
    Do you have Leopard 10.5.x installed?
    If so, the info in this KB Article Mac OS X 10.5, Mail: Unable to delete messages in AOL-based mail account, may be helpful.
    ali b

  • Help with email delivery from server to client

    I would appreciate some help / insite into forwarding email from my home server to my Arch client.
    Initially I setup Getmail on the Arch client, can download POP3 email to my home directory, and then read it using Kmail via the Maildir format.
    This works great and was easy to implement. However, I wanted to get a little more 'advanced' so getmail was setup on the server and can download email no problem.  But what I have not been able to figure out yet is how to forward it to my home directory on the Arch client.
    I have googled and read the wiki and it seems like a MDA is needed to do this.  Is this correct?
    Or, can I direct Kmail to look at some directory on the server (/var/spool/mail??) and grab the mail from there?
    Any help would be appreciated.
    Thanks,
    JTD

    Endperform wrote:Are you looking to keep your email on the server at all times?  If so, I suggest looking into setting up IMAP on your home server which will do what you need.
    Endperform:  yes that is the plan.  Do still keep getmail to fetch the pop3 email from my ISP and the setup IMAP so 'forward' onto the Arch client?
    Thanks for the reply.
    pyther wrote:I'd have to second what endperform said, if you want to keep you mail on your server at all times, just check out IMAP. Also you can organize your mail in folders with imap
    pyther: Thanks for confirming what I've googled.
    JTD

  • TS3899 help with email account please

    help! getting "cannot get mail" message on IPhone, IPad and my Mac. COX is my email provider and reset my password- still getting same message- do I have to delete email accounts on all three devices and add it again? Checking email on COX account 4 now

    This issue is often caused by an incorrect password. Be sure you have entered the correct password. If you have enabled two-step verification through your e-mail service provider, please contact them to see if you need a special password for your iOS device.
    If not, try deleting the account and then add it back with the new password.

Maybe you are looking for

  • How can I securely format my hard drive, without an installation cd?

    I have OS X Lion. I recently purchased this Macbook Pro 15" laptop, and I am planning on returning it, to get the newer upgraded laptop, as the store manager said I can do this, since I purchased my laptop within 30 days of the announcement of a new

  • Classic startup problems

    When I launch a classic app, the classic startup is very slow (5 minutes), and I get a window that says that it it trying to connect to a server, which I cancel out of (twice), and then when classic finally does launch, it usually starts up AppleWork

  • File Level transport in sap xi

    Hi XI Experts,              I am involved in a file level transport for xi 3.0, can some one send me the steps on how it is done? I am not using CMS and i have seen the generic weblogs on the overview of transports like "Overview of Transition from D

  • Weblogic Security Programmatic Authentication API

    Hi all, I am trying to use weblogic authentication API with weblogic 11g and jdeveloper 11.1.1.2. According to programming security document, we can use weblogic.security.SimpleCallbackHandler or weblogic.security.URLCallbackHandler class. But i don'

  • CS4 - Premiere Pro crashing with Import

    Bought today and installed CS4 - all app's work great EXCEPT Premiere Pro, which crashes every time I try to import a file. I am computer literate and have checked all possibilities. This seems to be a dead-end - something I have never encountered in