• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

gesior help logo

Ganjita

Active Member
Joined
Dec 15, 2009
Messages
493
Reaction score
37
hello, can someone help me?, i have that logo on my webpage gesuir (see the img uploaded),what happens is that this is shown in all sections but I only want to be see in latestnews if someone can help me please,
 

Attachments

Create seperate header.inc.php file for latest news removing this logo from code / image and keep the original for other sections of your site?...
 
layout.php
PHP:
<?PHP echo $news_content; ?>

latestnews.php
PHP:
$news_content .= '<a href="?subtopic=createaccount"><div id="name" style="background-image:url('.$layout_name.'/images/name.png);"></div></a>';
 
layout.php
PHP:
<?PHP echo $news_content; ?>

latestnews.php
PHP:
$news_content .= '<a href="?subtopic=createaccount"><div id="name" style="background-image:url('.$layout_name.'/images/name.png);"></div></a>';

where i need put that?, on layout.php i put under
<div class="BorderTitleText" style="background-image:url(<?PHP echo $layout_name; ?>/images/content/title-background-green.gif);"></div>
that:
<?PHP echo $news_content; ?>

but on latestnews?
 
Put
PHP:
<?PHP echo $news_content; ?>
below
PHP:
<div id="ContentHelper">
in layout.php

Then put this
PHP:
$news_content .= '<a href="?subtopic=createaccount"><div id="name" style="background-image:url('.$layout_name.'/images/name.png);"></div></a>';
below
PHP:
<?php
if(!defined('INITIALIZED'))
    exit;
in latestnews.php
 
Back
Top