Editing a WebHelp skin:
Moderators: Alexander Halser, Tim Green
Editing a WebHelp skin:
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.
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.
- Tim Green
- Site Admin
- Posts: 23371
- Joined: Mon Jun 24, 2002 9:11 am
- Location: Bruehl, Germany
- Contact:
Re: Editing a WebHelp skin:
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:
Replace this line:
With this:
The two "display: none;" attributes will ensure that there is no logo or active link.
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>
Code: Select all
<a class="logo" href="<%COMPANY-LOGO-LINK%>"><img src="<%COMPANY-LOGO-IMAGE%>" style="border:none;" /></a>
Code: Select all
<a class="logo" href="<%COMPANY-LOGO-LINK%>" style="display: none;"><img src="<%COMPANY-LOGO-IMAGE%>" style="border:none; display: none;" /></a>
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.
Tim (EC Software Documentation & User Support)
Private support:
Please do not email or PM me with private support requests -- post to the forum directly.
Re: Editing a WebHelp skin:
Thank you Tim! It worked!
Re: Editing a WebHelp skin:
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!
- Tim Green
- Site Admin
- Posts: 23371
- Joined: Mon Jun 24, 2002 9:11 am
- Location: Bruehl, Germany
- Contact:
Re: Editing a WebHelp skin:
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.
Tim (EC Software Documentation & User Support)
Private support:
Please do not email or PM me with private support requests -- post to the forum directly.
Re: Editing a WebHelp skin:
Hi Tim,
I mean the text of topics.
I mean the text of topics.
- Tim Green
- Site Admin
- Posts: 23371
- Joined: Mon Jun 24, 2002 9:11 am
- Location: Bruehl, Germany
- Contact:
Re: Editing a WebHelp skin:
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.
Tim (EC Software Documentation & User Support)
Private support:
Please do not email or PM me with private support requests -- post to the forum directly.