Search found 38 matches

by kel322
Wed Mar 05, 2025 7:57 am
Forum: Web-based Outputs
Topic: HTML5 Search Returns No Results; Spinner Persists
Replies: 8
Views: 15337

Re: HTML5 Search Returns No Results; Spinner Persists

We figured out our specific problem, and interestingly, it didn't have much to do with the MadcapAll.js file as we had first thought (based on the browser tools). In looking at our build log, we noticed that a bunch of files were flagged as having invalid XHTML. We found that there were 5 files with ...
by kel322
Mon Feb 24, 2025 1:52 pm
Forum: Web-based Outputs
Topic: HTML5 Search Returns No Results; Spinner Persists
Replies: 8
Views: 15337

Re: HTML5 Search Returns No Results; Spinner Persists

Yes. This happens with us, too. It's only certain terms, and we can't figure out why it's just those terms. It seems to have gotten worse (i.e. more terms cause this issue) after we added a glossary to our help system. When I use the browser inspection / console tools, this is what it says. I do not ...
by kel322
Mon Feb 10, 2025 1:11 pm
Forum: Web-based Outputs
Topic: Locally Host Google Material Icons
Replies: 2
Views: 17501

Re: Locally Host Google Material Icons

Thank you so much! I ended up giving it one more try, following the instructions on the google web font page and deleting everything I had previously done. And this time, I got it to work. I downloaded the font files that I needed, added them to the Fonts folder, and included the following near the ...
by kel322
Wed Jan 29, 2025 7:27 am
Forum: Web-based Outputs
Topic: Locally Host Google Material Icons
Replies: 2
Views: 17501

Locally Host Google Material Icons

Hello, We have a large HTML5 help file where we use a couple of Google's material icons in our project (https://fonts.google.com/icons). It was really easy to set up as in @import from google on our stylesheet. We have come to learn that if you are offline, the import link really slows down the ...
by kel322
Thu Dec 14, 2023 12:56 pm
Forum: Web-based Outputs
Topic: Meta descriptions not showing
Replies: 0
Views: 14982

Meta descriptions not showing

Hello, I am having an issue where any meta description that I add to a topic does not show in the search results. The results are still showing the first 300 characters that are in the topic. This happens with any method I use to add the description to the topic. I'm just looking for some ideas ...
by kel322
Wed Mar 23, 2022 2:05 pm
Forum: Printed Documentation Targets
Topic: DRAFT watermark
Replies: 7
Views: 9309

Re: DRAFT watermark

In case this helps anyone: I was looking into creating a watermark for our online output only for some pages. I didn't want to create a separate stylesheet and deal with attaching it to some pages and not others (mostly because I find that difficult to track / remember down the road). I ended up ...
by kel322
Thu Jan 13, 2022 2:20 pm
Forum: Flare's General Discussion
Topic: Batch create / assign ids to <h2> and <h3> tags?
Replies: 1
Views: 3726

Re: Batch create / assign ids to <h2> and <h3> tags?

Just an FYI for anyone who is curious. I did not find a fast way to do this within Flare. But I did find a script that will add the ids when the page loads, which works just fine with the other script that I am using to create and copy links to specific sections of the webpage. var $headers ...
by kel322
Tue Jan 11, 2022 2:15 pm
Forum: Flare's General Discussion
Topic: Batch create / assign ids to <h2> and <h3> tags?
Replies: 1
Views: 3726

Batch create / assign ids to <h2> and <h3> tags?

Hello, Does anyone know of a way to automatically create ids for certain tags within Flare? I'm working on adding a script to our documentation that allows users to click a button that will create and copy a link to a specific section of the page (similar to Chrome's new dynamic linking extension ...
by kel322
Tue Nov 16, 2021 1:40 pm
Forum: Single-Sourcing
Topic: Existing image sizing
Replies: 1
Views: 2716

Existing image sizing

Hello, I'm working on creating an online format for our pdf manuals. We have several existing images (pngs) that look great and are sized for print. When I resize (reducing the size) any of the images for the html target, the images come out blurry. I would like to find a solution that does not ...
by kel322
Mon Oct 25, 2021 12:08 pm
Forum: Single-Sourcing
Topic: Print to Online output examples
Replies: 0
Views: 2418

Print to Online output examples

Hello all, Our team has an online help system for the major software product that we work on. We also have different but related products that have manuals in PDF format. We are in the process of creating online outputs for our PDF manuals. We know the "hows" of accomplishing this in Flare. However ...
by kel322
Fri Jun 18, 2021 10:47 am
Forum: Styles, Stylesheets and XML
Topic: :first-child selector help
Replies: 2
Views: 1889

Re: :first-child selector help

Thank you so much, Nita!
I thought that was what I had needed to do, but it wasn't showing any auto-numbered text at all. I must have created a typo somewhere in my css because when I tried again, it worked.
by kel322
Fri Jun 18, 2021 8:03 am
Forum: Styles, Stylesheets and XML
Topic: :first-child selector help
Replies: 2
Views: 1889

:first-child selector help

Hello, In my stylesheet I have divs for different types of warnings we use. It is set up to have auto-numbering for the p:first-child as shown below. div.NoteWarningGeneral p:first-child { mc-auto-number-format: '{b}WARNING{/b}: '; } This generally works as I want it to; however, when there is ...
by kel322
Wed Feb 24, 2021 6:53 am
Forum: Styles, Stylesheets and XML
Topic: Cleaner style suggestion
Replies: 5
Views: 2115

