Search found 222 matches

by bogdan_cercelaru
Tue Jul 07, 2015 4:16 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Renaming the folder oxygen-webhelp in the webhelp output
Replies: 2
Views: 1926

Re: Renaming the folder oxygen-webhelp in the webhelp output

Hello,

In short, you cannot rename the oxygen-webhelp folder. There are many hard-coded references in the XSLT stylesheets to this folder.

Regards,
Bogdan
by bogdan_cercelaru
Fri Jul 03, 2015 2:34 pm
Forum: Other Issues
Topic: Change the font for the Chapter title in the pdf output
Replies: 10
Views: 6908

Re: Change the font for the Chapter title in the pdf output

Only one thought, when I do those changes to the DITA-OT files, are they not reflected in the fonts and colours I see in the editor, like in any wyziwyg editor? No, they are not. Oxygen is WYSIWYM (What you see is what you mean) and not WYSIWYG, it doesn't perfectly mimic the intended published out...
by bogdan_cercelaru
Thu Jul 02, 2015 10:33 am
Forum: Other Issues
Topic: How can I change the font of a note tag?
Replies: 1
Views: 1212

Re: How can I change the font of a note tag?

Hello, To customize the appearance of the note tags, you can use the "span.note" CSS selector. Unfortunately the Skin Builder does not offer to change this, right? Yes, you're right. The current version of the Skin Builder does not offer the possibility to customize the note tags. Let me k...
by bogdan_cercelaru
Wed Jul 01, 2015 3:05 pm
Forum: Other Issues
Topic: How can I change the color of index links and related links
Replies: 2
Views: 1539

Re: How can I change the color of index links and related li

Hi, If you want to change the appearance of the webhelp output, we recommend creating/keeping a custom CSS file (rather than modifying the built-in one) and setting the "args.css" parameter to point to this file. Also, to have it automatically copied to output, you must set "args.copy...
by bogdan_cercelaru
Tue Jun 30, 2015 10:12 am
Forum: Other Issues
Topic: Change the font for the Chapter title in the pdf output
Replies: 10
Views: 6908

Re: Change the font for the Chapter title in the pdf output

You can change the default fonts by editing the OXYGEN_INSTALL_DIR\frameworks\dita\DITA-OT\plugins\org.dita.pdf2\cfg\fo\font-mappings.xml file. Edit char-set="default" font-face and add Verdana as the first option for the logical-font name="Sans" (for headers) and name="Seri...
by bogdan_cercelaru
Mon Jun 29, 2015 10:54 am
Forum: Other Issues
Topic: Customize image display for the note tag
Replies: 18
Views: 7681

Re: Customize image display for the note tag

Hello, To set a logo using WebHelp Skin Builder, you need to specify an URL that points to an online image (it must be located on an HTTP server). It's not recommended to edit the built-in scenarios because you'll loose the changes when you will upgrade to the latest Oxygen version available. To app...
by bogdan_cercelaru
Fri Jun 26, 2015 11:15 am
Forum: Other Issues
Topic: Customize image display for the note tag
Replies: 18
Views: 7681

Re: Customize image display for the note tag

Hi Bogdan,

To style your WebHelp output, you can try to use the WebHelp Skin Builder tool.

Please let me know if you need any further assistance.

Regards,
Bogdan
by bogdan_cercelaru
Thu Jun 25, 2015 3:27 pm
Forum: Other Issues
Topic: Integrate jquery
Replies: 30
Views: 17199

Re: Integrate jquery

You can use a custom build file to copy your resources to the output folder. You can find below an example of this file: <?xml version="1.0" encoding="UTF-8"?> <project basedir="." default="dist"> <!--The DITA OT default build file--> <import file="build....
by bogdan_cercelaru
Thu Jun 25, 2015 11:41 am
Forum: Other Issues
Topic: Customize image display for the note tag
Replies: 18
Views: 7681

Re: Customize image display for the note tag

Hello Bogdan, To change the icons (images) used for different types of note in webhelp you need to edit the OXYGEN_INSTALL_DIR\frameworks\dita\DITA-OT\plugins\com.oxygenxml.webhelp\oxygen-webhelp\resources\css\webhelp_topic.css and modify " background-image " property to point to your cust...
by bogdan_cercelaru
Wed Jun 24, 2015 3:06 pm
Forum: Other Issues
Topic: Integrate jquery
Replies: 30
Views: 17199

Re: Integrate jquery

Hi Frank, If you add it to createMainFiles.xsl , your custom JavaScript will be added only to the main files ( index.html , index_frames.html and toc.html ). If you want to add it to the topics, you can do that in common.xsl , in the template you mentioned ( jsAndCSS ). Note that common.xsl does not...
by bogdan_cercelaru
Tue Jun 23, 2015 2:53 pm
Forum: Common Problems
Topic: How to use a URL query string to search conditions, to get a
Replies: 1
Views: 1730

Re: How to use a URL query string to search conditions, to g

Hello,

Unfortunately you can't use an HTTP request (URL query string) to execute a search in the current implementation of WebHelp.

Best regards,
Bogdan
by bogdan_cercelaru
Mon Nov 03, 2014 4:07 pm
Forum: Other Issues
Topic: Dynamically hide content in body and TOC
Replies: 8
Views: 5900

Re: Dynamically hide content in body and TOC

Hello, All you have to do is to change your removeAddBodyClass() function implementation with the following function removeAddBodyClass(){ /* For topics loaded in iFrame */ $("body").removeClass(); $("body").addClass($.cookie('body_colour')); /* For TOC */ $("#bck_toc",...