Search found 125 matches

by Chicago_HPT
Fri Apr 15, 2022 9:59 am
Forum: Styles, Stylesheets and XML
Topic: Background problem with topic in HTML and Print media
Replies: 1
Views: 746

Re: Background problem with topic in HTML and Print media

Depending on what you need to have a white background, you can use the !important rule to override other colors for your PDF output. For example, I'll use the print media to set the background color for the body tag like so: @media print { body { background-color: white !important; } } Now, the back...
by Chicago_HPT
Tue Apr 12, 2022 8:22 am
Forum: Styles, Stylesheets and XML
Topic: Topic-level stylesheet not working
Replies: 6
Views: 1684

Re: Topic-level stylesheet not working

Hm. That help topic reads, "You cannot use multiple stylesheets per content file for native Adobe PDF output" (emphasis mine). That seems to suggest that you can use one (1) per content file. But it sounds as if that's not the case. Is that correct?
by Chicago_HPT
Wed Mar 16, 2022 9:36 am
Forum: Styles, Stylesheets and XML
Topic: Generic Selectors not working
Replies: 2
Views: 919

Re: Generic Selectors not working

In the CSS text file, the first character of a generic class is a period. For example, I have a generic style to hide the formatted content. Here is what it looks like in my CSS file. .hidden /*Content that does not display (is effectively removed at runtime)*/ { display: none; } So, in the HTML, I ...
by Chicago_HPT
Wed Jan 26, 2022 2:13 pm
Forum: Web-based Outputs
Topic: Hide and Seek Button in new Flare Version
Replies: 3
Views: 2373

Re: Hide and Seek Button in new Flare Version

I don't know the position in the default styles.css where you can change the values, but I would recommend not trying to make changes directly to styles.css anyway. When I need to override something in styles.css, I simply include the selector in my topic css file. The topic css is "closer"...
by Chicago_HPT
Mon Jan 24, 2022 8:02 am
Forum: Printed Documentation Targets
Topic: Increase total table width on landscape (PDF)
Replies: 1
Views: 1853

Re: Increase total table width on landscape (PDF)

Tables can have a width attribute. If the width is set to a fixed value, such as 640 pixels or 5 inches, then changing the page orientation will not affect the width of the table. You want to set the table width to something relative, such as a percentage or you want to set it to a fixed value that ...
by Chicago_HPT
Mon Nov 22, 2021 12:24 pm
Forum: Flare's General Discussion
Topic: Menuproxy - how to increase light height?
Replies: 2
Views: 1408

Re: Menuproxy - how to increase light height?

