Search found 19 matches

by DLL
Thu Mar 14, 2019 5:09 pm
Forum: Web-based Outputs
Topic: Alternatives to the built-in search methods?
Replies: 2
Views: 2026

Alternatives to the built-in search methods?

I am working on a very very heavy HTML5 project. Between the available search engines for HTML5 outputs. I often get complains that the search engine does not work, and I suspect it's because this JavaScript search engine requires the web browser to process 8 megabytes of search data chunks and that...
by DLL
Fri Jan 04, 2019 1:41 pm
Forum: Flare's General Discussion
Topic: Ideas why Flare variable auto-suggest would stop working?
Replies: 10
Views: 4258

Re: Ideas why Flare variable auto-suggest would stop working

This issue would frequently occur to me because we work with branches in a version control system and we do not keep the Analyzer cache under version control. Hence, every time I created a new branch, it would not have the Analyzer cache. Variable auto-suggestion will not work until the analyzer cac...
by DLL
Thu Dec 20, 2018 2:02 pm
Forum: Styles, Stylesheets and XML
Topic: Hide classes from Style window
Replies: 6
Views: 2207

Re: Hide classes from Style window

Dave Lee wrote:You can't hide generic classes, it's a bug. I have hundreds (from 3rd party stylesheets) that I can't hide. This kills the style list, so I'm forced to pin styles that I use.

The more people that report it, the more likely it is to get fixed.
I'll send a bug report then. Thank you!
by DLL
Wed Dec 19, 2018 7:02 pm
Forum: Styles, Stylesheets and XML
Topic: Hide classes from Style window
Replies: 6
Views: 2207

Re: Hide classes from Style window

If anyone has a way that does not require element selectors to work, I would appreciate it.
by DLL
Wed Dec 19, 2018 6:51 pm
Forum: Styles, Stylesheets and XML
Topic: Hide classes from Style window
Replies: 6
Views: 2207

Re: Hide classes from Style window

