Page 1 of 1

Responsive Webhelp output: space between Logo and Title

Posted: Wed Jun 20, 2018 1:30 pm
by pieterjan_vdw
Would it be possible to change the CSS a little in all default responsive webhelp output templates.
By default the logo and the title of document stick to each other.
Would be great if some extra margin of +/- 20 px is added by default right after the logo (.wh_logo.hidden-xs) in all templates.

Thank you.

Re: Responsive Webhelp output: space between Logo and Title

Posted: Wed Jun 20, 2018 4:36 pm
by Costin
Hello,

Thank you for your feedback!

I have just logged your suggestion as an improvement request in our internal improvements tracking system.
Unfortunately, as this is a thing of each user's preference, I can not guarantee this will be implemented.
However, you can easily insert a space between the logo and the title, by using a custom CSS which would just set a margin to the right of the logo of the desired size, i.e:

Code: Select all

.wh_logo.hidden-xs{
margin-right: 20px;
}
then just pass the .css file to the transformation. For that, just edit the scenario and, in the configuration dialog, go to the Parameters tab, set "args.copy.css" parameter to "yes" and set the path to your custom .css file as value for the "custom.css" parameter.

Best Regards,
Costin

Re: Responsive Webhelp output: space between Logo and Title

Posted: Mon Jun 25, 2018 12:53 pm
by pieterjan_vdw
Hi Costin,

Thank you.

I will use the custom CSS for now.