Hi Ziggy
For removing the logo from the theme you need to modify portal_normal.vm inside the templates folder of your theme:
To do so replace display:block with display:none in the following code :
1#if ($company_logo != "")
2 <style type="text/css">
3 /* <![CDATA[ */
4 #banner .logo a {
5 background: url($company_logo) no-repeat;
6 display: block;
7 font-size: 0;
8 height: ${company_logo_height}px;
9 text-indent: -9999em;
10 width: ${company_logo_width}px;
11 }
12
13 #ie6_png_fix()
14 /* ]]> */
15 </style>
16 #end
Also you can remove the following code:
1<h1 class="logo">
2 <a class="png" href="$company_url">$company_name</a>
3
4 <span class="current-community">
5 $community_name
6 </span>
7 </h1>
HTH
Parul Seth
Impetus Infotech (India) Pvt. Ltd.
Please sign in to flag this as inappropriate.