Heading style is suddenly no longer applied in RH8

My colleague has been using a custom header style with no problems.  The other day, the style is suddenly no longer applied in preview.
The project and styled text appear as they should on my computer, but not his.
Coincidentally, an upgrade to Explorer 7 was made prior to the new issue, but not sure why that impacts the preview, and the upgrade doesn't impact the project appearance on my computer.
Does he need to reinstall Robohelp to fix this issue? 
Just in case, the style is:
P.01ProcessHeading {
font-weight: bold;
font-style: normal;
margin-bottom: 12pt;
margin-left: 0in;
border-bottom-style: Ridge;
font-size: 18pt;
color: #000000;
border-bottom-width: 2px;
border-bottom-color: #db281c;
font-family: Arial;
The HTML of the styled text is:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Adobe RoboHelp 8" />
<title>01 Adding Allergens</title>
<link rel="StyleSheet" href="..\..\default.css" type="text/css" />
</head>
<body>
<?rh-script_start ?><script src="../../ehlpdhtm.js" type="text/javascript"
        language="JavaScript1.2"></script><?rh-script_end ?>
<p class="01ProcessHeading">Topic Title&#160;&#160;&#160;&#160;&#160;<a
  href="02_Topic_title.htm"><img src="..\..\notepage.png" alt=""
           style="border: none;" width="16"
           height="18" border="0" /></a></p>
I wondered if charset=utf-8 might be a problem - mentioned on another forum topic, http://forums.adobe.com/message/1937722#1937722

Hi,
The name of the style starts with numbers. This is invalid CSS and is causing the problems. The best solution is to rename the style (don't use numbers if you can avoid it) and use a find and replace operation to correct the style in your project. (Make a backup first).
Search for all class="01ProcessHeading" and replace it with class="MyNewName".
You can validate your css by using the free W3C CSS validator: http://jigsaw.w3.org/css-validator/
Greet,
Willam
This e-mail is personal. For our full disclaimer, please visit www.centric.eu/disclaimer.

Similar Messages

  • 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

  • Fire Fox no longer applies my UN and PW when I open a site. The function is not enabled. All PS are still showing in tools, options.

    I have several site that have User names and Pass Words assigned and saved in tools, options. Fire Fox no longer applies these when I open the site. When I look at tools, options the "Remember passwords for sites" is not enabled. How do I re enable this function.
    This happened after a bout with some malware from a program called Torch.

    Do you see this Torch program in the Windows Control Panel or are there other programs that were installed recently?
    *Control Panel > Programs > Programs and Features > Uninstall or change a program
    *Click the Installed column to sort by this heading
    Do a malware check with several malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    Your System Details List shows that you have a user.js file in the profile folder to initialize prefs each time Firefox starts.
    The user.js file is only present if you or other software has created this file and normally it wouldn't be there.
    You can check its content with a plain text editor (right-click: Open with) if you didn't create this file yourself.
    The user.js file is read each time Firefox is started and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    Delete a possible user.js file and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Custom heading-styles using h1 , h2 , etc. tags

    Hi!
    I tried to create custom styles for headings which should then be readable by a screenreader.
    My custom headings could not be read by a screenreader, word however displayed them correctly.
    After I converted one document with custome headings and one with the predefined heading styles to html, I found an explanation. Custom headings are just a new CSS-class with the name of the style. In my example:
    <p class=customhead1>Test1</p>
    <p class=customhead1>Test2</p>
    Using predefined heading styles resulted in:
    <h1>Test1</h1>
    <h1>Test2</h1>
    Is there any way to force word to use the <h1>, <h2>, etc. tags on custome styles?
    Thank you very much and all the best,
    Boris

    I'm afraid yes you will need to apply all the settings again, I can't think of an other way.
    Note that Find and Replace (Ctrl+H) can be used to replace a style with another style (or direct formatting with a style).
    Stefan Blom, Microsoft Word MVP

  • My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any

    My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any advice is helpful. This has never happened in 6 years

    answered in your other thread LR 4 suddenly no longer recognizes files.

  • My  suddenly no longer works and dosn't show any sign and when i try to make restore for it iTunes shows me error 4005 and my iPhone does not respond to iTunes

    my  suddenly no longer works and dosn't show any sign and when i try to make restore for it, iTunes shows me error 4005 and my iPhone does not respond to iTunes

    OK, and when you searched for information on iPhone error 4005 what did you find?

  • LR 4 suddenly no longer recognizes files.

    My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any advice is helpful. This has never happened in 6 years

    This error message means you don't have write permission to the destination folder (the folder where the files are going to be copied to). One reason this happens is that the folder has accidentally been changed in the Lightroom Import dialog box. Please check to see if the specified folder (perhaps different than the folder you had previously used) has WRITE permission and if not, change the permissions.

  • My iMac suddenly no longer connects to wifi network when in KIOSK (username) mode, and only connects when as ADMINISTRATOR mode. Its strange because the iMac has been working fine in KIOSK mode for over a year until 2 days ago.

    My iMac suddenly no longer connects to wifi network when in KIOSK (username) mode, and only connects when as ADMINISTRATOR mode. Its strange because the iMac has been working fine in KIOSK mode for over a year until 2 days ago.

    One of the memory cards was indeed faulty, and the other completely fine
    Thanks very much for all your help!
    Although there is one little thing that I've noticed. The iMac works properly, but I tried to software update to see if that may help my Minecraft sound issue (as I still don't think only having 2GB instead of 4GB would cause such a problem) but the software update application won't work. Running the "Software Update" from the apple menu on the toolbar gains no response, nothing happens. If I run the software update from  system preferences, the application icon appears for a second, then disappears (as in the blank app. icon, the blank canvas with the pencil, pen and ruler in the bottom right corner). It does this every time I try to run it. It did work when the computer was crashing, but this started when on one of the occasions I ran the app. while it was crashing. Since this occured during the crashes, and still occurs now, I'm wondering did something simlar happen minecraft, as it's sound disappeared during the crashes and is still gone now.
    However, the computer is now working again without crashes, which is the main thing, thanks for helping me fix the issue
    Edit: I would mark the topic as solved, but I'm unsure if this would lock the topic or something simlar, so I'd rather leave it open for any ideas regarding the software update and Minecraft issues I'm having

  • RH 9, MS Word, Heading styles messing up my mini TOC

    I must be doing something wrong. :-)
    I have done many Word to RH projects. All the same look and feel. I include a mini TOC at the top of my topics, (which are actually book chapters). Now, however, my mini TOCs have no contents in them, and the reason is that my headings are not called "Heading 1, Heading 2" etc, which is what RH requires for mini TOCs. My heading styles came in as "WD_Heading1, WD_Heading2" etc.
    I do not know why they came in like that. I imported the Word files as I always do. I tried renaming the headings styles, but no go.
    What up wit this? Please advise. Thanks!

    Yes, I was doing something wrong.
    During import of the MSWord doc, I forgot to make sure each Word Document paragraph style was mapped to a RoboHelp Style in the drop-down list. A simple step.
    You know, I don't remember having to do this before. I believe the Robohelp style (Heading 1, Heading 2, etc.) was selected by default. Perhaps because I was using a previous proejct as a template.
    Well I am happy to answer my own question for anyone else who runs into this problem. It is not too gratifying, however, as it feels like scoring a goal on your own goalie.

  • Heading style customizations not reflected in HTML Help file

    I wanted to share a solution I found for a problem with heading styles. I am using RoboHelp 9 for Word with Office 2010 and generating an HTMLHelp .chm file. When I migrated from Office 2003 to 2010 and RoboHelp 8 to 9, I customized the RoboHelp.docm template file to change the heading styles to have an orange border line over the header. (I had made the customizations in RH 8 for Word, but couldn't transfer the customization to the new template, so I did it by hand). The border line came out black in the header file in most of my topics in the .chm help file. I found one Word doc had topics with the orange line displayed correctly in the help and discovered that that heading style had Style Type = Linked, so I went to each of my Word docs and changed my Heading 1 style to use that style type and it fixed it for all my heading styles.
    In Word 2010, you can change this from the Home tab, Styles ribbon. Rt-click on the Heading 1 style and choose Modify. In the Modify Style dialog set Style type to Linked (paragraph and character).

    Thanks for sharing!
    Greet,
    Willam

  • DOC should be a normal Word document and we should be able to define the header style

    Hi Team,
    We are facing a issue with the pre assigned headers assigned by Adobe acrobat Pro Xl.
    Our actual requirement is as follows:
    1. As we convert a PDF to DOC there shouldn't be any pre assigned headers (header levels defined).
    2. DOC should be a normal Word document and we should be able to define the header style.
    We have tried working out on the same but nothing is going our way.
    We tried couple of step which are as follows:
    1. Deleting pre assigned TAG's.
    2. Clearing headers with the help of Touch Up Reading Order Tool (TURO).
    Request you to kindly revert on the same.

    1. As we convert a PDF to DOC there shouldn't be any pre assigned headers (header levels defined).
    You cannot control how Acrobat creates the word file.
    2. DOC should be a normal Word document and we should be able to define the header style.
    The word file is a normal Word document file. You may wish it was designed for it to be easiest to edit. Acrobat is making a Word file to most reliably resemble the original pdf file. I have no trouble creating any header style I want. The text in the header frequently consists of text boxes. Acrobat does this to insure accurate representation of the pdf file.

  • Find a specific paragraph style within a table and apply a specific cell style?

    I'm a total beginner when it comes to scripting, but I would like to create a script that finds the paragraph style "resultsUL" within a large table and applies the cell style "female". Sure wish the find/replace was able to account for cell styles as well as paragraph and character styles. Is anyone willing to help me with this? Thank you!

    Hi,
    I do it quickly defining a simple research on the "resultsUL" para style and using a loop with QuicKeys as:
    Cmd-0 is a shortcut associated to the "female" cell style.
    So, What I do: search the para style (Cmd-option-F) and apply the cell style, then search again…
    As easy to do with QuicKeys, I think that can be easily done with a [JS] (faster process!).

  • CS6 Bridge suddenly no longer opens jpeg images. Double click and drop-down menu do nothing. No new installation or changes.

    CS6 Bridge suddenly no longer opens jpeg images. Double click and drop-down menu do nothing. No new installation or changes. Any ideas?

    Consider resetting Bridge Preferences.
    Close Bridge
    Cmd+Opt+Shift held down, Open Bridge.
    Choose Reset Preferences

  • 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....

  • Control Breaks in Interactive Report Throw off HTML Header Style

    I created an APEX 4.0.0.11.23 page with an interactive report. Several columns are character strings with embedded spaces. At first, when the columns displayed they were wrapped around to as many lines as there were spaces. so I formatted it with this HTML header style:
    $('td[headers="ADDRESS"]').attr("style","white-space:nowrap");
    This corrected the problem but then the user requested two breaks on Column_A and Column_B. This threw the formatting off so I corrected it with this HTML header style:
    $('td[headers="ADDRESS BREAK_COLUMN_A_COLUMN_B_2"]').attr("style","white-space:nowrap");
    Now the lines wrap for some but not for all rows and there does not seem to be any pattern. So for instance the address for one particular row will look display in the desired format as:
    530 EAST 144TH STREET
    And another almost identical row will display as:
    525 EAST 143RD
    STREET
    I thought there may be binary data in the column so I embedded the following code in the main SELECT query that drives the page”
    Regexp_Replace(ADDRESS, '[^[:print:]]')
    This did not help. How do I implement HTML header styles for interactive reports with multiple control breaks so that the address is formatted properly for every line? Is there a related report or page attribute that needs to be set?
    BTW, the way I discovered the HTML header style for interactive reports with multiple control breaks by following this link which was provided in a related thread:
    Re: Interactive Report Control Break disregards HTML Header style.
    Edited by: Comet on Sep 27, 2012 11:00 AM
    Edited by: Comet on Sep 27, 2012 2:32 PM
    Edited by: Comet on Sep 27, 2012 2:33 PM
    Edited by: Comet on Sep 27, 2012 2:34 PM
    Edited by: Comet on Sep 27, 2012 2:35 PM
    Edited by: Comet on Sep 27, 2012 2:36 PM

    Suggest you reproduce this on apex.oracle.com using the same theme, IR configuration and equivalent data.
    What browser/version are you using?

Maybe you are looking for

  • Use of Standard Class in Material Master classification

    Hello Experts, Can you please explain me the significance of 'Standard Class' option in classification view of material master? When I click on F1 it gives following info (which I can't understands completely) A standard class allows you to access al

  • How to create ADF BC components like EO from  "View with INSTEAD OF trigger

    I have a "View with INSTEAD OF trigger" on a external schema. is it possible to create ADF EO on top of this view in my local schema?. If possible, then is it possible to insert/update that external table using ADF standard data controls and Applicat

  • Copy&Paste on and off Ipad

    Hello anyone whose reading this, The problem I met was that i tried to paste photos i saved into my windows7 computer into my ipad 2 but whenever i tried to push paste it never works. Thanks to anyone who thinks about it and answer it.

  • Query to find the fifteenth day of a month

    i want to know the fifteenth day of a month in oracle can anyone send the query

  • 3GS getting very hot

    IPhone getting very hot. Safety issue afraid to charge over night