Search found 248 matches

by crdmerge
Thu Mar 15, 2012 9:57 am
Forum: Flare's General Discussion
Topic: Flare 8 Niggles
Replies: 110
Views: 141214

Re: Flare 8 Niggles

Still no synch between editors (select a word in the XML Editor and go to that selected word in the Text Editor, and vice versa). You probably don't realize what a big deal this is unless you've converted from a different tool that does provide it! Sigh...it's really tough navigating the code in top...
by crdmerge
Tue Mar 13, 2012 12:19 pm
Forum: Styles, Stylesheets and XML
Topic: Start Over -- New Stylesheet
Replies: 4
Views: 1529

Re: Start Over -- New Stylesheet

If you want to "reference the classes/IDs currently used in my topics," why would you "start fresh"?

You might want to generate a report on Unused Styles before you go blowing away everything in the style sheet. Then make some informed choices.


Good luck,
Leon
by crdmerge
Mon Mar 12, 2012 12:49 pm
Forum: Flare's General Discussion
Topic: Student tech writer new to MadCap-New project best practices
Replies: 90
Views: 78519

Re: Student tech writer new to MadCap-New project best practices

That "look" is the default HTML table, no styles, no borders. You are expected to be in charge of that part. Try creating a table style (which you would apply to this content when you're ready) and formatting it as you choose. Don't worry, if you don't like it just delete it and start over...
by crdmerge
Mon Mar 12, 2012 9:06 am
Forum: Flare's General Discussion
Topic: Student tech writer new to MadCap-New project best practices
Replies: 90
Views: 78519

Re: Student tech writer new to MadCap-New project best practices

1. Copy all the cells in the Word table. 2. Paste that into a spot in your topic. DON'T CLICK ANYWHERE, YET! 3. Directly below the end of the last line, you'll see a little folder icon. Press its down arrow, and then select the Paste Table option. 4. Voila! Instant table! Now you can format the tabl...
by crdmerge
Mon Mar 12, 2012 7:55 am
Forum: Flare's General Discussion
Topic: Cursor between two tags
Replies: 3
Views: 1285

Re: Cursor between two tags

That's an undocumented feature. :wink:

You can't even get that synchronization when you select content and switch to the Text Editor. Sigh...my former help authoring tool had that!

Put in a request at https://www.madcapsoftware.com/bugs/submit.aspx.


Good luck,
Leon
by crdmerge
Thu Mar 08, 2012 1:01 pm
Forum: Web-based Outputs
Topic: Add Images to Paragraph Styles?
Replies: 7
Views: 2743

Re: Add Images to Paragraph Styles?

You could create a list style with the image as the list item marker. Check out the Try it Yourself in "An Image as The List Item Marker" in the w3schools tutorial at http://www.w3schools.com/css/css_list.asp . You would simply add a UL with only one LI, which has the image specified. You ...
by crdmerge
Wed Mar 07, 2012 5:26 am
Forum: Flare's General Discussion
Topic: Flare 8 WebHelp on 'lesser' browsers
Replies: 16
Views: 5381

Re: Flare 8 WebHelp on 'lesser' browsers

IE is so far behind the curve, unfortunately! For example, IE 8 finally supports the ::before and ::after pseudo-elements unless users enable the Compatibility View option (which essentially turns IE 8 into IE 7)! In 2005, Richard York ("Beginning CSS: Cascading Style Sheets for Web Design"...
by crdmerge
Wed Feb 29, 2012 12:33 pm
Forum: Styles, Stylesheets and XML
Topic: Finicky Commenting Code in Topics
Replies: 5
Views: 3238

Re: Finicky Commenting Code in Topics

Bing search on "html comment syntax" results in: This means that the following are all legal SGML comments: <!-- Hello --> <!-- Hello -- -- Hello--> <!----> <!------ Hello --> <!> Two dashes apparently are the max in the end section, but more are allowed at the start. I've only ever seen t...
by crdmerge
Wed Feb 29, 2012 8:50 am
Forum: Flare's General Discussion
Topic: Student tech writer new to MadCap-New project best practices
Replies: 90
Views: 78519

Re: Student tech writer new to MadCap-New project best practices

The legacy filth that builds up in a Word file (usually multiple writers with varying levels of expertise) gets piled up; as a selection is changed, the new style is often added to, instead of replacing, the old style. The result? Dueling spans that are nearly impossible to remove in the XML Editor,...
by crdmerge
Mon Feb 27, 2012 5:24 am
Forum: Styles, Stylesheets and XML
Topic: Bad renaming of copied table style
Replies: 2
Views: 1137

Re: Bad renaming of copied table style

Yeah, Dave, I just got a reply from Support, saying the same thing. Kinda like whacking a mule in the head with an axe handle, to get its attention! :wink:

Support also decided to change the issue from a feature request (what?) to a bug (yes!).


Leon
by crdmerge
Fri Feb 24, 2012 1:25 pm
Forum: Styles, Stylesheets and XML
Topic: Bad renaming of copied table style
Replies: 2
Views: 1137

Bad renaming of copied table style

Heads up! If you make a copy of a table style, and then rename the copy, none of the style declarations inside the style sheet get changed. For example: 1. Copy PlainTable.css. 2. Paste it and rename it to TestTable.css. 3. Open TestTable.css in the Internal Text Editor. All TableStyles are labeled ...
by crdmerge
Thu Feb 23, 2012 1:09 pm
Forum: Flare's General Discussion
Topic: Vertical align footer at page bottom - WebHelp target
Replies: 19
Views: 11224

Re: Vertical align footer at page bottom - WebHelp target

I can't be sure, but I think that z-index: 10; might be the killer here. z-index: 1; should be sufficient. Or the "MadCap|bodyProxy style a padding-bottom of 25px or 50px" suggested by Lisa?
by crdmerge
Thu Feb 23, 2012 11:46 am
Forum: Flare's General Discussion
Topic: Vertical align footer at page bottom - WebHelp target
Replies: 19
Views: 11224

Re: Vertical align footer at page bottom - WebHelp target

Use the CSS position selector; see the w3schools site at http://www.w3schools.com/cssref/pr_class_position.asp . You would do something like the following, adding whatever other styling you want. The CSS position is relative to the screen, not the height of the topic. p.footer { position:absolute; b...
by crdmerge
Thu Feb 23, 2012 5:43 am
Forum: Styles, Stylesheets and XML
Topic: Mixing numbers and bullets gives unpredictable results
Replies: 8
Views: 3148

Re: Mixing numbers and bullets gives unpredictable results

Here is the unnumbered list selector and two complex selectors that work with it: [Outer unnumbered list] ul { list-style-type: square; margin-top: 0px; padding-top: 0px; padding-left: 15px; margin-left: 15px; } [Outer unnumbered list with an inner unnumbered list] ul ul { list-style-type: disc; mar...
by crdmerge
Wed Feb 22, 2012 8:51 am
Forum: Source Control
Topic: Anybody experiences with Flare + Subversion?
Replies: 12
Views: 9036

Re: Anybody experiences with Flare + Subversion?

The "Check Out" concept is different in SVN interfacing with Flare. Other SC products: A Check Out usually locks the database version until the user does a Check In. Working Copies are handled differently. SVN & Flare: Users Check Out a folder through SVN to create a working copy on th...
by crdmerge
Tue Feb 21, 2012 11:59 am
Forum: Web-based Outputs
Topic: Auto-generate a Back to Top Link?
Replies: 8
Views: 3349

Re: Auto-generate a Back to Top Link?

The pound sign indicates to HTML an internal link.

* If a bookmark assignment follows the pound sign (#intro_section, #config_section, etc.), you jump to the bookmark.
* If nothing follows the pound sign, you jump to the top (effectively, a file refresh).
by crdmerge
Tue Feb 21, 2012 10:34 am
Forum: Web-based Outputs
Topic: Auto-generate a Back to Top Link?
Replies: 8
Views: 3349

Re: Auto-generate a Back to Top Link?

Enclose it in a <p></p> tag container:

<p><a href="#">Top of page</a></p>

Then Save.
by crdmerge
Tue Feb 21, 2012 10:29 am
Forum: Styles, Stylesheets and XML
Topic: Flare deleted my style classes
Replies: 9
Views: 2758

Re: Flare deleted my style classes

You seem to have confused style classes (p, p.Note, etc.), which deal with blocks of text, with span classes (span.NoteLabel, span.CodeInline, etc.), which deal with text strings only (without a closing line break or </p>, in other words). * If you have selected a block of text, Flare will display o...
by crdmerge
Tue Feb 21, 2012 6:03 am
Forum: Web-based Outputs
Topic: Auto-generate a Back to Top Link?
Replies: 8
Views: 3349

Re: Auto-generate a Back to Top Link?

For a non-JavaScript solution, the pound sign denotes the start of the HTM page:

<a href="#">Top of page</a>


Good luck,
Leon
by crdmerge
Fri Feb 17, 2012 5:32 am
Forum: Styles, Stylesheets and XML
Topic: List Item changes from 7 to 8 between Editor & Preview
Replies: 4
Views: 1498

Re: List Item changes from 7 to 8 between Editor & Preview

Try deleting these two lines:

</ol>

<ol MadCap:continue="true">
by crdmerge
Thu Feb 09, 2012 5:23 am
Forum: Styles, Stylesheets and XML
Topic: Not applying span.class: span vs embedded styles
Replies: 10
Views: 4076

Re: Not applying span.class: span vs embedded styles

The Flare Find & Replace: If you enter a Find what that is not all on one line, or is broken up by inconsistent applications of <span> inline styling, nothing will happen. You might have to reduce the search term to a single word, or even a portion of a word. If you select the (whole project) op...
by crdmerge
Wed Feb 08, 2012 8:21 am
Forum: Web-based Outputs
Topic: Breadcrumbs for topics not in TOC
Replies: 8
Views: 3200

Re: Breadcrumbs for topics not in TOC

No TOC entry = No breadcrumbs. Sorry.

You could always fake breadcrumbs in the non-TOC topics, but there's the maintenance issue there.


Good luck,
Leon
by crdmerge
Wed Feb 08, 2012 5:20 am
Forum: Web-based Outputs
Topic: Breadcrumbs for topics not in TOC
Replies: 8
Views: 3200

Re: Breadcrumbs for topics not in TOC

Could you create browse sequences for those non-TOC L4/L5 topics? AFAIK, you can create multiple sequences (I personally haven't used them in ages, and not in this tool, either). Maybe other users with Flare browse-sequence experience could chime in.

Good luck,
Leon
by crdmerge
Tue Feb 07, 2012 5:10 am
Forum: Flare's General Discussion
Topic: Table accepts character formatting, then ignores
Replies: 8
Views: 2787

Re: Table accepts character formatting, then ignores

Couldn't you surround all of your mono-space content with the <pre></pre> tag set? From the W3schools site ( http://www.w3schools.com/html/html_formatting.asp ): The <pre> tag defines preformatted text. Text in a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves bo...
by crdmerge
Fri Feb 03, 2012 10:37 am
Forum: Flare's General Discussion
Topic: Inserting Drop-Downs Containing Tables
Replies: 3
Views: 1401

Re: Inserting Drop-Downs Containing Tables

I've heard from Flare support (after providing them with a sample topic), and they have: "traced this issue to the fact that the first table in the second grouping contains an image. If multiple tables are selected and one of the tables includes an image, then the insert drop-down text option i...