Responsive Webhelp output: space between Logo and Title

Are you missing a feature? Request its implementation here.
pieterjan_vdw
Posts: 41
Joined: Wed Jun 20, 2018 11:30 am

Responsive Webhelp output: space between Logo and Title

Post 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.
Costin
Posts: 829
Joined: Mon Dec 05, 2011 6:04 pm

Re: Responsive Webhelp output: space between Logo and Title

Post 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
Costin Sandoi
oXygen XML Editor and Author Support
pieterjan_vdw
Posts: 41
Joined: Wed Jun 20, 2018 11:30 am

Re: Responsive Webhelp output: space between Logo and Title

Post by pieterjan_vdw »

Hi Costin,

Thank you.

I will use the custom CSS for now.
Post Reply