Search found 26 matches

by hornetTC
Thu Jun 29, 2017 2:27 am
Forum: Flare's General Discussion
Topic: FTP Publishing permissions
Replies: 0
Views: 1036

FTP Publishing permissions

Hi,
When publishing FLARE outputs to FTP via Flare's Destinations feature, the published targets have a 664 permission. Consequently, other FTP users cannot perform certain actions, such as delete or rename.
We require published files to have an FTP permission of 775, to enable other FTP users to ...
by hornetTC
Tue Jul 08, 2014 1:45 am
Forum: Importing
Topic: Javascript doesnt work properly
Replies: 4
Views: 3023

Re: Javascript doesnt work properly

Hi doforumda

Try this instead:

$(document).ready(function() {
$(function () {
var el = $(".element").html();
console.log(el.length);
}());
});

Or use this if you want to select an .element class that is within #contentBody:

$(document).ready(function() {
$(function () {
var el ...
by hornetTC
Wed Apr 30, 2014 12:18 am
Forum: Flare's General Discussion
Topic: MadCap DropDown head color not working
Replies: 11
Views: 6749

Re: MadCap DropDown head color not working

Not sure if it will work, but did you try adding !important to the css color?

Code: Select all

color: #ef672f !important;
by hornetTC
Mon Apr 28, 2014 12:58 am
Forum: Styles, Stylesheets and XML
Topic: Dropdown hotspot text-decoration
Replies: 3
Views: 2231

Re: Dropdown hotspot text-decoration

Most probably the text-decoration style is being overriden by styles applied to the anchor tag.

Apply the text-decoration styles to a.MCDropDownHotSpot

For example:

Code: Select all

a.MCDropDownHotSpot
{
   text-decoration: underline;
}
by hornetTC
Mon Apr 28, 2014 12:47 am
Forum: Web-based Outputs
Topic: Google Analytics code causing 'busy cursor' in HTML5 output
Replies: 4
Views: 2245

Re: Google Analytics code causing 'busy cursor' in HTML5 output

kkelleher, does your Google Analytics code look similar to this:

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore ...
by hornetTC
Fri Apr 25, 2014 4:03 am
Forum: Styles, Stylesheets and XML
Topic: text falls off of background image; print vs web
Replies: 5
Views: 2086

Re: text falls off of background image; print vs web

Using <br /> to adjust space is not recommended.

Change your html line to:
<p><span class="Button_gray_New">Login</span></p>

To vertically align the label in the middle of the background image, increase the padding-top value to push the label downwards. It should be somewhere in the region of ...
by hornetTC
Tue Apr 15, 2014 7:42 am
Forum: Flare's General Discussion
Topic: Replacing Logo in Skin Editor
Replies: 9
Views: 6060

Re: Replacing Logo in Skin Editor

I think the best option is to resize the logo before inserting it in the skin.
by hornetTC
Tue Apr 15, 2014 6:33 am
Forum: Flare's General Discussion
Topic: Responsive design and navigation
Replies: 2
Views: 1273

Re: Responsive design and navigation

A book icon (when using the default icon set) indicates that the topic contains sub-topics. If there is a topic associated with the _book_, the topic gets shown in the reading pane and the node is expanded to show sub-topics.

For _page_ icons - topics with no sub-topics such as _About BRE Global ...
by hornetTC
Fri Mar 28, 2014 1:42 am
Forum: Microsoft CHM Help
Topic: [SOLVED] HeaderFile / AliasFile not working?
Replies: 3
Views: 3914

Re: HeaderFile / AliasFile not working?

By "doesn't work" means: When i press the "help key" or the "help button" in some dialog of my application the CHM help opens correctly but instead of the corresponding topic i see the browser message that the page could not be found.
I can see the TOC to the left and selecting an entry in the TOC ...
by hornetTC
Thu Mar 27, 2014 2:14 am
Forum: Styles, Stylesheets and XML
Topic: Find/Replace multiple lines
Replies: 5
Views: 3284

Re: Find/Replace multiple lines

Personally I'm not impressed with Flare's search and replace capabilities and prefer TextCrawler - a free application that does bulk find and replace. It is free and downloadable from http://download.cnet.com/TextCrawler/3000-2352_4-10805637.html

This is how to replace all instances of </ol> <ol ...
by hornetTC
Wed Mar 26, 2014 7:05 am
Forum: Web-based Outputs
Topic: Search freezes, search filters don't appear
Replies: 8
Views: 5992

Re: Search freezes, search filters don't appear

Can you try to temporarily use a skin file from a target that works?
If problem persists you know that it is not the skin file that is at fault :)
by hornetTC
Wed Mar 26, 2014 1:59 am
Forum: Styles, Stylesheets and XML
Topic: Need to get rid of table borders
Replies: 8
Views: 3595

Re: Need to get rid of table borders

To troubleshoot this, generate html output and use your browser's developer tools to inspect where the borders are being set.
by hornetTC
Tue Mar 25, 2014 6:00 am
Forum: Web-based Outputs
Topic: HTML5 output: Default.htm or Default_CHS.htm?
Replies: 11
Views: 4475

Re: HTML5 output: Default.htm or Default_CHS.htm?

Use Default_CSH.htm for context sensitive calls.
Use Default.htm for everything else.

http://webhelp.madcapsoftware.com/flare ... Topics.htm
by hornetTC
Mon Mar 24, 2014 7:10 am
Forum: Styles, Stylesheets and XML
Topic: vertical text in table cells
Replies: 3
Views: 2183

Re: vertical text in table cells

The above recommendation will not work with PDF.
by hornetTC
Fri Mar 21, 2014 3:23 pm
Forum: Styles, Stylesheets and XML
Topic: css: automatically use custom OL
Replies: 6
Views: 3633

Re: css: automatically use custom OL

Code: Select all

ol
{
   list-style-image: none;
}

ol
{
   list-style-type: decimal;
}

ol > li::marker
{
   font-weight: bold;
   font-style: normal;
   content: counter(B);
}
by hornetTC
Fri Mar 21, 2014 3:16 pm
Forum: Styles, Stylesheets and XML
Topic: page layout: variable for first h1 following chapter break?
Replies: 3
Views: 1677

Re: page layout: variable for first h1 following chapter break?

In this case, rather than Level 1 you may want to experiment with System variables: ChapterNumber and/or SectionNumber.
Also, rather than using mc-auto-number-format you may set autonumbers on outline toc entries instead.
Refer to:
Set Autonumbers on Outline TOC Entries: http://webhelp ...
by hornetTC
Fri Mar 21, 2014 2:55 am
Forum: Styles, Stylesheets and XML
Topic: page layout: variable for first h1 following chapter break?
Replies: 3
Views: 1677

Re: page layout: variable for first h1 following chapter break?

Not sure if I m understanding your question well, so more details would be appreciated.

The below inserts the heading 1 label in your pages:
1. In Page Layout, select frame where to insert the heading and press F2.
2. In the Frame editor, insert Variable. In Variable Sets choose Heading and then ...
by hornetTC
Fri Mar 21, 2014 2:45 am
Forum: Styles, Stylesheets and XML
Topic: vertical text in table cells
Replies: 3
Views: 2183

Re: vertical text in table cells

Havent tested this in Flare, but this is the standard CSS styling for text rotation. Note that it may not work with older browsers and/or in non-html outputs.

-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg ...
by hornetTC
Fri Mar 21, 2014 1:35 am
Forum: Single-Sourcing
Topic: Same topic, different image
Replies: 4
Views: 3997

Re: Same topic, different image

If you need different images for online and PDF outputs, then conditions are your best bet.

However, if for online output you require different images to be rendered depending on the device I ld use css media queries.
A high level overview on how to do this:
1. Insert both your images in the topic ...
by hornetTC
Thu Mar 20, 2014 9:25 am
Forum: Web-based Outputs
Topic: Google Analytics Search
Replies: 9
Views: 6022

Re: Google Analytics Search

Entering "search" will definitely not work.

Not sure if it works but you may try adding a Search & Replace filter in your GA View (profile) which replaces "#search-" to "?search="
GA should recognize the search phrase as a normal URL parameter.

However the most common solution around is to send ...
by hornetTC
Wed Feb 06, 2013 6:21 am
Forum: Web-based Outputs
Topic: CSH URLs don’t work
Replies: 8
Views: 2717

Re: CSH URLs don’t work

What loads when using: “(…)/[Output File Name]_CSH.html#[CSH ID Name]” ?
Page not found or the default landing page?
by hornetTC
Wed Feb 06, 2013 5:44 am
Forum: Web-based Outputs
Topic: CSH URLs don’t work
Replies: 8
Views: 2717

Re: CSH URLs don’t work

Ensure that when calling the page with the _csh filename, the appropriate extension is used, *.htm or *.html
By default this is Default_csh.htm
by hornetTC
Wed Jan 23, 2013 3:08 am
Forum: Single-Sourcing
Topic: Remove all scripts from html5 head
Replies: 0
Views: 1093

Remove all scripts from html5 head

Hi all,
Is there a way to remove all the script and link tags from the topics' head section of the html5 output files?

I require the output html files to be in the following format:
<html>
<head>
</head>
<body>
...

I managed to exclude my custom scripts but not Flare's tags such as the link to ...