MyBB Community Forums

Full Version: Hello
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello,
today i want to ask how to change the Advertise on the theme
this in the attachment

[attachment=25864]
It should be in your header template or something like that. What's your forum URL?
i have searched for it.. but didnt find it..
As Fabio Maia asked, what's your forum URL? We need the link in order to tell you where to edit.
I was just taking a guess. It is kind of logical that the advertisement would be in that template since it is in the header area of your website. But some themes might have their code organized in a different way, so I cannot simply guess where the advertisement is placed in the templates.

My real answer to you was "What's your forum URL?". It will be a lot easier for me if I can just look directly at the website and view its source code. So please provide us your forum URL.
Yup, it is in the header template. Look for it under the logo line (the one starting with <div class="logo">).
Its path is either specified in the template (something like <img class="advertise" src="images/gamesmania/advertise.png">), either in global.css. You must edit the path or replace the image advertise.png that can be found in images/gamesmania.
<a name="top" id="top"></a>
<div id="header">
		{$welcomeblock}
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}
			<navigation>
{$affiliates_header}
			<br />{myadvertisements[zone_1]}
here is my header.


<div class="mainwrap">
<div class="top_bar"></div>
		<div class="header_main"><div class="header_left"><div class="header_right">
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
			<div class="guest_links">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/member.php?action=register" class="register_button"></a></li>
					<li class="guest_or">&nbsp;</li>
					<li><a href="{$mybb->settings['bburl']}/member.php?action=login" class="login_button"></a></li>
				</ul>
			</div>
			<div class="clear"></div>
		</div></div></div>
		<div id="navbar">
			<ul id="nav">
<li><a href="{$mybb->settings['bburl']}">Home</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
<li><a href="{$mybb->settings['bburl']}/donate.php">Donate</a></li>
</ul>
			<div id="search">
			<form action="{$mybb->settings['bburl']}/search.php" method="post">
				<div class="search_input_wrap"><input name="keywords" class="nav_search_input" title="Enter your search keywords" type="text" /></div>
				<input value="" name="submit-search" class="nav_search_button" type="submit" />
				<input type="hidden" name="action" value="do_search" />
			</form>
			</div>
			<div class="clear"></div>
		</div>
	</div>
</div>
<div id="container"><div class="container_wrap">
	<div class="mainwrap">
		<div class="subnav">
		<script type="text/javascript">
		<!--
			lang.username = "{$lang->login_username}";
			lang.password = "{$lang->login_password}";
			lang.login = "{$lang->login}";
			lang.lost_password = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\">{$lang->lost_password}<\/a>";
			lang.register_url = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=register\">{$lang->welcome_register}<\/a>";
			lang.remember_me = "{$lang->remember_me}";
		// -->
</script>
			<div class="float_right"><a href="{$mybb->settings['bburl']}/search.php">Advanced {$lang->toplinks_search}</a></div>
			<span id="quick_login">{$lang->welcome_guest} <a href="{$mybb->settings['bburl']}/member.php?action=login" onclick="MyBB.quickLogin(); return false;">{$lang->welcome_login}</a> &mdash; <a href="{$mybb->settings['bburl']}/member.php?action=register">{$lang->welcome_register}</a></span>
		</div>

here is " header_welcomeblock_guest "
Are you using the My Advertisments plugin?
This came with the theme..

yes i am using My Advertisements
Pages: 1 2