I think the menu proxy is identified in CSS with a ul.menu selector. If so, I believe that would mean that the first level of menu items would probably be ul.menu > li . Use your browser to inspect the menu items via the browser tools, either a right-cick and select the Inspect menu option (or simil...
by Chicago_HPT
Fri Nov 19, 2021 3:01 pm
Forum: Web-based Outputs
Topic: Making responsive tile clickable
Replies: 2
Views: 2859

Re: Making responsive tile clickable

I ran into the same problem. I don't recall if the original template I used was the same but I had the same problem where only the tile titles were clickable. To solve it, I added an onclick event to the div as follows: <div class="tile" onclick="location.href='foo.htm';" style=&...
by Chicago_HPT
Thu Nov 18, 2021 8:40 am
Forum: Styles, Stylesheets and XML
Topic: Subclasses in anchor tags through the UI
Replies: 7
Views: 4160

Re: Subclasses in anchor tags through the UI

Seems like a solid suggestion... except I can't get it or its variants to work in Flare. I've looked the attribute stuff up on W3C and tested what I want to use in their "try me" browser/Chrome, and it works fine... but not in the Flare preview window or in the output, whatever the browse...
by Chicago_HPT
Wed Nov 17, 2021 9:12 am
Forum: Styles, Stylesheets and XML
Topic: Subclasses in anchor tags through the UI
Replies: 7
Views: 4160

Re: Subclasses in anchor tags through the UI

I feel you. Personally, I think we should be able to Ctrl+click styles in the style list to apply them, preferably in the order they're clicked. That seems like it should be easy enough to implement but I'm not a programmer, so...

Anyway, good luck!

-jeff
by Chicago_HPT
Wed Nov 17, 2021 9:03 am
Forum: Printed Documentation Targets
Topic: Using px for PDF output
Replies: 1
Views: 1870

Re: Using px for PDF output

One option, if you're going to exclusively use print output, is to use "print" units of measurement, such at pt, mm, cm, or in. So a quarter inch margin might be written as margin-left: 0.25in; You can also use the relative measurements, such as em or rem but if you want to be precise, the...
by Chicago_HPT
Wed Nov 17, 2021 8:53 am
Forum: Styles, Stylesheets and XML
Topic: Subclasses in anchor tags through the UI
Replies: 7
Views: 4160

Re: Subclasses in anchor tags through the UI

Unfortunately, Flare still doesn't allow us to apply multiple style classes via the GUI. However there are some things you can do to make it a little easier. Do you use either of the classes for other HTML tags? If not, then one way is to format the links with one of the two classes (whichever one i...
by Chicago_HPT
Tue Nov 09, 2021 9:42 am
Forum: Flare's General Discussion
Topic: Snippets in topic templates
Replies: 4
Views: 1853

Re: Snippets in topic templates

Okay, so "Content" is the "root" folder and so all paths are presumed to begin there.

I'm glad you've got it working.

Happy writing!
-jeff
by Chicago_HPT
Wed Nov 03, 2021 10:03 am
Forum: Flare's General Discussion
Topic: Snippets in topic templates
Replies: 4
Views: 1853

Re: Snippets in topic templates

I use snippets in some of my templates. I suspect the problem might be that the path to the snippet is relative, meaning that it is x folders up and over from the template file. When you create a new topic, that topic is now in a different folder and so following the relative path back to the snippe...
by Chicago_HPT
Wed Nov 03, 2021 8:40 am
Forum: Styles, Stylesheets and XML
Topic: Center Image
Replies: 1
Views: 1918

Re: Center Image

What I do is set the div text-align property to center.

Code: Select all

div.image-container { text-align:center; }
There are also other options. That's just the one I use. For more ideas, check out https://www.freecodecamp.org/news/how-t ... ge-in-css/

I hope that helps,
-jeff
by Chicago_HPT
Tue Aug 17, 2021 9:48 am
Forum: Flare's General Discussion
Topic: Flare inserts a BOM or byte order mark in post build event
Replies: 1
Views: 813

Re: Flare inserts a BOM or byte order mark in post build eve

I've never used the command line to build (or run post-build events) myself so, out of curiosity, can you run a batch file from there? One of those error messages seems to indicate that you cannot. But, if you can, can you put your post build instructions (such as "echo") in the batch file...
by Chicago_HPT
Thu Aug 12, 2021 8:25 am
Forum: Printed Documentation Targets
Topic: Fixed-length underline
Replies: 3
Views: 2444

Re: Fixed-length underline

You can use an after pseudo element to create a fake border. Here is some CSS I took from a SteckInsights post and modified slightly for your purpose. I spaced things out for legibility but you should be able to get rid of the empty lines and move or remove the comments as needed. I used an h1 eleme...
by Chicago_HPT
Mon Jun 21, 2021 9:12 am
Forum: Web-based Outputs
Topic: DIV formatting missing in HTML5 output but Print output good
Replies: 2
Views: 974

Re: DIV formatting missing in HTML5 output but Print output

Is the formatting all done via CSS or do you have an image inserted in the divs in your XML? Did you accidentally set the images/stripes in the CSS for the Print medium instead of the default (Web) medium?

Can you share the XML for the div and the CSS for the style or styles?

-jeff
by Chicago_HPT
Fri Jun 18, 2021 1:10 pm
Forum: Flare's General Discussion
Topic: HTML5 for spaces between two words? [FIXED]
Replies: 2
Views: 1058

Re: HTML5 for spaces between two words?

. In my experience, Flare has trouble with the mnemonic version of HTML entities. For a non-breaking space, try the numeric version   instead of  . It sounds like you're quite comfortable using the text editor, but if you want, you can and also insert one by simply typing Shift+Space in the XML edi...
by Chicago_HPT
Thu Jun 17, 2021 8:22 am
Forum: Web-based Outputs
Topic: Reorder Columns in Responsive Layouts?
Replies: 4
Views: 1623

Re: Reorder Columns in Responsive Layouts?

That's... weird. If you move it back in the Web view, does it then also move back in the Mobile view? (sorry for my delayed reply, had a couple of brutal weeks).
by Chicago_HPT
Thu Jun 17, 2021 8:19 am
Forum: Web-based Outputs
Topic: Published project-lost top Nav/layout a mess [FIXED]
Replies: 5
Views: 1648

Re: Published project - layout a mess when viewed

What happens if you double-click the Default file in the root folder? That should open your project.
by Chicago_HPT
Thu May 27, 2021 7:11 am
Forum: Printed Documentation Targets
Topic: Text not wrapping in print output/PDF [FIXED]
Replies: 15
Views: 5652

Re: No text wrap in print output/PDF

Hm. Just setting it on the body element should have done the trick. Do you know if you set it for the Web (Default) medium, the Print medium, or for something else? Web (default) should cascade down to Print and should work for both. But if you set it for a different medium (e.g. tablet) then it mig...
by Chicago_HPT
Thu May 27, 2021 6:53 am
Forum: Web-based Outputs
Topic: Reorder Columns in Responsive Layouts?
Replies: 4
Views: 1623

Re: Reorder Columns in Responsive Layouts?

Short answer is yes. Longer answer is, there are several ways to do this. MadCap Flare GUI: Flare has a Responsive Layout window pane that lets you set responsive styles and then edit how they look at different breakpoints, such as "Web" (full desktop), "Tablet," and "Mobile...
by Chicago_HPT
Thu May 27, 2021 5:19 am
Forum: Printed Documentation Targets
Topic: Text not wrapping in print output/PDF [FIXED]
Replies: 15
Views: 5652

Re: No text wrap in print output/PDF

Quick note: If you want, one way to cascade hyphenation rules to most, if not all, styles all at once is to set the hyphenation on the body tag/class. Since pretty much all content sits inside the body, stuff like p and h1 tags inherit properties from body.

-jeff
by Chicago_HPT
Thu May 27, 2021 5:12 am
Forum: Printed Documentation Targets
Topic: Text not wrapping in print output/PDF [FIXED]
Replies: 15
Views: 5652

Re: No text wrap in print output/PDF

Hi M33R4. It looks like you want to control the hyphenation. Check out MadCap's extensive help topic on hyphenation and see if any of the options there can help you out. http://help.madcapsoftware.com/flare201 ... nation.htm

I hope that helps,
-jeff
by Chicago_HPT
Mon May 03, 2021 11:04 am
Forum: Styles, Stylesheets and XML
Topic: Footer displays incorrectly after Flare Upgrade
Replies: 4
Views: 3826

Re: Footer displays incorrectly after Flare Upgrade

A little late to the party here, but I'm running into the same issue.