Changing Headline - Black Pearl
Changing Headline
Okay, So I have tried deleting the headline and for some reason they just doesnt seem to work. As you can see here at invisiblehiders.net, I have text at the top right that I would just like to get completely rid of. If you can help, it would be greatly appreciated. Thank you.
-
- Registered User
- Posts: 27
- Joined: Tue Mar 06, 2012 4:41 am
Re: Changing Headline
Hi,
I wonder what did you try exactly?
EDIT:
...and how should it look after removal (exactly!)
I wonder what did you try exactly?
EDIT:
...and how should it look after removal (exactly!)
-
- Registered User
- Posts: 227
- Joined: Tue Jul 21, 2009 7:01 pm
- Location: Rotterdam, Netherlands, Europe, Earth.
- Name: Joshua 203
Re: Changing Headline
Sorry, I have been busy lately. Well I just want there to be a logo. The top right should be completely gone. I dont want anything there. I just want my picture logo on the top left to be in the header.
-
- Registered User
- Posts: 27
- Joined: Tue Mar 06, 2012 4:41 am
Re: Changing Headline
In overall_header.html find:
replace with:
the align="left" can be changed to suite your taste... left, center or right
Code: Select all
<div id="top_logo">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td height="150" align="left" valign="middle"><a href="{U_INDEX}">{SITE_LOGO_IMG}</a></td>
<td align="center" valign="middle"><h1>{SITENAME}</h1><span class="gen">{SITE_DESCRIPTION}</span></td>
<td align="right" valign="top"> </td>
</tr>
</table>
</div>
replace with:
Code: Select all
<div id="top_logo">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td height="150" align="left" valign="middle"><a href="{U_INDEX}">{SITE_LOGO_IMG}</a></td>
</tr>
</table>
</div>
the align="left" can be changed to suite your taste... left, center or right

-
- Registered User
- Posts: 227
- Joined: Tue Jul 21, 2009 7:01 pm
- Location: Rotterdam, Netherlands, Europe, Earth.
- Name: Joshua 203