MyBB Community Forums

Full Version: Promblems At The Forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Inserted the code. But no changes.
(2009-09-27, 01:46 AM)khim Wrote: [ -> ]That still does not work. Any other ideas.

You haven't done the change I said to do, it's still exactly the same as it was before.

<center><marquee><a href="http://techblog.blogetery.com/">We Have Replaced Our News And Announcements Sub Forum With A Special Blog. Use the link at the top of the webpage for news/updates and heaps more. The blog will be online when the site is down.</marquee></center>

You still haven't closed the <a> tag.
Where do I insert this code.
Wherever you've put the code I quoted above. The code above is what you currently have, you need to add </a> before </marquee>
Have I inserted the </a> now?
Can you list the full code you have put into your template?
@ khim: I think you put the \ after ". You should put the \ before the ".

It should be like this:

    lang.lost_password = " <a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\" class=\"login\">{$lang->lost_password}<\/a>";
    lang.register_url = "<a href=\"{$mybb->settings['bburl']}/member.php?action=register\" class=\"register\">{$lang->welcome_register}<\/a>";

Not like this:

    lang.lost_password = " <a href="\{$mybb->settings['bburl']}/member.php?action=lostpw\" class=\"login\">{$lang->lost_password}</a>";
    lang.register_url = "<a href="\{$mybb->settings['bburl']}/member.php?action=register\" class=\"register\">{$lang->welcome_register}</a>";
(2009-09-27, 01:11 PM)khim Wrote: [ -> ]Have I inserted the </a> now?

Yes Smile
I putted in the </a> but still no effect of anything.
Full Code Of My Template

<div class="upper_panel">
 <span
class="float_right"><a href="http://www.biosmods.com"
class="bios">Bios Mods</a><a href="donate.php"
class="donate">Donate</a><a href="/store"
class="store">Online Store</a><a
href="/misc.php?action=rules" class="rules">Forum
Rules</a><a href="games.php" class="games">Games
Section</a><a href="{$mybb->settings['bburl']}/search.php"
class="search">{$lang->toplinks_search}</a><a
href="{$mybb->settings['bburl']}/memberlist.php"
class="memberlist">{$lang->toplinks_memberlist}</a><a
href="{$mybb->settings['bburl']}/calendar.php"
class="calendar">{$lang->toplinks_calendar}</a><a
href="{$mybb->settings['bburl']}/misc.php?action=help"
class="help">{$lang->toplinks_help}</a></span>

<script type="text/javascript">
<!--
	lang.username = "{$lang->login_username}";
	lang.password = "{$lang->login_password}";
	lang.login = "{$lang->login}";
lang.lost_password = " <a
href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\"
class=\"login\">{$lang->lost_password}</a>";
lang.register_url = "<a
href=\"{$mybb->settings['bburl']}/member.php?action=register\"
class=\"register\">{$lang->welcome_register}</a>";
// -->
</script>

<span id="quick_login">{$lang->welcome_guest} <a href="{$mybb->settings['bburl']}/member.php?action=login" onclick="MyBB.quickLogin();
return false;"
class="login">{$lang->welcome_login}</a><a
href="{$mybb->settings['bburl']}/member.php?action=register"
class="register">{$lang->welcome_register}</a></span>

</div>

I hope everything is right.
Pages: 1 2