Heading style different than expected

When compiling my source documents to HTML help instead of
Winhelp 2000, my Heading 2 text is right justified instead of left
justified. In Winhelp 2000 help it is correctly left justified.
From the Single Source HTML parameters, in my "HTML HELP
formatting - Microsoft HTML Help" window I selected "External style
sheet based on existing style sheet". I picked a file name
AfdAdmin.css. I thought this might be controlling the Heading 2
format so I examined its contents. For what I presume is the
Heading 2 definition, I saw the following text:
H2 { margin-right:18.00pt; margin-top:6.00pt;
margin-bottom:6.00pt; text-align:left; font-family:Arial;
font-size:12pt; font-weight:bold; margin-top:12.00pt;
margin-bottom:7.20pt; text-align:left; font-family:Verdana;
font-size:15pt; color:black; font-weight:bold; margin-top:0.00pt;
margin-bottom:6.00pt; text-align:right; font-family:Arial;
font-size:12pt; }
To me it appears that there are three fonts associated with
Heading 2. (Why would that be?) The third font in the list
indicates "text-align:right". I presume that is the problem. I can
manually change that and save the css file, but after a recompile,
the css file is apparently regenerated and the "text-align:right"
is there again.
How can I ensure that the Heading 2 is left justified in the
HTML output?
Den DiMarco

Now that I've spent some time in the forum, I think that this
probably should have been posted under Robohelp for Word.
Anyway, to get at the style sheet to fix the problem, the
answer was to import the help project into Robohelp for HTML and
then modify the problem style via the menu Format > Styles >
Heading 2 > Modify > Format > Paragraph > Indentation
> Special. Then change Hanging to (none).
When using Robohelp for Word, the format paragraph dialog box
did not show a "special" value of hanging. It had shown "(none)".
I suspect this is because the style sheet contains multiple
definitions for this style. Next I would like to be able to safely
remove the additional definitions. I'll look for a discussion about
that.