Oh, I figured out the issue. For some reason, Flare ignores that a specific style is disabled unless it contains at least one element selector. Most of the styles I wanted to disable were generic classes ( ie: .class_name ) but for disabling a style to work, it has to at least have an element name (...
by DLL
Wed Dec 19, 2018 6:45 pm
Forum: Styles, Stylesheets and XML
Topic: Hide classes from Style window
Replies: 6
Views: 2207

Re: Hide classes from Style window

Surprisingly, disabling styles does not seem to remove them from the Styles window.
by DLL
Wed Dec 19, 2018 5:22 pm
Forum: Styles, Stylesheets and XML
Topic: Hide classes from Style window
Replies: 6
Views: 2207

Hide classes from Style window

I have a lot of classes in one of the stylesheets linked to my main stylesheet that are not useful for regular styling as they're used by a syntax highlighting script. Is there any way I can get Flare to ignore them and not list them in the Style window? They're taking a lot of space in there.
by DLL
Wed Dec 19, 2018 5:16 pm
Forum: Styles, Stylesheets and XML
Topic: Google Font in Clean XHTML output
Replies: 2
Views: 1099

Re: Google Font in Clean XHTML output

Sorry, I misread your question. You're using Clean XHTML with inline styles only. I don't think there's a way to do that.
by DLL
Wed Dec 19, 2018 5:03 pm
Forum: Styles, Stylesheets and XML
Topic: Google Font in Clean XHTML output
Replies: 2
Views: 1099

Re: Google Font in Clean XHTML output

So your project can't use CSS stylesheets? Flare does aggressively sanitizes what you put in your master page's header. I just add @import statements in my project's CSS stylesheet.
by DLL
Wed Dec 19, 2018 4:55 pm
Forum: Flare's General Discussion
Topic: Combine 2 navigation panes : TOP + LEFT ?
Replies: 3
Views: 2086

Re: Combine 2 navigation panes : TOP + LEFT ?

Hi. Whether you build with a top or side navigation skin, the code is practically the same, except that one navigation method is visible and the other is hidden because its class has the display: none; property. Hence, you can easily make the other navigation method visible, whichever it is, with so...
by DLL
Tue Oct 16, 2018 11:16 am
Forum: Capture's General Discussion
Topic: Canvas Auto-Adjust to Include Objects without extra margin
Replies: 0
Views: 1447

Canvas Auto-Adjust to Include Objects without extra margin

When I put objects in a image outside of the canvas and use the Canvas Auto-Adjust to Include Objects option to make the image include these objects in the canvas, the canvas always has 10 pixels of extra padding around the objects. I was wondering if there was a known way to adjust this padding? In...
by DLL
Thu May 31, 2018 8:49 am
Forum: Flare's General Discussion
Topic: Ideas why Flare variable auto-suggest would stop working?
Replies: 10
Views: 4258

Re: Ideas why Flare variable auto-suggest would stop working

Hello. I am having the same problem on one of my project in Flare 2017 r3. I tried clearing the XmlBookViewerMdiEditor directory in my settings, the Analyzer, Output and User directories in my project, and all I'm getting is snippets auto-suggestions if I turn that on, and nothing if I turn that off...
by DLL
Thu May 03, 2018 7:43 am
Forum: Flare's General Discussion
Topic: Sticky TOC Overlaps Footer when Scrolling
Replies: 15
Views: 9449

Re: Sticky TOC Overlaps Footer when Scrolling

Thank you Dave Lee! I figured this would trigger the event much more than necessary and I was looking exactly for a solution like this. Here's the code now, and it works like a charm: <script> $(".menu.mc-component").on("loaded", function() { $(window).trigger("scroll")...
by DLL
Wed May 02, 2018 3:21 pm
Forum: Flare's General Discussion
Topic: Sticky TOC Overlaps Footer when Scrolling
Replies: 15
Views: 9449

Re: Sticky TOC Overlaps Footer when Scrolling

Okay, once again, I figured out a solution, but it's a little hacky. The following code will force the size of the page and the position of the footer to be readjusted each time something is added to the side navigation menu: <script> $("div.sideContent").on("DOMNodeInserted", fu...
by DLL
Wed May 02, 2018 5:30 am
Forum: Flare's General Discussion
Topic: Sticky TOC Overlaps Footer when Scrolling
Replies: 15
Views: 9449

Re: Sticky TOC Overlaps Footer when Scrolling

Alright, I have another problem here. If the space between the header and the footer is too short for the TOC menu (because, for example, a page does not have a lot of content), the TOC menu will overlap the footer will not be pushed down below the TOC menu, and the TOC menu will overlap it. The foo...
by DLL
Tue May 01, 2018 3:54 pm
Forum: Flare's General Discussion
Topic: Sticky TOC Overlaps Footer when Scrolling
Replies: 15
Views: 9449

Re: Sticky TOC Overlaps Footer when Scrolling

I figured out the answer to my own question. Simply add style="width:100%;" to the inner div: <div data-sticky-container="" id="sticky_top"> <div class="sticky sticky-menu" data-sticky="" data-top-anchor="sticky_top:top" data-btm-anchor=&qu...
by DLL
Tue May 01, 2018 2:37 pm
Forum: Flare's General Discussion
Topic: Sticky TOC Overlaps Footer when Scrolling
Replies: 15
Views: 9449

Re: Sticky TOC Overlaps Footer when Scrolling

The technique posted by Dave Lee works for me, except that my TOC automatically shrinks to the size of its content just as soon as it starts floating.

Is there any known way to work around this without hard-coding its width?
by DLL
Mon Oct 02, 2017 10:34 am
Forum: Styles, Stylesheets and XML
Topic: Linking to external stylesheet from master page
Replies: 4
Views: 2884

Re: Linking to external stylesheet from master page

Hi Dave. I forgot to mention: I am using MadCap Flare 11. Is this feature available in Flare 11? Because I do not see this option in my target properties.
by DLL
Tue Sep 12, 2017 12:09 pm
Forum: Styles, Stylesheets and XML
Topic: Linking to external stylesheet from master page
Replies: 4
Views: 2884

Linking to external stylesheet from master page

Hello, I am planning on using a Google Font for the HTML output of my project, which will be published online exclusively. Hence, I wanted to use the method indicated by Google Fonts to link to their font in the HTML documents, that is, by adding a link to the font's stylesheet directly sourced from...