Re: Cleaner style suggestion

Thanks again! I haven't tried it yet, but I would never have thought of writing it that way.
by kel322
Fri Feb 19, 2021 8:45 am
Forum: Styles, Stylesheets and XML
Topic: Cleaner style suggestion
Replies: 5
Views: 2115

Re: Cleaner style suggestion

Much thanks @doloremipsum, I ended up grouping the div tags in the way that you suggested, and it's saving a lot of space in our stylesheet. Related to this, we use auto-text to insert "warning", "important", etc. depending on the type of note it is. It is set up using p:first-child selector. I had ...
by kel322
Thu Feb 11, 2021 1:36 pm
Forum: Styles, Stylesheets and XML
Topic: Cleaner style suggestion
Replies: 5
Views: 2115

Cleaner style suggestion

Hello, I'm trying to figure out a way to clean up our stylesheet and simplify some of the div tag styles that we use for notes. A lot of the notes are for our print manuals, but they are sometimes used in our online help. The notes got a little bit out of control and have multiplied since originally ...
by kel322
Tue Oct 13, 2020 5:51 am
Forum: Web-based Outputs
Topic: Javascript on custom toolbar (back-to-top) button
Replies: 14
Views: 18858

Re: Javascript on custom toolbar (back-to-top) button

Thank you so much for the quick reply!
by kel322
Mon Oct 12, 2020 12:02 pm
Forum: Web-based Outputs
Topic: Javascript on custom toolbar (back-to-top) button
Replies: 14
Views: 18858

Re: Javascript on custom toolbar (back-to-top) button

I've used this and it works great in my side nav output. However, when I shrink the browser to tablet and mobile views, the button does not work. Anyone else experience this and/or have some solutions?
by kel322
Tue Sep 22, 2020 11:35 am
Forum: Web-based Outputs
Topic: Adding a home button to the toolbar (Side Nav)
Replies: 0
Views: 834

Adding a home button to the toolbar (Side Nav)

Hello, I recently switched to a side navigation output. I added a topic toolbar skin and added a home button to it. In the event field, I added javascript to open the home page link. When I build the project, the home button works when I'm in a topic that is not within a folder. But if I try the ...
by kel322
Thu Oct 11, 2018 8:23 am
Forum: Web-based Outputs
Topic: Customising TOC topic icons in HTML5 Tri-pane output
Replies: 1
Views: 1244

Re: Customising TOC topic icons in HTML5 Tri-pane output

I've been researching the same thing. From what I understand, the style change is for the WebHelp skin, not the Tripane skin. I haven't found a way to add a new style to the tripane skin for different icons, which is slightly infuriating me because it seems like it should be an easy add. It is also ...
by kel322
Wed Sep 19, 2018 6:00 am
Forum: Styles, Stylesheets and XML
Topic: Specifying a style that never has line breaks
Replies: 5
Views: 2046

Re: Specifying a style that never has line breaks

Hello, I've been having a similar issue where we have icons within the text, sometimes followed by a period. The line will break before the period, starting the next line with a period. Non-breaking space doesn't work because we don't want a space before the period. Anyway, I recently discovered the ...
by kel322
Mon Sep 17, 2018 6:38 am
Forum: Flare's General Discussion
Topic: Relationship Tables -- include current topic?
Replies: 0
Views: 881

Relationship Tables -- include current topic?

Hello, Just curious if there is a way to include an unlinked title topic of your current topic when using relationship tables. I have a list of topics that are steps, and I want to maintain the same numbering throughout. For example: Basic Steps: 1. Step 1 (linked) 2. Step 2 (current topic -- title ...
by kel322
Tue Aug 28, 2018 8:18 am
Forum: Styles, Stylesheets and XML
Topic: Defaults Reset Styelsheet
Replies: 0
Views: 790

Defaults Reset Styelsheet

Just out of curiosity, does anybody use a reset stylesheet or add resets to their stylesheet to override browser defaults?

If so, what has worked best for you?
by kel322
Fri Aug 24, 2018 7:05 am
Forum: Web-based Outputs
Topic: Online Output: extra page when printing workaround?
Replies: 3
Views: 1726

Re: Online Output: extra page when printing workaround?

Hi Nita,
Thank you. That does help immensely; I didn't realize that you could create a custom medium, so this opens a whole new path (can of worms? :P) for me.

Thanks!
Kelly
by kel322
Wed Aug 08, 2018 9:01 am
Forum: Web-based Outputs
Topic: Online Output: extra page when printing workaround?
Replies: 3
Views: 1726

Online Output: extra page when printing workaround?

I know I've seen this mentioned somewhere in the forums, but I can't seem to find it. When clicking the print button from an online output, I know that it pulls from the print part of the stylesheet if you have one. We have one, and we have a page-break-before:always set for the h1 tag. This means ...
by kel322
Thu Jul 12, 2018 5:51 am
Forum: Printed Documentation Targets
Topic: Background-color in body dictates color in pg layout?
Replies: 2
Views: 10155

Re: Background-color in body dictates color in pg layout?

Thank you for your reply, Nita. I typically don't set a background color for print output either. It originally came up because I changed the background color for the online output and it carried over to the print medium. I understand that the styling that is the closest to the element takes ...