Mail changing fonts and text colour as I type

I am having a problem with the text changing colour and even the font as i type replys. I have checked the defaults and the fonts and colours are set as the defaults and have never been changed. Can anyone help at all its driving me up the wall!

2ManyDogs wrote:Do you have a wireless keyboard or mouse? Anything else you changed recently?
Nothing's changed hardware-wise, I've been experiencing it since a re-install of Arch from the latest install media, both in Openbox and Xfce.
I just found this thread, and I'm not sure if it's related, but it is similar since text that was not copied was pasted.  I've gone ahead and disabled TapButton 2 and 3.  I sure hope this is the solution
If I experience it again I'll post, but in the meantime if anybody has had an issue very similar to this and has a solution other than to disable two and three finger tap, please post it.  Also, if you need config or log files, tell me.
Last edited by Mindstormscreator (2012-08-31 01:29:26)

Similar Messages

  • How do I change font and colors back to default?

    I have changed the font and color of the text through the tools button and the options button and the content tab. I find nothing telling me how to change the font and colors back to default font and colors. Can you advise me? I'm using Windows 7 Home Premium OS. Thanks.

    Hi Brenda19605,
    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a&s=font&r=0&as=s
    The default settings for the font are in this article:
    https://support.mozilla.org/en-US/kb/Some%20text%20shows%20up%20bold%20after%20upgrade
    Unfortunately for the default colors has no good reference. But for text it is black (most lower left) color, background is white (most upper left color). Unvisited links is blue (column 8, row 5) and visited link is purple (column 9, row 5).
    Let me know if you need anymore help!
    Lordfreak

  • Change font and font size in a textedit

    Hi,
    I am using a textedit UI element in read only mode. its getting the value from context attribute. I need to change font and font size ( atleast the later) and make it bold.
    how can this be done ?
    plz help......
    Thanks
    Akash

    Hi Thomas,
    I saw from your response in the post above that you might be able to answer a question I have about the portal theme.
    We are using several textedit elements in our portal, however the font size of text entered in those textedit fields is smaller than the standard global text in the portal. I have tried in vain to find the setting in the portal theme that controls textedit elements. Do you happen to know which one it is exactly?
    Many thanks for any suggestions/help you might have
    Paul.

  • Globally changing Fonts and animations in AE CS3?

    I have the need to globally change the fonts and text animation presets in an AE project that has multiple "sequences", if you will. These comps contain the text I can reuse (and not have to retype) and I was hoping I could select all the comps and change the font, clear animation and start from scratch. These comps all contain text and text animation only. Is there any way to do this? Thansk for any and all help.

    In short: No. Only CS4 has introduced some methods for styling text layer via scripts, in CS3 and before you can only create or delete them or edit the text string, but always with the default font. Even so, I'm not aware of some script that does what you want, so manually changing the project seems the only way.
    Mylenium

  • CAPTCHA background and text colours

    Hi
    A client of mine has complained a few times that the CAPTCHA background colour and text colour are too similar and the alphanumerals cannot be read.
    How can i manipilate text and background colour?
    Here is my code:
    <cfimage action="captcha" height="50" width="180" text="#strCaptcha#" difficulty="low" fonts="verdana,arial,times new roman,courier" fontsize="20">
    thank you
    Delon

    Been having the same issues with a couple of my clients...They are getting fairly irritated just trying to read the CAPTCHA, so I did some digging and came across this company located in Cali..Confident Technologies and they look like they are just getting started but seem to have a pretty good solution..I tried it and was impressed.

  • Font and text handling in iWeb.

    Hello, everyone.
    How are fonts and text handled by iWeb ? I am now working on a website and have chosen to work with Gil Sans as one of my primary fonts.
    Is this font included as default in a standard installation of Windows ? What about OS X ?
    In case I create iWeb pages using this font what will happen when I publish these pages ? Will they be preserved as text ? In this case how will this font be handled by Windows and OS X ? Will the OS's replaced the absent font with another one ? What would the selection of a replacement be based on ?
    Or will iWeb replace the text created in Gil Sans with an image of the text to ensure that the display of the web page follows my intended format ?
    Thank you in advance,
    Joseph

    Here is a list of websafe fonts:
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
    You might want to google 'web safe fonts' and compare other lists to that one just to check.
    1. I think you're talking about ALT tags. You could do this as a workaround but it would still be slow loading, and search engines would index it as images, so your text would appear in Google images for example. You might also want to consider whether anyone might need to copy and paste any of your text at some point, and whether you'd ever need to print pages (they will be more ink-intensive and lower quality).
    2. You can embed fonts in your webpage; however this only works on PCs and Macs running Windows: http://www.sean.co.uk/a/webdesign/embeddingfonts_inwebpages.shtm
    Another way around it is to offer an install of the font (check it's shareware and don't forget to offer both Mac and PC versions) and recommend to your visitors that they install it.
    Also remember that whichever font you use, a visitor may have altered their browser settings to display your text differently anyway.

  • Why I cannot change font  and Color in JFrame title??

    Dear sir:
    I try to change font and Color in JFrame title in code below,
    It display all html code, not expected formatted ones.
    but fail. Looks like no way to do it??
    Can somebody help??
    Thanks
    import java.awt.BorderLayout;
    import java.awt.Toolkit;
    import javax.swing.*;
    public class JFrameTester {
      public static void main(String[] args) {
         String iconPath ="file:C:/eclipse/workspace/Test/images/long.PNG";
         String title = "<html><body bgcolor=\"yellow\">" + "<img src=\""+iconPath+"\">" +
              " <font size=\"6\" face=\"Verdana\" color=\"red\"><b>"+ "New Tester" + "</b></font></html>";
        JFrame f = new JFrame(title);
        f.setIconImage(Toolkit.getDefaultToolkit().getImage("images/123.gif"));
        f.setSize(250, 250);
        f.setLocation(300,200);
        f.getContentPane().add(new BorderLayout().CENTER, new JTextArea(10, 40));
        f.setVisible(true);
    }

    Looks like no way to do it??depends on the L&F you want.
    here's one way
    import java.awt.*;
    import javax.swing.*;
    class JFrameTester {
      public static void main(String[] args) {
        JFrame.setDefaultLookAndFeelDecorated(true);
        UIManager.put("activeCaption", new javax.swing.plaf.ColorUIResource(Color.RED));
        UIManager.put("activeCaptionText", new javax.swing.plaf.ColorUIResource(Color.YELLOW));
        String title = "Hello World";
        JFrame f = new JFrame(title);
        f.getLayeredPane().getComponent(1).setFont(new Font("Tall Paul",Font.ITALIC,24));
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setSize(250, 250);
        f.setLocation(300,200);
        f.getContentPane().add(new BorderLayout().CENTER, new JTextArea(10, 40));
        f.setVisible(true);
    }

  • Changes font and size when cutting and pasting

    Cutting and pasting in a document made with a single font and size results in the moved word changing font and size. Checked all preferences, etc. and can't figure it out. Thanks, Jim

    Hello
    Look at:
    http://discussions.apple.com/thread.jspa?messageID=607239
    Yvan KOENIG (from FRANCE mardi 26 septembre 2006 20:03:27)

  • Can anyone help me change fonts and size on my page? I don't understand the class questions?

    Can anyone help me change fonts and size on my page? I don't understand the class questions? All I want to do is change the font and size of a table or div.
    http://www.allgearinc.com/AG12SSWL-Swift.htm -One problem page

    If you want to change the fonts of the entire page then this code will do the trick:
    body {
        font-size: 16pt;
        color: silver;
         font-family: whatever, goes, here;
    If you want to change the fonts of ALL tables on a page then the code is something like this:
    table {
        font-size: 20pt;
        font-family: "Courier New", Courier, monospace;
        font-style: italic;
        font-weight: bold;
    what exactly do you want to change?  Can you be a bit specific so that Ben or Ken can give you the exact code and tell you about the short-hand method to write the code in one line.
    Have you bought a book on CSS yet?  If not, it is a good idea to get one as a reference.  Eric Meyer writes good books on CSS.

  • E-mail changes to unreadable text when moved to another mailbox folder

    Hi,
    when moving a correct received e-mail to another mailbox folder, the mail and the attachment will change to unreadable text and it looks like the column below.
    On my iPad and iPhone the mail and the attachment is shown correct. If I forward it to my own account again, the mail is also correct shown an my imac27, as long as it resides in the in-box.
    On the other hand, there are lots of mails+attachments with "normal" behavier when moved.
    Any idea about that?
    mackliko
    ------=_NextPart_000_0001_01CCF256.3C7DD310
    Content-Type: multipart/alternative;
              boundary="----=_NextPart_001_0002_01CCF256.3C7DD310"
    ------=_NextPart_001_0002_01CCF256.3C7DD310
    Content-Type: text/plain;
              charset="us-ascii"
    Content-Transfer-Encoding: 7bit
    ------=_NextPart_001_0002_01CCF256.3C7DD310
    Content-Type: text/html;
              charset="us-ascii"
    Content-Transfer-Encoding: quoted-printable
    <html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
    xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
    xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
    xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" =
    xmlns=3D"http://www.w3.org/TR/REC-html40">
    <head>
    <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
    charset=3Dus-ascii">
    <meta name=3DGenerator content=3D"Microsoft Word 12 (filtered medium)">
    <style>
    <!--
    /* Font Definitions */
    @font-face
              {font-family:"Cambria Math";
              panose-1:2 4 5 3 5 4 6 3 2 4;}
    @font-face
              {font-family:Calibri;
              panose-1:2 15 5 2 2 2 4 3 2 4;}
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
              {margin:0cm;
              margin-bottom:.0001pt;
              font-size:11.0pt;
              font-family:"Calibri","sans-serif";}
    a:link, span.MsoHyperlink
              {mso-style-priority:99;
              color:blue;
              text-decoration:underline;}
    a:visited, span.MsoHyperlinkFollowed
              {mso-style-priority:99;
              color:purple;
              text-decoration:underline;}
    span.E-MailFormatvorlage17
              {mso-style-type:personal-compose;
              font-family:"Calibri","sans-serif";
              color:windowtext;}
    .MsoChpDefault
              {mso-style-type:export-only;}
    @page Section1
              {size:612.0pt 792.0pt;
              margin:70.85pt 70.85pt 2.0cm 70.85pt;}
    div.Section1
              {page:Section1;}
    -->
    </style>
    <!--[if gte mso 9]><xml>
    <o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
    </xml><![endif]--><!--[if gte mso 9]><xml>
    <o:shapelayout v:ext=3D"edit">
    <o:idmap v:ext=3D"edit" data=3D"1" />
    </o:shapelayout></xml><![endif]-->
    </head>
    <body lang=3DDE-AT link=3Dblue vlink=3Dpurple>
    <div class="3DSection1">
    <p class="3DMsoNormal">Mfg<o:p></o:p></p>
    <p class="3DMsoNormal">Martin lanzinger<o:p></o:p></p>
    <p class="3DMsoNormal"><o:p> </o:p></p>
    </div>
    </body>
    </html>
    ------=_NextPart_001_0002_01CCF256.3C7DD310--
    ------=_NextPart_000_0001_01CCF256.3C7DD310
    Content-Type: application/pdf;
              name="Test.pdf"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment;
              filename="Test.pdf"

    Please run /cleanviews switch to check the result.
    (Type "Outlook.exe /cleanviews in Windows search bar and press ENTER.)
    Please also create a new Outlook profile to check if the issue still persists. Thanks.
    Tony Chen
    TechNet Community Support

  • Sending  Pages formatted document by apple mail changes font.

    I have an iMac 2.66 GHz, 4 GB RAM and using OS 10.6.2(SL) and iWork '09 & Apple's Mail App.
    A friend prepared a Pages document and sent it to me using Apple's Mail app.. He is using OS 10.5 and iWork '09. He told me that he used the Arial Font and all the Text & Images (using the Layout mode in Pages) looked fine on his computer (iMac). When I received his e-mail and opened his document, I notice that the document did not looked well. The text boxes were running into each other AND his original Arial Font had changed on my Desktop to Helvetica. BTW, I have used Helvetica in MY Pages documents in the past. I requested my friend to send me the same doc in PDF format.and it all came out just fine with proper spacings, etc. He also tried sending "compressing" the file via Finder menu: File>Compress(file name).pages,but results were as bad.
    Can you help explain why the changes?? Thanks, Bob

    I am not saying your friend is deceiving you or not to be trusted, just that +a lot+ passes people's notice. I could quickly check the document but have to go away to Sydney for a week or two and won't be able to get the email.
    Is there a chance this document started on a PC, either as a Word .doc or template, where the Arial MT font was used?
    I'd also check if you have a style "Normal" in the document, that is a dead give away that it came from MsWord.
    I just checked, and you should too, the Arial fonts installed on my Mac which are labeled Arial Regular, Italic, Bold and Bold Italic are in fact all ArialMT © Microsoft. You can get that information in Font Book, select the font and +Show Font Info+ (command i). I can't swear to the origin of my fonts though, a lot gets installed without my knowing, but they look like the Mac OSX fonts.
    If you do find these fonts with Font Book, turn them on and see what happens when you open the document.
    The Arial MT font may also be buried in the styles of the document or in Section templates that you may or may not have used. To clear the styles of the font you can force a new style over the existing ones by creating sample text and go to the Styles Drawer click on the arrow next to the style and go "Redefine Style from Selection".
    Once you have cleared out the document use the clean copy to share with your friend.
    Peter

  • Changing font and background color for all components

    Hi,
    This is my first time writing a GUI, and I'm pretty new to Swing and Java. I just recently switched from C++, and so far Java seems to be doing a nice job =)
    Currently I have a gazilion components (textfields, labels, panels) and I'm wondering if there is a way to change their background/foreground colours without adding in setBackground/setForeground for every single component.
    I've done some researching onto using Look and Feel, but there aren't any current ones that suits my needs. And everyone seems to mention that programming your own is pretty complicated.
    My boss wants a slick white text on black background interface, so you can imagine that he's not very impressed with the current default greyish colours =)
    Thank you for any help!
    Cindy

    Hi Cindy,
    I'm not sure how effective a solution this will be, but you could try:UIManager.put("TextField.background", Color.BLACK); // Default text field background becomes blackThere are many more defaults you'd have to change and could probably achieve it more reliably and simply by creating or editing the properties file that controls the way the look and feel (even if it's the default) is implemented. Take a look at:
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/UIManager.htmlHope this is helpful
    Chris.

  • Change Font and Size of Graph Annotations

    Just learned a cool little trick from Christina Rogers about how to change the font and size of a graph annotation after I left a comment on her blog (if you are unsure how to create a graph annotation, check LabVIEW Help).
    With the Cursor Legend selected, use the Font Dropdown on the toolbar to select the font you want for the annotation. Apparently, annotation and cursor text on the graph inherit the font of the Cursor Legend. If you do not like how the Cursor Legend looks after you have changed the font, you can make it invisible again (I have never shown the cursor legend in final UI products... and I have never used "Hobo Std" in final UI products...).
    a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

    Here are two Ideas you may be interested in if you're looking at this thread:
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Customized-Fonts-for-Graph-Annotation/idi-p/1073784#M4...
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Add-Line-Width-and-Line-Style-to-Cursor-List-Property/... 
    a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

  • Change font in texts

    i was able to change the appearance of the font in my texts with my other blackberry but i got a replacement one and don't remember how to do it..help?

    For device 8530:
    Change font from the location:
    options >>> Screen/keyboard >>> 

  • Changing fonts and layout of Interactive Report

    Can we change the layout and fonts and colors in an INteractive report?
    Can we apply a report template to an interactive report?
    Edited by: SaintMahatma on Feb 23, 2009 1:48 PM

    I did it like this and it worked.
    <html lang="&BROWSER_LANGUAGE." xmlns:htmldb="http://htmldb.oracle.com">
    <head>
    <title>#TITLE#</title>
    <link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_3/theme_3_1.css" type="text/css" />
    #HEAD#
    <STYLE type="text/css">
    .apexir_WORKSHEET_DATA td *{
    background:#ffffff;
    border-top:1px #fff solid;
    border-bottom:1px #ccc solid;
    font-size:11pt;
    padding:3px 9px;
    empty-cells:show!important;
    </STYLE>
    </head>
    <body #ONLOAD#>#FORM_OPEN#
    It's a hard to read the apex_3_1.css because it's all written in one line. So it's a good way to copy the file into an Editor and add additional breaks after each ";"

Maybe you are looking for