No way to stop 'Dash' to also lower the 20px almost line?

With the help of "Withdrawal" in the body of a text of the e-mail always simultaneously reduce the position of the line about 20px? Is it possible to change this - maybe through the configuration editor?

Thank you, in advance!

It seems that the style of integrated dash inserts a paragraph break. Your most likely solution is to use something like https://addons.mozilla.org/en-US/thunderbird/addon/stationery/ and re - define styles to your taste. I'm sorry that I can't offer you a simpler solution.

Tags: Thunderbird

Similar Questions

  • How to add two lines when the second row is not visible, but also gets the first data line too?

    Mr President

    Jdev worm is 12.2.1

    How to add two lines when the second row is not visible, but also gets the first data line too?

    I want to add two lines like below picture, but want the second to remain invisible.

    tworows.png

    I asked this question but my way of asking was wrong, that's why for me once again.

    Concerning

    Try to follow these steps:

    1. in the database table to add the new column "JOIN_COLUMN" and add the new sequence "JOIN_SEQ".

    2. Add this new column in the entity object. (You can add this in entity object by right clicking on the entity object and then select "Synchronize with database" then the new column and press on sync)

    3. in your bookmark create button to create only one line NOT 2 rows.

    4 - Open the object entity--> java--> java class--> on the entity object class generate and Tick tick on the accessors and methods of data manipulation

    5 - Open the generated class to EntityImpl and go to the doDML method and write this code

      protected void doDML(int operation, TransactionEvent e)
      {
        if(operation == DML_INSERT)
        {
          SequenceImpl seq = new SequenceImpl("JOIN_SEQ", getDBTransaction());
          oracle.jbo.domain.Number seqValue = seq.getSequenceNumber();
          setJoinColumn(seqValue);
          insertSecondRowInDatabase(getAttribute1(), getAttribute2(), getAttribute3(), getJoinColumn());
        }
    
        if(operation == DML_UPDATE)
        {
          updateSecondRowInDatabase(getAttribute1(), getAttribute2(), getAttribute3(), getJoinColumn());
        }
    
        super.doDML(operation, e);
      }
    
      private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object joinColumn)
      {
        PreparedStatement stat = null;
        try
        {
          String sql = "Insert into table_name (COLUMN_1,COLUMN_2,COLUMN_3,JOIN_COLUMN, HIDDEN_COLUMN) values ('" + value1 + "','" + value2 + "','" + value3 + "','" + joinColumn + "', 1)";
          stat = getDBTransaction().createPreparedStatement(sql, 1);
          stat.executeUpdate();
        }
        catch (Exception e)
        {
          e.printStackTrace();
        }
        finally
        {
          try
          {
            stat.close();
          }
          catch (Exception e)
          {
            e.printStackTrace();
          }
        }
      }
    
      private void updateSecondRowInDatabase(Object value1, Object value2, Object value3, Object joinColumn)
      {
        PreparedStatement stat = null;
        try
        {
          String sql = "update table_name set column_1='" + value1 + "', column_2='" + value2 + "', column_3='" + value3 + "' where JOIN_COLUMN='" + joinColumn + "'";
          stat = getDBTransaction().createPreparedStatement(sql, 1);
          stat.executeUpdate();
        }
        catch (Exception e)
        {
          e.printStackTrace();
        }
        finally
        {
          try
          {
            stat.close();
          }
          catch (Exception e)
          {
            e.printStackTrace();
          }
        }
      }
    
  • Built in WEBCAM stopped working. Also get the CODE of ERROR 8OOBO100 with Windows Update

    have bee away on vacation for 5 weeks came back and cannot get my webcam integrated in Dungeon is said to turn on the camera, working also get erroe code 800B 010 for a update

    Hello

    for integrated webcam problems looking for the latest drivers and software from the manufacturer of your laptop

    or ask in their forums

    When you try to install the updates on the Windows Update Web site or the Microsoft Update Web site, you may receive the following error message:

    0x800b0100

    http://support.Microsoft.com/kb/956702

    or repost in the correct windows update forum

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-windows_update?page=1&tab=all

  • Since I reformatted my computer it crashes randomly up / freezes, the only way to stop it is to hold the ESCAPE key.

    It refreezes upward and I can't do anything. So I have the esc key until you hear a beep. It will be fine until he decided to do it again. I have a HP G60 501 - nr

    Hello

    1. when exactly the computer freezes?

    2. you receive an error message or error code?

    I suggest you go through the methods mentioned:

    Method 1:

    Windows 7 hangs or freezes

    http://support.Microsoft.com/kb/2681286#GM5

    Warning: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

    Method 2:

    Perform the disk check and check.

    http://Windows.Microsoft.com/en-us/Windows7/check-a-drive-for-errors

    Important: Running chkdsk on the drive if bad sectors are found on the disk hard when chkdsk attempts to repair this area if all available on which data may be lost

    I hope that the above information is useful!

  • Divide the extracted almost lines also and assign a group

    Hi all

    I have the table:

    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0-
    SQL> select * from upd;
    
             A B
    ---------- ----------
             1 xxxx
             2 xxxx
             3 ddd
             4 d
             5 t
    Suppose I have only 5 groups and each group can have only 2 rows, example:

    assign the 2 rows to G1, G2 and G3 2 ranks, still something like
          A B            Group
    ---------- ---------- 
             1 xxxx       G1
             2 xxxx       G1
             3 ddd        G2
             4 d            G2
             5 t            G3
    Help, please

    Published by: user8650395 on November 8, 2009 01:13

    Hello

    Analytical NTILE function could do that:

    SQL> with upd as (  -- generating sample data:
      2  select 1 a, 'xxxx' b from dual union all
      3  select 2, 'xxxx' from dual union all
      4  select 3, 'ddd' from dual union all
      5  select 4, 'd' from dual union all
      6  select 5, 't' from dual
      7  )
      8  --
      9  -- actual query starts here:
     10  --
     11  select a
     12  ,      b
     13  ,      'G'||ntile(3) over (order by a) grp
     14  ,      ntile(3) over (order by a) ntile_result
     15  from   upd;
    
             A B    GRP                                       NTILE_RESULT
    ---------- ---- ----------------------------------------- ------------
             1 xxxx G1                                                   1
             2 xxxx G1                                                   1
             3 ddd  G2                                                   2
             4 d    G2                                                   2
             5 t    G3                                                   3
    

    See: http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions101.htm#SQLRF00680

  • (MacBook Pro (15-inch, late 2011, 2.2 GHz Intel Core i7, computer laptop my MacPro started yesterday to enter contimuous dashes or hyphens in any available window (search engines, software, for example.))) MS word .docx) the only way to stop it is to rest

    MacBook Pro (15-inch, late 2011, 2.2 GHz Intel Core i7, 4 GB memory at 1333 MHz, DDR3).  10.11.3 OSX

    Yesterday, the machine started to insert continous dashes/hyphens into any available window (e.g. window search engine, for example open source software, MS Word, docx). Is the only way to stop this as soon as it starts to reboot, that usually stop at least temporarily.  As soon as he starts this, I tried to close all the applications open without effect.

    -Try to reset memory NVRAM/PRAM and SMC

    MacIntel: Reset of the controller (SMC) system management

    Subject of memory NVRAM and PRAM

    -Try to start safe mode

    OS x: what is Safe Boot, Safe Mode?

    -Start to recovery and repair the startup disk

    OS X: on OS X Recovery - Apple Support

    If inserting the characters in recovery, which indicates a hardware problem.

    have you spilled something on the Ko?

    If your battery is replaceable by the user take it out and look for a swollen battery

    -If it is repairable reinstall the OSX

    How to reinstall OS X on your Mac - Apple Support

    -If you do not have a backup using disk utility to restore the internal drive to an external drive, so that you can try to recover the data.

    Format the boot disk and then do a fresh install of Mac OS x

    This is the Office Mac Pro forum. I asked that your post be moved to the MacBook Pro laptop forum.

  • My update seems to be stuck to install. Any way to stop it and try again?

    My update seems to be stuck to install. Any way to stop it and try again?

    MY update is also at a standstill.  I turned the computer and disable several times, but nothing works.  Tried to start in "safe mode", but which does not work either. Anyone have another suggestion?

    IMac, mid 2011

  • Need a way to stop loading while loading a page, some are too slow, used to have this option?

    I just upgraded to the latest version of Firefox and noticed that there doesn't seem to be a way to stop loading completely while he is in the process of loading a page. Older versions had this feature and I use it often. One site in particular that I deal with on a daily basis, has tons of advertising which can sometimes take forever to load, while making my every move unnecessary. I found that by stopping the entered page EQUIPPED does not affect the parts of the page that I had to do what I had to do, in other words, all the information that I needed the list of my articles were there long before all responsible ads. So rather than wait a minute or two, while the ads all charges, I could click on 'stop' and then do my work. Maybe I'm just missing where this feature is? I should mention that I have really problems to this place but I use it every day. For any help or suggestion would be greatly appreciated. Thank you for your time:
    Denny

    I suggest an anti-ad like Adblock Edge addon

  • Is there a way to stop the countdown rehearsal before she goes off without open the alarm app and turning works?

    Is there a way to stop the countdown rehearsal before she goes off without open the alarm app and turning works? Basically, if I'm ready to get up and there are 4 minutes remaining on the countdown of repetition which is the fastest way to 'Cancel' the snooze and alarm?

    There isn't a way, I discovered that allows me to do without invoking the alarm and the alarm clearing application

  • I'm using firefox 5.0 & I use a master password. Whenever I open firefox, it asks the password. It happened not in previous versions. Is there a way to stop popping up everytime, rather than turn off the password

    I'm using firefox 5.0 & I use a master password. Whenever I open firefox, it asks the password. It didn't happen in the previous versions of firefox. I don't want to disable my master password. Is there a way to stop what is happening each time? Is this a bug in the new version.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Is there a way to stop the "free songs" Apple throwing up in your library?

    Brief description:

    I don't want songs added to my library or a list of "bought songs" unless I personally put there.

    Long description:

    For a period of time (at least 4 months) decent, my iPad and iPhone absolutely refuse to play the last thing I listened to when I start my vehicle with my iPad at hand. It is usually Audible, but sometimes his podcasts (podcast app Apple) or music. What it does, is blowing some of the garbage on my list of "bought" without asking me even. Not my library, or something already on my iPad, but something to download. As an adult with the musical preferences well developed and understood, I know what I like and I really know what I hate. And I hate a minimum of 90% of the waste that they throw in my library.

    I found the option in the application to do 'all' not on my device inaccessible, but this is only a partial solution. Of course, it gets rid of 50 songs that apple has sprayed all over my face, but it makes my other inaccessible 10 000. I go through the hassle to delete songs from my shopping list, but there is a never ending stream that keeps have emptied some toilet somewhere and ends up on top of my devices.

    Is there a method to prevent the undesirable elements to be injected in MY music library?

    On a side note, yes I've tried everything from several Web sites and forums for my devices play the last thing they were playing just 2 hours ago. Nothing has worked. And I'm not ready to whipe just my devices for this particular nuisance. If I can stop the garbage play, I'll be happy with others.

    Thank you for your constructive comments!

    Respectfully,.

    N

    Is there a way to stop the "free songs" Apple throwing up in your library?

    Because it doesn't, there is nothing to stop.

    Summary: I don't want songs added to my library or a list of "bought songs" unless I personally put there.

    Long description: For a period of time (at least 4 months) decent, my iPad and iPhone absolutely refuse to play the last thing I listened to when I start my vehicle with my iPad at hand.

    ???
    ' Your 'brief description' and the long description ' does not relate in any way at all.

    The shopping list is what you bought (or free) in iTunes.

    The elements go after buy you them. It is the only way to add. They maybe o may not be on your computer, depending on whether you downloaded them or not.

  • When I click on a link, multiple (and by multiple, I mean a ton) virgins of open tabs. The only way to stop several blank tabs opening must out firefox is completely closed. Do I have a virus or should I change my settings?

    If I click on something to open in a new tab or click on the email from someone open Outlook, instead, a group of empty tabs open. I'm fine with a few empty tabs, but they keep opening. The only way to stop the opening tabs is to close entirely out of firefox. When I try to reopen firefox, blank tabs are again starting to reopen. You can not close out of them pretty quickly because they keep opening. To not open the empty tabs, you must restart firefox again.

    What is a virus or something wrong with my firefox settings?

    Firefox includes options of how to manage the different types of content in your case that mailto links are probably set to "Use Firefox". For more information on how to solve it see Firefox opens several times empty tabs or windows after clicking on a link, especially the section "change the action for a content type.

  • What is the right way to stop an external hard drive please?

    What is the right way to stop an external hard drive please?

    Take it down to disk utility

  • Any way to stop the shuffle mode in iTunes from the iPhone 5?

    Any way to stop the shuffle mode in iTunes from the iPhone 5?

    If you listen to a single artist, or whatever song you can listen, bring this song to full screen, so you can see all the controls. At the bottom of the page, to the left side, you will see two icons that contain arrows. The first has the crossed arrows, and the second shows their type of verse in a circle. If you press them, then get highlighted, which means they are on. Shuffle is the first left, and then repeat is the second. Tap it to make sure it is off (not highlight).

  • Photo constantly order of photos in a slideshow changes no matter how many times the movements of the user the photo back to the good look at an order. Example: Bathroom Plans eventually grouped with pictures of kitchen! I have found no way to stop this o

    Apple Photo 1.3 serious problems - how can I SOLVE all these problems?

    (1) breaks down without rhyme or reason no matter where I am in the workflow.

    (2) pictures will not be Shut Down Every Time, even after several days of waiting.

    (3) aPhoto frequently badly chooses picture in the EDIT picture option, I get a picture different than the one I clicked on which is on a 100 pictures in a row.

    (4) picture constantly order of photos in a slideshow changes no matter how many times the movements of the end user the photo back to the good look at an order. Example: Bathroom Plans eventually grouped with pictures of kitchen! I have found no way to stop this weird behavior! Is there a way to stop this? If I drag the photo again some 7 additional photos in the slide show, after a minute or less, he appears again to where it was it not. !@#$%$#

    (5) If you make any CHANGES to a photo, it often changes the appearance of your complete slideshow of this picture with impatience. So you lose all this not work fix your configuration of the slide show. Even changing the order of photos once more that I had put back where they should be. !@#$$#@

    (6) photo identifies often shades of lamps and long door handles as the faces of the people.

    (7) photo made bad decisions when it comes to brightness, contrast and colors effortlessly around other than to use other software, where as with iPhoto there was a lot of workarounds. I could continue, but will save one who might be reading of this.

    I am up to date on all updates for my Mac. If anyone have REAL answers so please spilling the beans, but according to me, it's the only truth is that Apple has rolled out a product inferrer to replace an exceptional product, called iPhoto, which does not work on my new iMac computer 5K of 27 ".   If I knew what I would have chosen another computer that I use iPhoto to prepare more of fifty to sixty thousand photos in a given year and I use iPhoto to make hundreds of slideshows from it.  Are there plugins for Photo 1.3? I ask because I see where there could be Add-ons, but I can't find.

    Apple has taken a serious decision by turning his back to iPhoto and tens of millions of loyal users.

    Thanks in advance to anyone brave enough to tackle this job.

    James

    First, back up your library of Photos and hold down the command and option keys while launching Photos - repair your database - you have a corrupted database

    LN

Maybe you are looking for

  • How to disable on Satellite Pro 6100 accupoint?

    Hello My mouse stick (accupoint) suffers from problems that make the needle to go side by side and it is (and even more boring descend to the bottom of the screen and then it even if you use another mouse). How can I disable it? Note that I'm under W

  • 6730 b

    Here at this level a bit if possible, anyone know what I can install the fastest processor please

  • G7 - 2250ev recovery Pavilion WIN 8 record

    Hello guys,. I'm new to the forum and I hope that you will be able to help me. I bought this laptop there is 10months and he came with WIN8 installed already. I uninistalled WIN, HD formatted and installed windows 8 again, so I have a new copy of WIN

  • How can I stop apps to update automatically

    I want to be able to choose what applications I allow to update, how do I do this?

  • loss of partition when adding a new partition on the hard drive

    Under XP SP3, I have connected a HDD backup (1, 5 to) where there was a single logical partition, split into two units of 500 GB each. They were regularly mounted and functional, with their assigned letter (E and F). I decided to add and create a las