Spacing of the paragraphs in ordered lists

I am trying to increase the spacing of the paragraphs in ordered lists. I looked around, searching Google and found various suggestions, but none seemed to work. Also, I looked through these forums but can't find anything, maybe because I didn't know how to Word the question.

Here is the site: www.ourhealthcarecrisis.com

How can as a question I put a box around a specific text highlighted in a paragraph? I know how to change the color of the text itself, but can not find a way to put a small box around a few words.

I was up pretty late last night, so maybe my brain is a bit fuzzy.

Thank you.

Add space below

  • in the sorted list add the below to your css:

    . Buffer1 li, .buffer2 li {}

    padding-bottom: 15px;

    }

    Hightlight the text to paragraph - use a tag:

    It is aspecific textin a paragraph

    Then use this css:

    span {}

    padding: 4px;

    background-color: #CF6;

    display: inline-block;

    }

  • Tags: Dreamweaver

    Similar Questions

    • Huge creation of spacing of the paragraphs in the Thunderbird received emails

      Hello

      Emails suddenly began to rise with the huge paragraphs spacing (the equivalent of several lines of height). It is in both the screen display and the text quoted in the replies. It happened with all the emails of all shippers of all dates, which were viewing with normal paragraph spacing before something happened. Can someone help with the adjustment to fix?

      (A program of dictation, Dragon Naturally Speaking, is the suspect. Strikes dictated inadvertently create absolute chaos in Thunderbird. Any help to stop this from happening would be appreciated too!)

      I entirely agree with you on the troubled Dragon. I only hope that attitude will not spread to other software. Have a dictation program or disable did not affect anything - I don't expect not.

      Fortunately, I had saved with Mozbackup Thunderbird. I've restored according to the attachment. It worked. Then of course tweaks in TB had been changed.

      For the record, I asked on what parameter had been changed and how to change. The same question applies to e-mails that are indented of quoted text, I've got quoteandcompose Manager which removes lines and > s, but that doesn't seem to dash address.

    • spacing of the paragraphs is lost in the epub export

      When I export my file InD to an epub, all paragraphs are crushed together, without spaces between.  I tried to add styles to paragraph with 'space before' and 'after' but nothing works.  Adding extra line breaks or returns does not help, either.  There is no spacing between paragraphs in the epub file.

      Help!

      Space before and after should work. Can you tell us what version of Indesign are you use and your operating system. If you can share a sample showing the problem we can take a loot at home. You can use Dropbox or similar and post the link here.

    • Reset the paragraph Style - how to change?

      I use a file that has been designed with paragraph for English styles, but I do a layout in Japanese. My problem is when I try to justify the sentences in the text, the copy does not extend to the end of the text box. I want to make some text upwards or downwards and it does not move the cursor and unexpected text moves down or up to the next or previous line. I can't control it. I guess it's an implementation of rule and I wonder how to change. Thank you.

      In addition to what Nini said, there are two ways to compose text in ID, the composer of the paragraph, which looks at the entire paragraph and allows you to adjust line breaks to get the best balance (which can result in changes as you type) and the composer of the only line which resembles the current line. The paragraph composer is the value by default and for justified text, at least in the Roman languages, tends to give more uniform spacing around the paragraph, but you sacrifice control over line breaks. Adding nonbreaking spaces, or selection of short pieces of text and adding no. Break may force the ID to make a difference for you. No no not the Japanese version, I don't know what effect it might have, but you might want to take a look at changing the composer as well as Lithuanian.

    • Order of nets of paragraph and the paragraph shading

      Hey everybody,

      I have a question about paragraph shading and paragraph nets. Or more precisely their order to another.

      Next problem:

      We use the paragraph Shading, rule of the paragraph above and rule in paragraph below in a single line.

      What we don't know: how is the order of these three elements? Sometimes two paragraph nets are above the paragraph shading. And sometimes, the paragraph rule below is under the paragraph shading (see below).

      Does anyone know how to change the order of these items?

      Bildschirmfoto 2016-05-17 um 13.31.10.jpg

      Red line: rule of the above paragraph

      Green line: rule in paragraph below

      See the following screen capture below where I stacked three paragraphs with different colors for shading of paragraph.

      As you can see, the paragraph shading can hide the rule below (or even the rule above, if the offset is not big enough) of the previous paragraph.

      Hope, that helps.

      Uwe

    • How to delete, modify or rename/available/imported/defined existing chips and lists numbering in the paragraph style?

      How to rename, delete or change lists in the chips section and numbering in the paragraph Style?

      Screen Shot 2015-05-02 at 13.40.00.png

      Open you select paragraph from the option panel (icon at the top right corner) sets the list (below). Or change the selected list bullet in the bullets & numbering

    • divide a string in order to get the level of separate list.

      Hello

      I want to divide a string in order to get the level of separate list to connect this with a category table.
      The size of my list is dynamic and for this reason, I am unable to find a way to do it!

      This is an example of what I need to do:
      Consider the following list:
      Category                Category_ID
      Age                     1
      Less than 3 months      1.1
      Less than 9 months      1.2
      Less than 1 year        1.3
      Risk                    2
      Danger                  2.1
      High                    2.1.1
      medium                  2.1.2
      low                     2.1.3
      If I have a row that has category_id "2.1.3" I want to present values as:
      "Risk.Danger.Low"
      If I have a row that has category_id "1.1" I want to present values as:
      "Age.Less than 3 months"
      No clue as to what I should look for to achieve this?
      This will serve to produce a report. This report contains a few lines of a thousand and the categories will be around 100.


      Thank you
      Ricardo

      Hello

      I think this is a job for sys_connect_by_path...

      with p as
      (   select 'Age'             descr  ,'1' cat from dual union all
         select 'Less than 3 months'      ,'1.1' cat from dual UNION ALL
         select 'Less than 9 months'      ,'1.2' cat from dual union all
         select 'Less than 1 year'        ,'1.3' cat from dual union all
         select 'Risk'                    ,'2' cat from dual union all
         select 'Danger'                  ,'2.1' cat from dual union all
         select 'High'                    ,'2.1.1' cat from dual union all
         select 'medium'                  ,'2.1.2' cat from dual union all
         select 'low'                     ,'2.1.3' cat from dual
      )
      SELECT
          cat,
          LTRIM(SYS_CONNECT_BY_PATH(descr,'.'),'.') route
      FROM
          (
              SELECT
                  descr,
                  cat,
                  SUBSTR(cat,1,INSTR(cat,'.',-1)-1) parent
              FROM
                  p
          )
      START WITH
          parent IS NULL
      CONNECT BY
          PRIOR cat = parent
      /
      SQL> with p as
        2  (   select 'Age'             descr  ,'1' cat from dual union all
        3     select 'Less than 3 months'      ,'1.1' cat from dual UNION ALL
        4     select 'Less than 9 months'      ,'1.2' cat from dual union all
        5     select 'Less than 1 year'        ,'1.3' cat from dual union all
        6     select 'Risk'                    ,'2' cat from dual union all
        7     select 'Danger'                  ,'2.1' cat from dual union all
        8     select 'High'                    ,'2.1.1' cat from dual union all
        9     select 'medium'                  ,'2.1.2' cat from dual union all
       10     select 'low'                     ,'2.1.3' cat from dual
       11  )
       12  SELECT
       13      cat,
       14      LTRIM(SYS_CONNECT_BY_PATH(descr,'.'),'.') route
       15  FROM
       16      (
       17          SELECT
       18              descr,
       19              cat,
       20              SUBSTR(cat,1,INSTR(cat,'.',-1)-1) parent
       21          FROM
       22              p
       23      )
       24  START WITH
       25      parent IS NULL
       26  CONNECT BY
       27      PRIOR cat = parent
       28  /
      
      CAT   ROUTE
      ----- ------------------------------
      1     Age
      1.1   Age.Less than 3 months
      1.2   Age.Less than 9 months
      1.3   Age.Less than 1 year
      2     Risk
      2.1   Risk.Danger
      2.1.1 Risk.Danger.High
      2.1.2 Risk.Danger.medium
      2.1.3 Risk.Danger.low
      

      HTH

      David

      Published by: Bravid on Sep 2, 2011 14:50

    • [JS] [CS5] Possibility of change 'In the paragraph spacing limit' with a Script

      Hello

      at the moment I'm writing a simple script that formats text. For this layout, I need the vertical Justification "Justify" with a "paragraph spacing limit", but I can't find anything useful.

      Does anyone know how to set the limit to a specific value?

      Thanks in advance, Statixx

      Here is my Script not yet finished

      Edit: edited, script had some big errors

      inDesign #target

      myDocument var = app.activeDocument;

      mySelection var = myDocument.selection [0];

      var myParagraphLength = app.selection [0].paragraphs.length;

      var myParagraph = app.selection [0] .paragraphs;

      var myTest

      mySelection.visibleBounds = [0,0,30,90];

      mySelection.textFramePreferences.insetSpacing = [3,3,1.5,3];

      mySelection.textFramePreferences.verticalJustification = VerticalJustification.JUSTIFY_ALIGN;

      If (myParagraphLength == 3) {}

      var myParagraph = myPara0 [0] .silence;

      var .silence myParagraph = myPara1 [1];

      var .silence myParagraph = myPara2 [2];

      .pointSize myParagraph [0] = '13pt ';

      .leading myParagraph [0] = '13pt ';

      myParagraph [0]. fontStyle = "Bold";

      .pointSize myParagraph [1] = '10pt '.

      .leading myParagraph [1] = '10pt '.

      .leftIndent myParagraph [1] = "10";

      .pointSize myParagraph [2] = '10pt '.

      .leading myParagraph [2] = '10pt '.

      .fontStyle myParagraph [2] = 'bold ';

      .leftIndent myParagraph [2] = "10";

      }

      Hello

      It is a property of textFramePreferences

      mySelection.textFramePreferences.verticalThreshold = number (range 0 - 8640)

      Object reference ID says:

      "... The maximum amount of vertical space between two paragraphs. Note: Justification valid only when it is vertical is justified; the specified amount is applied in addition to the space before or after the values set for the paragraph... of space"

    • Problem with creating numbered lists the paragraph style...

      I have a numbered list, using "bullets and numbers" paragraph style But I don't know how to get the numbering to work properly.

      If I set the "mode" to "continue from previous" mode, whenever I use this paragraph style continuous numbering since the last issue of the previous list using this style.

      If I put the 'mode' for ' start in ' a number, say '1', then all numbers in the list are this number.

      I want that each list is independent of the final list. The only thing I can understand is to create a new paragraph for each list style, but which does not seem a good way to go.

      I have been exploring for some time but have not been able to understand this.

      Place the cursor inside your paragraph of the list where you want than to restart numbering.

      Choose from the menu:

      Type > bulleted & numbered lists > restart page numbering.

      Torben.

    • The spacing between the contacts in the contact list and the current list.

      Hello

      My Skype updated this morning and it looks that the spacing between the contacts has been increased and as the spacing between the history of cats in the chat window.

      It of wasting a lot of space and removes the ability to quickly view who is online. You now have to scroll, even when Skype is maximized to quickly view the contacts and history of cats.

      Hoping so it is a way to reduce the spacing?

      Thank you.

      You have the «special» Skype 6.20 64. version.104 installed with the new User Interface. You can uninstall this version and install the 6.20 standard. 0.104 version with the old interface.

      http://download.Skype.com/MSI/SkypeSetup_6.20.0.104.msi

      Versions 'special' .64 are randomly provided to users selected to verify their reaction to the new interface. In my opinion, it's policy very "user hostile". n):

    • Under Xp, under the paper painted office, where are the pictures actually stored... I want to add a picture to the file in order to make my wallpaper... It seems that some are stored on the c: Windows and some in C:Window/Web/Wallpaper...which is right

      Under Xp, under the paper painted office, where are the pictures actually stored... I want to add a picture to the file in order to make my wallpaper... It seems that some are stored on the c: Windows and some in C:Window/Web/Wallpaper...which is right

      Under Xp, under the paper painted office, where are the pictures actually stored... I want to add a picture to the file in order to make my wallpaper... It seems that some are stored on the c: Windows and some in C:Window/Web/Wallpaper...which is right

      ===================================
      Simply open the photo that you want to use as wallpaper and
      choose... Set as wallpaper... from the menu.

      If you want to physically add the photo in the folder then
      It can be seen in the background list... Add to the
      following folder: C:Window/Web/wallpaper

      FWIW... If there are fewer than 100 pictures in your my
      Folder of photos... you can see in the background list. John Inzer - MS - MVP - Digital Media Experience - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

    • When you try to import a .mp4 file in windows movie maker, the program does not list the file when I search for it in his file.

      When you try to import a .mp4 file in windows movie maker, the program does not list the file when I search for it in his file.  Help, please.

      As I suggested previously, conversion to a format like
      . WMV before you import it into Movie maker may be the solution.

      The free Converter from Microsoft can be a place to start:

      (FWIW... it's always a good idea to create a system)
      Restore point before installing software or updates)

      Download Microsoft Expression Encoder 4 with Service Pack 1 (SP1) (freeware)
      http://www.Microsoft.com/download/en/details.aspx?displaylang=en&ID=24601
      (runs under WinXP SP3 / Vista / 7)

      When you install the program...
      Start Microsoft Expression Encoder 4
      (Start / programs / Microsoft Expression /)
      Microsoft Expression Encoder 4)

      On the "Load a new project" screen...
      Left click... "Transcoding project '...

      When the program opens, click on... File / import...

      (If at any time you get lost while browsing
      the program of... to... Window / active Reset
      Type or workspace... CTRL + SHIFT + R)

      Look for the file/s that you want to convert.
      (If files do not appear... open the fall
      window and choose... All files)

      Click (highlight) left the files and the left on the Open button.

      You can see the files in the "Multimedia content" pane

      In the right column... left click on the tab "Output"...

      Open the drop directory window and choose an output folder.
      (This is where you will find your converted file)

      On the left, click on the button "encode".

      Wait... video encoding CPU intensive and can
      be a slow process. It is always best if you do not have
      multi-task while files are encoded.

      Now... try import you again. File WMV in Movie Maker.

      More converters:

      There are to many converters available on the net...
      the following links are some examples. You can
      need to experiment to find the best result.

      Proceed at your own risk *.

      (FWIW... it's always a good idea to create a system)
      Restore point before installing software or updates)

      (1) format Factory (freeware)
      http://www.videohelp.com/tools/Format_Factory
      (the 'direct link' is faster)
      (the file you want to download is: > FFSetup270.zip<>
      (FWIW... installation..., you can uncheck
      'all' boxes on the last screen... even in this case, it may
      install the Ask toolbar on your system)
      (Windows XP / Vista / 7)

      First, you will need to decompress the file or just open the
      Drag FFSetup270.exe out of the folder
      and drop it on your desktop. To install left click.

      (2) Freemake Free Video Converter (freeware)
      http://www.Freemake.com/free_video_converter/
      (Windows XP / Vista / 7)

      (3) Koyotesoft Free Video Converter
      http://www.koyotesoft.com/indexEn.html
      (2000/XP/2003/Vista/Seven)

      (4) Sothink Free Video Converter
      http://www.Sothinkmedia.com/video-converter/
      (Windows XP / Vista / 7)

      (5) hamster Free Video Converter
      http://www.PCWorld.com/downloads/file/FID, order 155794, 4 pages, 1/download.html
      (Windows XP, Vista, 7)
      (If you choose Custom Installation
      You can uncheck additional modules you
      do not want to install)

      (6) quick Media Converter
      http://www.Cocoonsoftware.com/
      (Win XP, Vista, Win 7 Home Premium)

      (7) SUPER © Simplified Universal Player Encoder & Renderer
      http://www.videohelp.com/tools/Super
      (the download mirror site is faster) (Windows XP / Vista / 7)

      (8) Xilisoft Video Converter
      http://www.Xilisoft.com/video-converter.html
      (not freeware but receives good reviews)
      (Windows XP (SP2 or later) / Vista / 7)

      Good luck...

    • I have hp compaq nc6230 I want to know the proper boot order

      My laptop Windows has been corrupted
      If iam trying to install newly windows
      After installing hd videos play correctly and the audio system is completely disabled
      I want to know the proper boot order before installing new windows
      So please give me solutions abt it

      Hello:

      I wish I had my PC from the hard drive first starts to shave milliseconds from startup time.

      You don't need to change the boot order to reinstall Windows.

      Have the Windows CD/DVD in the drive.

      Restart the laptop and at the beginning of the HP welcome screen, press the F9 key to get the length of a boot menu options.

      In this menu, select the DVD drive (or multibay if no DVD player is listed) and press the Enter key.

      Watch the screen for additional instructions.

    • How became a publicly traded company in the menu "Print order" of WLPG?

      How became a publicly traded company in the menu "Print order" of WLPG?

      We are biggers specialist retail photo printer in the United Kingdom and have a service of online order for prints, canvas, gifts. I was wondering how join us to list companies in the list 'order prints '?

      Thank you

      Ivan

      This MSDN documentation might help.

      Registration of a service provider for the online print wizard

      http://msdn.Microsoft.com/en-us/library/bb643801.aspx

      If your company is interested in managed on the server of Microsoft Service provider, please send a request to * address email is removed from the privacy *.

    • Change the paragraph by Script Style

      Hello!

      I don't know if this is the right place for this question but since its related to scripting, I'll ask here.

      Is it possible to change the paragraph Styles InDesign with a Script?

      For example, I need set Format1 hyphenation to specific values properties without changing the other properties. For Format2, I need to change other properties such as the Glph scaling.

      Like I need to do this with a lot of files, I suppose that the best way to archive it could be a script.

      Is there someone who had an idea on how to do it?

      Thanks in advance

      Thomas

      You're right, this can be done very effectively with a (relatively) simple script. This is an excerpt from a longer script of mine which covers a changing choice of design of end minutes documents open at once:

      for (i=0; i
      

      For a list of all paragraph properties that you can change, look in the ESTK help or (in a more user-friendly way to read and search) in an online version of these same data: InDesign ExtendScript API (10.0).

    Maybe you are looking for