Editing a WebHelp skin:

Please post all questions and comments regarding Help & Manual 7 here.

Moderators: Alexander Halser, Tim Green

Post Reply
Tansy
Posts: 89
Joined: Wed Aug 25, 2010 11:37 am

Editing a WebHelp skin:

Unread post by Tansy »

Hi,
I need to remove the logo and link associated with the logo from the webhelp skin. How do I do this?
I am now using the Webhelp, iFrames Responsive, White-Grey skin - I have created a copy and am editing it. I removed the company-logo file from Baggage files, and there is a image placeholder where I want no logo. Also, I removed the text variable with the website URL.
User avatar
Tim Green
Site Admin
Posts: 23189
Joined: Mon Jun 24, 2002 9:11 am
Location: Bruehl, Germany
Contact:

Re: Editing a WebHelp skin:

Unread post by Tim Green »

Hi Tansy,

Instead of deleting things, which can cause errors, it is better to just prevent it from being displayed and activated. Edit the skin (not your project!) in Help+Manual and go down to Configuration > Publishing > WebHelp > Layout. In the code editor, locate this block of code further down:

Code: Select all

<!-- Begin of header  --> 
<div id="hmheadbox">
     <div id="mainheader"> 
     <a class="logo" href="<%COMPANY-LOGO-LINK%>"><img src="<%COMPANY-LOGO-IMAGE%>" style="border:none;" /></a>
     <a class="mobilemenu" title="<%SKIN-STRTRANS-SHOWNAV%>"></a>
     <span class="title"><%TITLE%></span>
     </div>
</div>
Replace this line:

Code: Select all

<a class="logo" href="<%COMPANY-LOGO-LINK%>"><img src="<%COMPANY-LOGO-IMAGE%>" style="border:none;" /></a>
With this:

Code: Select all

<a class="logo" href="<%COMPANY-LOGO-LINK%>" style="display: none;"><img src="<%COMPANY-LOGO-IMAGE%>" style="border:none; display: none;" /></a>
The two "display: none;" attributes will ensure that there is no logo or active link.
Regards,
Tim (EC Software Documentation & User Support)

Private support:
Please do not email or PM me with private support requests -- post to the forum directly.
Tansy
Posts: 89
Joined: Wed Aug 25, 2010 11:37 am

Re: Editing a WebHelp skin:

Unread post by Tansy »

Thank you Tim! It worked!
Tansy
Posts: 89
Joined: Wed Aug 25, 2010 11:37 am

Re: Editing a WebHelp skin:

Unread post by Tansy »

Hi Tim, there's another question. How can I change the font size of the chapter text in the same template? Thank you in advance!
User avatar
Tim Green
Site Admin
Posts: 23189
Joined: Mon Jun 24, 2002 9:11 am
Location: Bruehl, Germany
Contact:

Re: Editing a WebHelp skin:

Unread post by Tim Green »

Tansy wrote: Tue Feb 06, 2024 1:58 pm Hi Tim, there's another question. How can I change the font size of the chapter text in the same template? Thank you in advance!
What do you mean by "chapter text"?
Regards,
Tim (EC Software Documentation & User Support)

Private support:
Please do not email or PM me with private support requests -- post to the forum directly.
Tansy
Posts: 89
Joined: Wed Aug 25, 2010 11:37 am

Re: Editing a WebHelp skin:

Unread post by Tansy »

Hi Tim,
I mean the text of topics.
User avatar
Tim Green
Site Admin
Posts: 23189
Joined: Mon Jun 24, 2002 9:11 am
Location: Bruehl, Germany
Contact:

Re: Editing a WebHelp skin:

Unread post by Tim Green »

Tansy wrote: Wed Feb 07, 2024 8:51 am I mean the text of topics.
The formatting of the content of your topics is controlled by the styles in your project and also by any manual formatting you apply in the HM editor.
Regards,
Tim (EC Software Documentation & User Support)

Private support:
Please do not email or PM me with private support requests -- post to the forum directly.
Tansy
Posts: 89
Joined: Wed Aug 25, 2010 11:37 am

Re: Editing a WebHelp skin:

Unread post by Tansy »

Thank you Tim!
Post Reply