Changing Styles for Numbering

I am using RoboHelp HTML Version 8
When I select the "create a numbered list" button. The number appears in a different font from the text. I selected Format/Styles/Normal, but I don't see how to change it.
thanks

Hi,
With the Normal style, you set the font of the paragraph and not of the list. If you do not style the list, the browser will return to the default. The easiest things to do (in my opinion ) are:
- Create a list style and apply it to eacht list: Right click | Bullets and Numbering | Custom | Pick your custom style.
- If you always want a list to use a standard font, open your style sheet in an external editor and add the following code:
     OL, UL { font-family: Arial; }
     Change Arial to the name of the font you want to use.
Note: If you use a font with spaces in the name, such as Courier New, place the name between quotes: font-family: "Courier New";
Note: As an 'extra' you can add any other standard styling to all your lists by adding more styling between the brackets.
Greet,
Willam

Similar Messages

  • Change Style for text (PE12)

    When I insert a text, i can change style just one time. It is not possible to change style for other text. I must stop the program and start up for changing style at each time I request to change style.
    Solution?

    Peru Bob,
    Thank you for linking to the Muvipix thread. Not sure what happened in PrE 12, but this Styles Bug looks pretty serious, as Styles allow a user to do so much, regarding attributes for Shapes and Text.
    Appreciated,
    Hunt

  • ADF Faces - Change style for menuTab component

    How to change color for menuTab components (selected and enabled)?
    I do not want to create new style, all I need is just change some colors and fonts for default oracle style.
    I was able to change color for table, overridinf some styles in my css-file, but overriding
    <af_menuTabs_selected> and <af_menuTabs_enabled> did not work, because on generated html-page menuTab components do not use any styles. Is there any workaround to change color of that component?
    Thanks.

    public String commandButton_action() {
    ot_msg.setValue("Hello");
    AdfFacesContext.getCurrentInstance().addPartialTarget(ot_msg);
    The code above works fine but I nead also, in the method, to generate a excel file with JXLS librairie.
    The file can takes a long time to download and thus I want to change the value of outputText while the file is generating and not after.
    How can I do that ?
    Thanks

  • XML assign style for numbered and bullet lists

    Hi,
    This is kinda a continuation from my previous thread. I understand that XSLT has to be used to transform the previous elements to be able to use ID paragraph styles. I would think the same would have to be acoomplished for lists.
    Is it possible with paragraph styles to generate the same results as a list in HTML? Or would I have to create individual paragraph styles for each nested list?
    I hope I'm making sense.
    Like:
    <h5>Nested unordered list</h5>
    <li1>bullet list</li1>
    <li1>bullet list</li1>
    <li2>bullet list</li2>
    <li2>bullet list</li2>
    <li3>bullet list</li3>
    <li3>bullet list</li3>
    <li4>bullet list</li4>
    <li4>bullet list</li4>
    Sample HTML:
    <h5>Nested unordered list</h5>
    <ul>
    <li>bullet list</li>
    <li>bullet list</li>
    <ul>
    <li>bullet list</li>
    <li>bullet list</li>
    <ul>
    <li>bullet list</li>
    <li>bullet list</li>
    <ul>
    <li>bullet list</li>
    <li>bullet list</li>
    </ul>
    </ul>
    </ul>
    </ul>
    <h5>Nested ordered list</h5>
    <ol>
    <li>ordered list</li>
    <li>ordered list</li>
    <ol type="a">
    <li>ordered list</li>
    <li>ordered list</li>
    <ol type="i">
    <li>ordered list</li>
    <li>ordered list</li>
    <ol type="A">
    <li>ordered list</li>
    <li>ordered list</li>
    <ol type="I">
    <li>ordered list</li>
    <li>ordered list</li>
    </ol>
    </ol>
    </ol>
    </ol>

    I think the best way is to create a new paragraph style for each nested level.
    Example:
    Create a new style for each sub level.
    Text here
    Text here
    Sub level 1
    Sub level 1
    Thanks...

  • CSS - how do I remove/change styles for one image?

    Hi,
    In my CSS I have the following rule which styles all the images within the 'main_text' div with a border, background colour and padding:
    #main_text img{
        border: 1px solid #666;
        padding: 5px;
        background-color: #C0BEB6;
    However I have one image on one page where I want to remove this styling and I can't find a way of doing it.
    I've tried applying a class to the image I want to change:
    .exclaim {
        border-style: none;
        float: left;
        margin-right: 10px;
        padding: 0px;
    The .exclaim rule appears after '#main_text img' in the stylesheet.
    The float and margin both work but the border and padding are retained from the other selector.
    I know I could just have 2 classes and apply them as necessary but eventually I am likely to have quite a few images throughout the site that need the border and padding and just the one that doesn't.
    The site in question is here: http://www.elitejoiners-shopfitters.co.uk/
    The page that contains the image that doesn't need the border is the error page: http://www.elitejoiners-shopfitters.co.uk/error404.html
    Thanks
    Mick

    Will .exclaim always be inside #main_text?
    If so, increase the CSS "weight" of .exclaim by targetting it more specifically so that it trumps #main_text img:
    change
    .exclaim {
        border-style: none;
        float: left;
        margin-right: 10px;
        padding: 0px;
    to
    #main_text .exclaim {
        border-style: none;
        float: left;
        margin-right: 10px;
        padding: 0px;

  • Change styles for ebook/print

    I have my book pasted up in InDesign, and I can easily output to PDF or EPUB from the book window. Great. However, I'd like different styles to apply to each format. For example, I want a different first-line paragraph indent level for PDF than for EPUB, different fonts, etc.
    I can think of several ways to address this problem, but none of them seems quite right:
    1. Maintain two copies of the style source, with different styles defined in each. Swap it into the Book and out and synchronize as necessary.
    2. Maintain two separate documents only for their styles, and use the Load Styles command to load styles into the style source when I want to switch formats.
    3. Maintain a separate stylesheet for the EPUB that I apply after export. I'm afraid it might get out of sync with the book, though (if I define a new style in the book, I'll have to make sure that style appears in the CSS).
    4. Scripting: Write a script to go through and modify the styles, either of the Book's style source or the EPUB's CSS.
    How would you handle this? Is there a built-in feature to address what I'm trying to do, and I just don't know about it?
    Indesign CS6.0.1, OS X 10.8.3.
    Thanks very much,
    Matthew

    That makes sense. Would you specify an additional CSS file on EPUB export that overrides some of the directives in the InDesign-generated CSS, or write a new file to completely replace ID's in the EPUB?

  • How to change the font style for user profile information in My Profile page?

    Hello,
    In my profile page, user information is getting display as below:
    Name
    Title
    Department --> Would you please let me know how can I change style for Department ( Information Technologies) Attribute in this section ?
    Thanks and Regards,
    Dipti Chhatrapati

    Hi Romeo,
    I got your point and class I require to apply is as below:
    .ms-contactcardtext3 {
        font-family:
    Arial !important;
        font-style: italic !important;
    Thank you for your trick :) 
    But its getting apply to title as well as to Department - as above class is same for both fields , while I require to change the style only for the department.
    Any suggestions ? I have changed the same using Designer which works as per the need , however - I dont want to use SPD Tool !!!
    Bottom line : I Require different font style in Title and Department without use of SPD.
    Any suggestions/idea ?
    Thanks and Regards,
    Dipti Chhatrapati

  • BPS BW 3.5  - Editing style for web layouts

    Hello all.
    I am trying to find out how to change style for web layout on BPS on BW 3.5 Does an old system with custom css files no longer work? Where could I find info about unified rendering and how to change styles in it?

    Timofei,
    it's all documented here:
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/0d79ee29ee47edaec7fe6786543ff9/frameset.htm
    Regards,
    Marc
    SAP NetWeaver RIG, US BI

  • How do I change the font color for numbering in a matching question slide?

    I have a grey image on a question slide, but the numbering for the answers in a matching question is defaulting to grey so learners can't see to match up.  How can I change the font color of these choices?  Thanks.

    You probably edited the master slide without changing the theme colors? Check the Object Style for Answers in the Object Style Manager. The numbering takes the same color as the answer text.
    All depends on the Theme colors palette that you are using. Normally Question answers use the darkest tint of the fourth color. I started blogging about color management, but description of the use of Theme colors will be published later.
    Colorful 2015 with Adobe Captivate - Captivate blog

  • My wife and I want to swap her 4s for my 4 while a take a short trip out of the country.  We use the same email address for itunes but different for email.  Can we just change our phone numbers and email addresses so we get our own messages?

    My wife and I want to swap her iphone 4s for my iphone 4 while I take a short trip out of the country.  We use the same itunes account but have different email accounts.  Can we just change our phone numbers with our carrier and change email addresses on our phones so we get correct messages, with out disturbing our other apps?

    The email is simple. Just delete her email acoount on her iPhone and configure your account into the phone and then do the same for her on your phone.
    The harder issue is that to switch the cellular phone service you will need to switch the SIM cards and the two phones do not use the same size SIM card.

  • Changing Track Style for Score

    I wrote a tenor part and set the track's Style to Bass. However, in the score, it renders it in Piano style (split treble/bass). I tried editing style in Layout, but that only lets me change the Piano Style, which is defined just fine for a piano. I don't want to mess up the Piano Style definitions; I want to change which style that Track uses. When I choose a Style for a Track, where is the "I mean it" button?

    Hi,
    "Automatic" you will only see if there is more than one track selected for display in the score editor. As soon as you select a single track, the Inspector should switch from Automatic to "Inst 1" (Or Inst x whatever) and you should see the piano or bass preset.
    So, select the single staff you want to change.
    Sorry if this isn't the answer, but for me, it always works. Try to break down the whole process in small steps:
    1. Open a fresh, new project, insert a single midi or software instrument track.
    2. Record some midi. Now
    3. Open Score Editor (CMD-3)
    4. Select the Staff you recorded by clicking (single click) on it - the lines should turn blue
    5.Go to the left of the window (inspector) - select the style from the pop-up-list (click-hold to bring up the style list). The style should stay how you've selected it.
    If not: Report back. I then suggest you go upstairs to the Logic Studio Forum where all the gurus are. Maybe they know the solution, because to me it sounds very strange (like bug).
    Cheers + good luck,
    Fox

  • Photos recently changed from sequential numbering to date/timestamp.  When I import into apps for editing they are out of order.  What can be done to change back to sequential numbering instead of date/timestamp?

    Photos recently changed from sequential numbering to date/timestamp.  When I import into apps for editing they are out of order.  What can be done to change back to sequential numbering instead of date/timestamp?

    The date information is taken from the camera which writes it to the file. This needs to be set to the correct date and time in the camera itself.
    The order the images are shown in the Library mode is set by clicking on the sort button in the tool bar, which if not showing can be activated from view, tool bar. There are different sort orders that can be applied including sorting by file name. You can also sort by dragging the images to the order you wish them to appear in by selecting user order.

  • Can I have 2 different styles for Footnote numbers and footnote text?

    Hello,
    I have a document with plenty of footnotes.
    I would like to assign all the footnote numbers to a character style, and all the text to a different character style.
    For example, I would like to have the footnote numbers in bold and in black, while the footnote text in light and in dark gray.
    Doing this manually isn't an option obviously.
    Is that possible?
    If not are there any scripts out there that can manage it?
    Thank you
    Federico

    It is simpe to make.
    Crete a Chyaracter Style for the footnote number.
    Set up the Paragraph Style for the Footnote text.
    Go to the Nested Styles section
    Select the Character Style
    Apply it to the first specified separator symbol (like tabulator) you have choosen when you have set up your footnotes.
    Use it. It will apply automatically. Of course, you have to choose this Footnote Paragraph Style in the Footnote Set Up Settings in the Type menu.

  • Where can I change the style for a subtab?

    Where can I change the style for a subtab? I can�t find the Style Element Property for this. I only want to change the text size (the automatic size is too large form my page)... can someone help me???????.. thanks

    Hi there
    Well, this is a yes and no answer.
    Yes, you could change an icon, But no, RoboHelp won't make it easy. What you will end up doing is massaging the JavaScript code for the WebHelp output. This particular change isn't really for the faint of heart. Oh, and you would likely have to change it each time you generate your WebHelp output.
    I would encourage you (and others) to consider submitting a Wish Form to ask Adobe to put this on their radar for a future version.
    http://www.adobe.com/go/wish
    Cheers... Rick

  • How do i change my telephone numbers keeps asking for a valid one??

    how do i change my telephone numbers keeps asking for a valid one??

    If you simply chose the wrong phone number setting Messages up on the iMac you just go back into it's settings and choose the right number.
    If your iPhone number is not showing up under the preferences for Messages and FaceTime on your iMac you are logged into the wrong Apple ID on the iMac or your iPhone is not registered to that ID. With the info you give it sounds like you have multiple users using the same Apple ID in which you would have multiple phone numbers listed under the preferences on the iMac and iPhone.
    I have found iCloud, Messages and Factime are easiest setup as each user having their own Apple ID. That's not to say it is impossible for multiple users to use one Apple ID. First you have to sign into the Apple ID on your iPhone which will register the number to that account. Set your iPhone's Messages and Facetime Settings to use it's phone number for send and receive. Then it should appear when you are trying to setup Messages on the iMac. Each user using the same Apple ID will have to be using their own numbers or email address so you may have to have other users uncheck your number. The problem with this setup is it is easy for others to start receiving your messages.

Maybe you are looking for