How do I remove "lips" from my email header when I send an email?

Everytime I send an email through Mail, a pair of lips appears in the header bar. Can't work out how they got there and can't work out how to get rid of them. Anyone got any suggestions?

There are no lips in the email, so don't think that others are seeing it.
All that's happening is that Mail.app is looking in your address book for the address of the sender. If it finds a record it pulls that person's profile picture and displays it in the header.
So it's only something you're seeing - no one else is seeing it (unless they have the lips picture set as your profile picture in their address book ).
If you want to change the picture, just use Address Book to assign a different picture to your address book entry.

Similar Messages

  • How can I remove computers from my itunes account when I no longer have the computers?

    How can I remove computers from my itunes account when I no longer have the computers?

    De-authorise all, then authorise the one you still have.

  • How can I remove bold from my email letter?

    I was writing an email and the text came out in BOLD. How can I get back to normal Times Roman text?

    Select the text with your mouse and click on the fat 'A'.
    you have, in order
    colour selector - two overlapping rectangles
    <small>A</small> - reduce font size
    <big>A</big> - enlarge font size
    '''A''' - bold
    ''A'' - italics
    <u>A</u> - underlining
    <img src="https://support.cdn.mozilla.net/media/uploads/images/2015-03-12-10-27-10-dcc08b.png">
    If there is a mix of bold and regular styles in the selected text, you may need to click ''twice'' to cycle from "part bold" through "all bold" to "regular". Same goes for the other styles on offer.
    You can also get at these styles, and more, via the menu under '''Format'''.
    If you can't see this formatting toolbar, or the menu itself, hold down the <alt> key and press V (for View) and select the required Toolbar options.

  • How do I remove whitespace from a template header

    I am trying to work myself thru understanding html coding by using a dreamweaver template and creating a page for my company. I have used dreamweaver before CC, however I am trying to understand the new changes.
    I ran into a problem I am hoping to get help with.
    I tried swapping out a placeholder logo on the template with my own logo. I seem to have a bit of white space at the bottom of the logo when I see it in live view or a browser. How can I get rid of it. I tried combinations of 0 margins and changing padding, but it seems I'm just whistling in the dark. Here is the code:
    The CSS associated with this page is here:
    @charset "UTF-8"; body {   font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;   background-color: #42413C;   margin: 0;   padding: 0;   color: #000; } /* ~~ Element/tag selectors ~~ */ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */   padding: 0;   margin: 0; } h1, h2, h3, h4, h5, h6, p {   margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */   padding-right: 15px;   padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */ } a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */   border: none; } /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */ a:link {   color: #42413C;   text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */ } a:visited {   color: #6E6C64;   text-decoration: underline; } a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */   text-decoration: none; } /* ~~ This fixed width container surrounds all other blocks ~~ */ .container {   width: 960px;   background-color: #FFFFFF;   margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */ } /* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */ header {   background-color: #A36BE8; } /* ~~ These are the columns for the layout. ~~ 1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design. 2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin. 3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document. 4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source. */ .sidebar1 {   float: right;   width: 180px;   background-color: #C5C2B8;   padding-bottom: 10px; } .content {   padding: 10px 0;   width: 780px;   float: right; } /* ~~ This grouped selector gives the lists in the .content area space ~~ */ .content ul, .content ol {   padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */ } /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */ nav ul{   list-style: none; /* this removes the list marker */   border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */   margin-bottom: 15px; /* this creates the space between the navigation on the content below */ } nav li {   border-bottom: 1px solid #666; /* this creates the button separation */ } nav a, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */   padding: 5px 5px 5px 15px;   display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */   width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */   text-decoration: none;   background-color: #15EE00; } nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */   background-color: #ADB96E;   color: #FFF; } /* ~~ The footer ~~ */ footer {   padding: 10px 0;   background-color: #CCC49F;   position: relative;/* this gives IE6 hasLayout to properly clear */   clear: both; /* this clear property forces the .container to understand where the columns end and contain them */ } /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */ header, section, footer, aside, article, figure {   display: block; } 
    Thank you for your help!

    Try this -
    <img src="assets/jpgs/Prodigy Logo Large 2014.jpg" width="180" height="180" alt="" style="display:block;">
    What you are seeing as whitespace is the space reserved for glyph descenders on any element that is rendered within a text box (i.e., an inline element). By making the image "display:block" you eliminate that space because a block element doesn't have descenders. If that works to your satisfaction then you can give the logo an id, and create a CSS selector containing that block style.

  • How do you remove devices from the device list when setting up 2-step verification for your apple id?

    When setting up 2-step verification for my Apple ID, I get a list of devices to verify.  My list has my old iPhone 4 and my old iPad, which I don't have either of anymore.  Is there a way to remove these devices from the list?  Plus, both iPads that are listed don't give any indication of which one is my current iPad and which is my old iPad, so I'm not sure which one to verify.  What should I do there.

    For reference, I figured out how to identify which iPad was which so I could verify my iPad.  I went into the settings on my new iPad and changed the device name, started a iCloud backup (not sure if this was necessary but I wanted to make sure the device name change persited to the cloud) and then was able to see the new name on the device screen for 2-step verification.  Hopefully this helps someone if they have a similar problem.  I still am not sure how to remove old devices from the list.

  • How can I remove photos from iPhone...when I synced to another computer, it loaded up a ton a pictures from the laptop that I did not want on my phone

    Help!  I have 4 different computers that I plug my iPhone 4 into from time to time.  I just synced it with a laptop that I haven't plugged into for a long while, and it overloaded my phone with a ton of pictures from the computer that I did not want or need on my phone.  When I went to PHOTOS on my iTunes, and checked "sync checked folders only", it says it will replace the photos on my phone.  I'm not sure this is what I want...I don't want to lose the photos on my phone.  I have over 3000 on there!

    You can sync photos and itunes content with one and only one computer at a time.  When you sync to another, it will erase the current content and  replace with content from the new computer.

  • How do I remove them from my itunes account as authorized accounts for my new macbook iphone and ipad to use? I CANNOT access them can i call you?  also if i have an old itunes account on another email

    help 4 of my authorized computers crashed or are gone how do I remove them from my itunes account as authorized accounts for my new macbook iphone and ipad to use? I CANNOT access them can i call you?
    also if i have an old itunes account on another email can i transfer those songs i still have access to both emails?
    thank you

    De-authorise all, then authorise the one you still have.

  • I have an iphone4. every time i turn it on i get an old I.D. and a message saying, "Apple password " then my email address  and asks for the password. I have a different account that itunes on my computer recognizes.  How do i remove this from my phone?

    i have an iphone4. every time i turn it on i get an old I.D. and a message saying, "Apple password " then my email address  and asks for the password. I have a different account that itunes on my computer recognizes.  How do i remove this from my phone?

    to remove that account.
    go to settings > iTunes & App Stores > click on that apple ID then sign out.

  • How can I remove icloud from my iphone as I don't want my whole mailbox on it?

    Is it possible to only receive email without having my whole mailbox downloaded?  If not, how do I remove icloud from my devices?

    Create a new ID for yourself.
    Of course that will have none of your items purchase in the old ID.
    Once you have an ID then log into that ID on the iPhone.
    Allan

  • How do you remove recipients from the To list?

    Say you want to send an email to multiple recipients. You add a few recipients to the To list but then change your mind about including one of them. How do you remove one from the list? So far the only way I can see is go cancel the whole message and start again.

    Touch the persons name you wish to remove. It will highlight in blue. Then hit the destructive backspace (delete) key on the keyboard.

  • How do I remove MacVx from my macbook pro

    how do I remove MacVx from my computer, as of yesterday I am getting ads and pop ups. Please help

    The Safe Mac » Adware Removal Guide
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
      Mac OS X Snow Leopard and malware detection
      OS X Lion- Protect your Mac from malware
      OS X Mountain Lion- Protect your Mac from malware
      OS X Mavericks- Protect your Mac from malware
      About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using ClamXAV. (Thank you to Thomas Reed for this recommendation.)
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

  • How to I remove the 'panel' underneath the Header list, and above the mail Preview pane. Contains 'from' 'subject' 'reply' buttons to name a few. Takes up too much space.

    How do I remove the 'panel' underneath the Header list, and above the email Preview Pane. Contains 'from', 'subject', 'to', 'reply', 'forward' buttons to name a few. Takes up space.
    == This happened ==
    Every time Firefox opened

    setSize (600, 200);orpack ();Kind regards,
      Levi
    PS:
        int i;
    parses to
    int i;
    , but
    [code]    int i;[code[i]]
    parses to
        int i;

  • How do I extract text from an email?

    Hello!
    I am in the process of trying to automate orders from my website. How do I extract text from an email and paste it into specific cells in an Excel spreadsheet using Automator?
    Many thanks,
    Toby Bateson

    If you select the message on the Inbox list, or open the message, you can then go to the Message menu of Mail and select Remove Attachments.
    Bob N.
    Mac Mini 1.5 GHz; iBook 900 mHz; iPod 20 GB   Mac OS X (10.4.7)  

  • HT2577 How do I remove RDC from my mac knowing that my lab programmer has accessed my mac?

    How do I remove RDC from my Mac knowing that the lab programmer has accessed my MacBook Pro from their PC and has been accessing my Mac for several months and downloading my personal files and emails to view?

    1.  You cannot download files with RDC.
    2.  RDC is a Microsoft product, and not related to Apple Remote Desktop..the focus of this forum
    3.  Per #1..clarify what exactly you're talking about.

  • HT1390 How can I remove rentals from my ipad mini?  I have asked I tunes and nothing works.  They sent me here

    How can I remove rentals from my ipad mini??  I have asked the itunes store and they cannot help.  They will not dissappear and I can`t load anymore. And one of them is just a grey box...

    I'd defiantly try a factory reset first to see how things look afterwards.
    Its safe to say IOS8 is buggy for me and I'm sure Apple will fix many of the issues soon. The main problems I have experienced to date on a factory reset iPad Mini are as follows:
    General system slow down.
    Safari is very slow to render web pages, this could be WIFI related.
    The keyboard seems slow to respond especially within Safari.
    I opened a new email earlier this morning and it caused the iPad to auto reboot. Thats a first for me on an Apple device.
    The ability to make / receive a call on your iPad always seems to fail for me. My iPad will ring when a call is received I will answer but it will immediately fail to connect. The same happens on outgoing calls.
    Battery life on first impressions seems to have suffered since the upgrade.
    Role on IOS 8.0.1...

Maybe you are looking for

  • Insert into Blobs

    I need to export contents from a table with blob in our local environment and upload this data in client environment. Can I use a script to do this? How?

  • How do I save and convert Email docs to PDF?

    I Just purchased a new  IPad Air. I downloaded adobe redder. I received an email formatted in wind at but, I am unable to  open and convert to PDF..  Can someone help?

  • Imac c2d 2006 wont start up!

    Hey everyone i went to turn on my iMac today and nothing happens, i disconnected everthing and the same thing, nothing, Although the only sign of anything was when i pushed the pwoer button on the portable USB hard drive light blinks, but nothing els

  • Hebrew problem when saving reports

    Hi, There are two users in the same department who have the ability to save reports. The reports are saved in Plus and are in Hebrew. One of them has no problem while the other has the problem whereby the Hebrew in the parameters and titles are all u

  • How to delete  Plugins files in Library

    Hello guys. I am using AU plugins called Aalto .I saved files. That makes Logic keep crashing. So I wanna deleted the files I saved. I try to find a folder to removed it but I cound not find it .And try reinstall plugins and loading again but still t