Similar Messages

  • Just bought MSI R5770 and card looks different than expected

    I bought this as an open Box from Fry's today.
    When I opened it up, the card looks completely different than the pictures I've seen online.
    The label on the back says it is a R5770 PMD1G and the serial number on the label matches the one on the box.  But the fan/heatsink combination is completely different.  The board layout (capacitors, etc) seems to be different as well
    I'm especially concerned by the small size of the fan compared to what I was expecting.
    Before I install it, I wanted to make sure I actually have the correct card that I paid for.  Here is a link to a pic.

    Quote from: Sansfear on 04-May-10, 19:29:16
    She slapped a new reduced price sticker on it and assured me that they'd test it to make sure it worked.  I'm willing to bet that if I go back there in a few days, that it will be back on the shelves and still have the wrong card in the box.
    I wouldn't expect anything less from them.  It was probably back on the shelf 15 minutes after you walked out.  If its worth anything, I don't buy anything open box.  The small savings isn't worth the hassle.

  • Header Margins Different than Body of Document

    I'm trying to create a document (a template, actually) where the desire is to have the header and footer margins be smaller on both the right and left sides (i.e., they are wider, spanning more of the page). It seems like the default behavior or Pages is to align the header and footer margins to the document body margins. I can't seem to find a solution and any help is appreciated. Oh Yes, I want the different margins to persist throughout the document.

    Rerunner,
    Sure, you can have different margins, and it's easy to do. Just put your cursor in the header, then adjust the margin sliders in the ruler. Click in the text area and you'll see the that those margins are unaffected by the change. Now do the same thing with the footer. Insert a page break and you'll see that the header margins on page 2 are the same as page 1.
    Is this what you're looking for?
    -Dennis

  • Selection tool acting differently than expected, what did I press?

    I must have selected a preference inadvertently, because I'm getting some different behavior from the selection tool. When selecting a box, for example, I get two sets of handles instead of one, and this makes resizing and snapping to where you want it to go want almost impossible.
    I've attaced an image. Can anyone provide some guidance?
    Thanks!

    You toggled "use preview bounds" on, which will include the stroke in the size of an object.  Look in the flyout menu of your align panel for the toggle to turn it back off.

  • Different data_table header styles

    I am trying to use different styles for the column headings in a data_table. Specifically, I want some of the headings to be leftt aligned, some right aligned and some to be centred.
    I can do this for the data in the columns by using a list of styles in the "columnClasses" attribute, but the "headerClass" attribute applies to all headers.
    The header facets for the column contain a <h:panel_group> as the header is composed of some static text and a couple of buttons.
    I have tried using a "styleClass" attribute on the panel_group. This results in a <span> HTML element being generated with the required style class but it does not seem to effect the text alignment.
    Any suggestions would be appreciated.
    Code is included below.
    <%-- GroupList.jsp --%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
    <f:view>
    <html>
    <head>
    <title>Archive</title>
    <link rel="stylesheet" type="text/css" href="stylesheet.css">
    </head>
    <h:form id="groupList">
    <h:commandButton id="first"
    action="#{GroupListBean.first}"
    immediate="false"
    value="<<"
    type="SUBMIT"/>
    <h:commandButton id="previous"
    action="#{GroupListBean.previous}"
    immediate="false"
    value=" < "
    type="SUBMIT"/>
    <h:commandButton id="next"
    action="#{GroupListBean.next}"
    immediate="false"
    value=" > "
    type="SUBMIT"/>
    <h:commandButton id="last"
    action="#{GroupListBean.last}"
    immediate="false"
    value=">>"
    type="SUBMIT"/>
    <h:dataTable id="table"
    binding="#{GroupListBean.data}"
         rows="10"
    value="#{GroupListBean.fullList}"
    var="group"
    columnClasses="group-list-column-1, group-list-column-2,
    group-list-column-3, group-list-column-4"
    footerClass="group-list-footer"
    headerClass="group-list-header"
    rowClasses="group-list-row-even, group-list-row-odd"
    styleClass="group-list-background">
    <f:facet name="header">
    <h:outputText value="Backup Groups"/>
    </f:facet>
    <h:column>
    <f:facet name="header">
    <h:panelGroup>
    <h:outputText value="Group Id"/>
    <h:commandButton id="sortGroupIdA"
    action="#{GroupListBean.sortGroupIdA}"
    immediate="false"
    image="images/Up16.gif"
    />
    <h:commandButton id="sortGroupIdD"
    action="#{GroupListBean.sortGroupIdD}"
    immediate="false"
    image="images/Down16.gif"
    />
    </h:panelGroup>
    </f:facet>
    <h:outputText value="#{group.groupId}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:panelGroup styleClass="group-list-header-2">
    <h:outputText value="Group Name"/>
    <h:commandButton id="sortNameA"
    action="#{GroupListBean.sortNameA}"
    immediate="false"
    image="images/Up16.gif"
    />
    <h:commandButton id="sortNameD"
    action="#{GroupListBean.sortNameD}"
    immediate="false"
    image="images/Down16.gif"
    />
    </h:panelGroup>
    </f:facet>
    <h:outputText value="#{group.name}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:panelGroup styleClass="group-list-header-3">
    <h:outputText value="Creation Date"/>
    <h:commandButton id="sortTimestampA"
    action="#{GroupListBean.sortTimestampA}"
    immediate="false"
    image="images/Up16.gif"
    />
    <h:commandButton id="sortTimestampD"
    action="#{GroupListBean.sortTimestampD}"
    immediate="false"
    image="images/Down16.gif"
    />
    </h:panelGroup>
    </f:facet>
    <h:outputText value="#{group.timestamp}">
    <f:convertDateTime dateStyle="long"/>
    </h:outputText>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:panelGroup>
    <h:outputText value="Restore"/>
    <h:commandButton id="sortSelectedA"
    action="#{GroupListBean.sortSelectedA}"
    immediate="false"
    image="images/Up16.gif"
    />
    <h:commandButton id="sortSelectedD"
    action="#{GroupListBean.sortSelectedD}"
    immediate="false"
    image="images/Down16.gif"
    />
    </h:panelGroup>
    </f:facet>
    <h:selectBooleanCheckbox value="#{group.selected}"/>
    </h:column>
    <%--
    --%>
    </h:dataTable>
    </h:form>
    </body>
    </html>
    </f:view>
    .group-list-background {
    background-color: #ffffff;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 12pt;
    padding: 10px;
    width: 90%;
    .group-list-column-1
    text-align: center;
    width: 15%;
    .group-list-column-2
    text-align: left;
    width: 50%;
    .group-list-column-3
    text-align: right;
    width: 20%;
    .group-list-column-4
    text-align: center;
    width: 15%;
    .group-list-footer {
    background-color: #A5A5A5;
    color: #000000;
    font-weight: bold;
    text-align: center;
    .group-list-header {
    background-color: #ffffff;
    color: #000000;
    text-align: centre;
    .group-list-header-2
    text-align: left;
    .group-list-header-3
    text-align: right;
    .group-list-row-even {
    .group-list-row-odd {
    background-color: #dddddd;

    I am trying to use different styles for the column
    headings in a data_table. Specifically, I want some of
    the headings to be leftt aligned, some right aligned
    and some to be centred.
    I can do this for the data in the columns by using a
    list of styles in the "columnClasses" attribute, but
    the "headerClass" attribute applies to all headers.I'm having the same problem, but it gets much worse than what you described.
    I'm have an arbitrarily deep tree structure I've retrieved from my backing bean, and I want to display it in a data table. Each node has a label and maybe a description, for example.
    1. The first problem is how to give the node's label a different style than the other node information. Semantically the <th> element is ideal. The problem, however, is that I can't generate a header for a node's label, because the list of nodes itself is being generated. That is, if I use:
    <html:dataTable value="#{tree.nodeList}" var="node">
         <html:column>
         <jsf:facet name="header">
              <html:outputText value="#{node.label}" />
         </jsf:facet>Nothing gets put inside the header, as the node is being iterated. This means I have to resort to a crummy hack of nesting a table inside a table for the children:
    <html:dataTable value="#{tree.nodeList}" var="node">
         <html:column>
              <html:dataTable value="#{node.nodeList}" var="childNode">
                   <html:column>
                        <jsf:facet name="header">
                             <html:outputText value="#{node.label}" />
                        </jsf:facet>
                        <html:dataTable>
                             <html:column>
                                  <jsf:facet name="header">
                                       <html:outputText value="#{childNode.label}" />
                                  </jsf:facet>
                             </html:column>
                        </html:dataTable>
                   </html:column>
              </html:dataTable>
         </html:column>
    </html:dataTable>The hack gets uglier (than the useless outermost table), because if you'll notice, to show a label of a child node as a header, I have to put another nested dummy table in my page.
    2. Now that I've managed to generate <th> (with a hack), where do I put other information about the node? If I put it in the enclosing table, it shows up before the node's label (in the <th> of the enclosed table). If I put it in the enclosed table, it will be repeated for each child node enumerated! Therefore, I'm forced to put it in the header facet of the enclosed table.
    3. Now that I'm stuck with putting all the parent node information in a child table's headers, how do I show different header styles? (This is the limitation you mentioned.) I may, for instance, want to show the node's label, the node's description, and other important information about the node.
    4. I can skip this whole <th> mess (reluctantly, because I want to specify <th> semantics by actually using <th>) by just putting everything in normal <td> elements. But this doesn't result in multiple rows like a <th> would.
    5. What if each of my nodes wants to specify its own style? I can put a styleClass attribute on an <html:outputText>, but as was already mentioned, this results in a <span> style---not a style of the entire row!
    6. If, miraculously, after hours I'm able to randomly get the right combination that will give me a styled header for each node and a sub-table of child-nodes, how do I do recursion? (Remember, my tree is arbitrarily deep.)
    7. I could use the JSTL iteration elements and generate my own table, but I've heard rumors that JSTL and JSF don't play will together. What do I do when I want to generate some JSF action within this JSTL-generated table? Can I really just drop a JSF component inside a JSTL iteration?
    JSF's dataTable seems nice in a book example, with a single-depth list of something from a database, with static headers, with alternating color styles. But trying to do something in the real world (few things are more fundamental in computer science than a tree structure) quickly seems to throw up all sorts of walls. Maybe I'm missing something really easy, here---any tricks are appreciated.
    Garret

  • I just upgraded to lion on my intel macbook.  I would like to change my facetime alert to something different than a phone ring and, I would like to be able to have full screen.  How do I do this?

    I just upgraded to lion on my intel macbook.  I would like to change my facetime alert to something different than a phone ring and, I would like to be able to have full screen.  How do I do this?

    Downgrade Lion to Snow Leopard
    1.  Boot from your Snow Leopard Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Quit DU and return to the installer. Install Snow Leopard.
    This will erase the whole drive so be sure to backup your files if you don't have a backup already. If you have performed a TM backup using Lion be aware that you cannot restore from that backup in Snow Leopard (see below.) I suggest you make a separate backup using Carbon Copy Cloner 3.4.1.
    If you have Snow Leopard Time Machine backups, do a full system restore per #14 in Time Machine - Frequently Asked Questions.  If you have subsequent backups from Lion, you can restore newer items selectively, via the "Star Wars" display, per #15 there, but be careful; some Snow Leopard apps may not work with the Lion files.

  • Acrobat 9-forms-Radio buttons print different than check boxes

    I am using Acrobat Pro 9 to create forms.
    I've used both radio buttons and check boxes (that are circles).
    Forms were designed in InDesign with Zapf Dingbats as the open circles to be filled in.
    I used radio buttons when the user had to pick one over the other.
    I used check boxes when there were multiple choices or I wanted the user to be able to uncheck a box. (I used the circle style so they would look like radio buttons).
    The radio buttons are printing differently than the check boxes. It looks almost like there is an overlay on top of the actual open circle created by Zapf Dingbats.
    I checked the "appearance" window and there is no border or fill color on the radio buttons (same for the check boxes).
    Under the <general> tab, <common properties> is visible. I'm assuming it should be in order for the radio button to appear on the form.
    I would appreciate any input as to how to fix this.
    Thansk!
    Maureen

    That's just the way radio buttons are, and one reason I rarely use them in preference to check boxes. If Adobe wanted to, they could allow you to use any appearance you want for both the selected an unselected state of a check box or radio button, but they've actually further restricted your options over the years.

  • Itunes shows library different than on Touch

    What's showing as on my IPod Touch 5th gen. is different than what's actually on the device and available for me to play.
    I know, you won't believe me, but ITunes shows a whole different list of songs than what I see when I browse the device. It's like 2290 items according to iTunes, (good!), compared with 127 songs I can see on the device (bad!). Coincidentally, those 100 or so are all ones I've purchased from Apple.
    The truth is that I've had persistent, massive problems with this thing over its life, which I've occasionally railed about here. Long story.
    Question is, how do I get these two in sync again? - with all the tracks I've put on it, painstakingly, over hours and days. I suppose this could easily be for the ITouch forum, but I'm arbitrarily posting here because it occurs after hooking the device up to iTunes.
    Thanks for any info.

    In an ideal world all of your media content is on your system drive, listed in iTunes and organized in a portable layout. You then have a complete clone of the iTunes folder as a backup. If your system drive is too small to hold everything then putting the entire library on an external drive with a backup on a second drive also works. If you want access to some content on the laptop when travelling without having to take the external then it is possible to split the library up and store some content locally and not others, but that requires more effort to get right.
    I'm still not clear what has gone wrong on your system, but some third party tools (e.g. Sony VIAO media manager and some antivirus packages) can interfere with the way the iTunes updates its database files leading to the concessional corruption. iTunes also expects all media content to stay in the same place so any manual manipulation of the media folders can lead to trouble.
    tt2

  • PDF Output: Why is "PDF Review" styled different than "Generate PDF"?

    I am new to RH.  I have imported a folder of HTML files (used in an Eclipse Help plugin) into RH9 for HTML as a project. My goal is to produce a PDF document.
    When I generate a PDF from Printed Documentation in the Single Source Layouts pad, many styles are incorrect. I've tried generating to Word and from there to PDF with the same effect.
    However, when I use Create PDF for Review from Project Manager the styles shown in the PDF (fonts, alignment, etc) are nearly perfect! Is the PDF Review option using a different CSS?
    I have tried exploring the CSS specified in the Generate PDF flow, but I am unable to make changes, perhaps due to my massive state of confusion.  So I'm losing hope that I could manually tweak to CSS that I think I use in the Generate PDF flow to appear like the "PDF Review" flow. I specified the same CSS used in the Eclipse Help system, but evidently there must be some defaults built into the Eclipse viewer that are not specified in the CSS we use.
    Thanks in advance,
    Charly in SJ

    Here's what I think is happening. You say PDF review is good but printed documentation gives wrong styles. You also say you assume PDF review uses the Stylesheet (CSS) for each topic, yes it does. Now if that is giving the correct styles it tells you that is what you need when you generate printed documentation.
    When you use a Word template you will get very different styles unless you have set up the template to mirror your CSS. Using the Map to CSS option you have two choices, you can select None when each topic will be printed according to the CSS attached to the topic or you can select one of the CSS files available in the project.
    I suspect that if you select the None option, you will get the same as you are seeing in the PDF review.
    If your document is not going to be worked on by anyone, such as a training department using it as a based document, then the CSS options are fine. If others will be working on it, then the Word template option is better as lists will be true lists and headings will be true heading styles.
    See Printed Documentation on my site.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • List styles different in application and in preview

    I have a book I am writing which is mostly in bulleted list style.  I have created list style for the first level and second level lists.  It looks great in the app itself but when I preview it on a iPad it looks different.  For example it looks like this in the app
    test text
    test text
    test text
    test text
    test text
    test text
    When previewed it looks like this
    test text
    test text
    test text
          test text
          test text
    test text
    I want it to be consistent and not sure what's wrong?  Any ideas?

    If I may re-open this thread, let me ask the question FordPrefect only alluded to:
    Given that I should be using a pro-level HD broadcast monitor to view everything, given that every piece of footage is different in the particulars, and given that the Canvas Window image is almost always different than any other playback system (Finder, QT, VLC Players, etc.), are there general exposure/gamma changes y'all make to account for the visual difference between the Canvas Window and other playback systems? If you're anything like me, you don't start from SCRATCH on every single edit... You have a few go-to filters with a few go-to settings, and then make minor adjustments according to the needs of the footage.
    For instance, in order to get the exported image close in exposure to the ideal Canvas Window image, I usually go: Effects - Video Filters - Quicktime - Brightness and Contrast - and then adjust the Brightness to 0.85 and it seems to get close.
    You guys have anything like that? Thanks for any help!

  • Ship to address on delivery different than sales order

    Hi Experts,
    Please help, I have a sales order with a Ship to" address in NY but when i created a delvery shipping address on delivery paperwork printed a different "Ship to" address (NJ address). I checked delivery header data and under "partner function" tab i see partner function "SH" has the NJ address. I checked the sales order and this address is not coming from sales order "partner function". Any idea where this might be coming from??
    Also please help me understand "partner function" (SH) and how this is different than ship to. Thanks!

    If the solutions already provided do not help...you please check the ship to master data (xd02) and check the address. Also check if the output program is printing the ship to address based on the master data or the delivery partner functions.
    Also check if in the spool , earlier delivery output has NJ address and it is being retained . Couple of times, we had an issue of things being printed from the eearlier output and not from the current document. You please check if "New Spool Request" is checked at the output configuration.
    Hope it helps
    Regards
    Sai

  • [svn:fx-3.x] 12371: The main AccImpl was updated to handle accessible naming conventions differently than before .

    Revision: 12371
    Revision: 12371
    Author:   [email protected]
    Date:     2009-12-02 08:51:12 -0800 (Wed, 02 Dec 2009)
    Log Message:
    The main AccImpl was updated to handle accessible naming conventions differently than before.  This change was made to make the 3.x branch consistent with the trunk changes.  The updated methods allows the accessibilityName property to overwrite the logic that was previously used to build the accessible name for components that were inside of forms.  This method also provides a method to allow developers to specificy that no form heading or form item label should be included in the accessibilityName for the form field by using a space.
    QE notes: none
    Doc notes: none
    Bugs: n/a
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AccImpl.as

    Revision: 12371
    Revision: 12371
    Author:   [email protected]
    Date:     2009-12-02 08:51:12 -0800 (Wed, 02 Dec 2009)
    Log Message:
    The main AccImpl was updated to handle accessible naming conventions differently than before.  This change was made to make the 3.x branch consistent with the trunk changes.  The updated methods allows the accessibilityName property to overwrite the logic that was previously used to build the accessible name for components that were inside of forms.  This method also provides a method to allow developers to specificy that no form heading or form item label should be included in the accessibilityName for the form field by using a space.
    QE notes: none
    Doc notes: none
    Bugs: n/a
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AccImpl.as

  • Lightroom displays colors differently than Photoshop

    Lightroom (and my image previewer - IfranView) display my image colors differently than photoshop.  This is very disturbing (why can't Adobe make this simple!)! 
    Image in question - see below.  Center image is Photoshop, left is Lr 4 and right is InfranView.
    Colorspace:  AdobeRGB 1998
    Image color (exported the TIFF file in Lr, what is shown below):  AdobeRGB 1998
    NOTE:  when I export out as sRGB, IfranView displays it correctly (I don't know why, it can't display ProPhoto correctly, but never had a problem with AdobeRGB).  Lightroom looks incorrect when viewing the TIFF, AdobeRGB JPEG and sRGB JPEG.
    What is going on??  I've tried this on two computers now and it is the same problem!

    The larger file is Adobe RGB and the smaller file is sRGB.  I see no difference in overall tone or color between the two files in LR 3, LR 4, LR 5, PS CS5, PS CS6, PS CC 2014, or Windows Photo Viewer which is color-managed, aside from an almost imperceptible change in the darkest blacks which I'd expect since you're converting AdobeRGB to sRGB at some point.
    I can make the Adobe RGB one look like it does at the left of your first screenshot if I Assign Profile: sRGB to it in PS.
    Since your monitor appears to be wide-gamut and therefore similar to Adobe RGB, I think the problem you're having is that LR thinks the monitor is sRGB for some reason, perhaps due to your switching the cables from one computer to the other without rebooting and recalibrating.  It's also possible that your profile is stored in the monitor rather than in the computer and one computer understands this and the other doesn't so you're getting double-profiling or no profiling occurring.
    It sounds the your only issue is having two computers attached alternatively to one monitor without having a valid profile on each computer for that monitor and aren't restarting each computer to load that profile.  At least that is my analysis given the limited information.
    I would conclude that nothing is wrong with LR or PS just the hardware connections and the color management confusion between the two computers, not your confusion, the computers'.

  • ToC won't "see" a modified heading style

    I am in the template "white paper" and created a unique heading style. "Heading 4" shows up in my paragraph styles, and my headings are duly made in "Heading 4." "Heading 4" shows up in the TOC inspector. It is checked on the left and right (it is not dimmed). But when I update the ToC, nothing shows up there. It only works if I use the original heading style.

    Well, nothing like asking a Q to get an insight. Here's a crappy yet functional run-around. I deleted the original "heading" and then took "heading 4" and renamed it "heading". Now the ToC looks weird (every other word is a different color) but I can fix that manually when I am done with the doc't.
    Unless someone has a better answer....

  • Bullet and number styles different when viewed

    I'm using RoboHelp 6 to produce a WebHelp project.
    It seems like the bullet and number styles behave differently
    than the other styles. There is an automatic indent, even though
    Left is set to 0, and a tab. I have been able to get the View
    Selected Item to look the way I want (with a hanging indent that
    aligns under the tabbed text) even though it looks very different
    in the WYSIWYG Editor.
    With the Number style, the font size seems much larger in the
    View Selected Item than it does in the WYSIWYG Editor. Is there a
    way to know what the font size will be/look like to the Help user?
    The number size also seems to be different if I use the Create a
    Number List button or use the Number style. What is the difference
    between using the style and using the button? Can I control the
    number and bullet font and size?
    I'm still learning.
    Thanks

    Bummer!
    RH doesn't always remove every piece of code when you, for
    instance, select bolded characters and click the Bold toolbar
    button; it often adds another SPAN tag for normal inside or outside
    the bold tag!
    The surest way I know to completely purge content is to
    filter it through a plain text editor like Notepad:
    1. In the RH topic, select the content (some paragraphs or
    the entire topic).
    2. Cut it (Ctrl+X).
    3. Paste it into Notepad (Ctrl+V).
    4. In Notepad, select and cut the content.
    5. In the RH topic, paste the purged content where the old
    content used to be.
    Each paragraph will only get P tags assigned to it, allowing
    you then to style your way through them. Of course, this
    slash-and-burn method eliminates all hyperlinks, pop-ups, etc., so
    plan accordingly.
    Good luck,
    Leon

Maybe you are looking for