MyBB Community Forums

Full Version: Change a thing in my theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Guys!
I need help.
See this screen shot:
[attachment=24110]

I want separate my menu and welcome block like space between logo and menu.

Header Template:

<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
<ul id="nav">
        <li><a href="#">Home</a>
            <ul>
                <li><a href="/usercp.php">كنترل پنل</a></li>
                <li><a href="/online.php">ليست افراد آنلاين</a></li>
                <li><a href="/search.php">جستجو</a></li>
                <li><a href="/help.php">راهنما</a></li>
            </ul>
        </li>
        <li><a href="#">Links</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
        <li><a href="#">PM</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
        <li><a href="#">US</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
        <li><a href="#">Other</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
    </ul> 
			<hr class="hidden" />
			<div id="panel">
				{$welcomeblock}
			</div>
		</div>
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}
			<navigation>
			<br />
what is the theme ? you can try moving panel div to top of menu

<div id="panel">
        {$welcomeblock}
</div>

move it to top of <ul id="nav">

without any change.
I create it myself.
^ above change not reflected ? is it for iriboard.com/forum/ ? AND can the guests see that theme ?
I am creating in localhost.

when i move it to top of <ul id="nav">, welcome block move to top but not separate!!
Try to replace it with this:

<div id="container">
        <a name="top" id="top"></a>
        <div id="header">
            <div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
<ul id="nav">
        <li><a href="#">Home</a>
            <ul>
                <li><a href="/usercp.php">كنترل پنل</a></li>
                <li><a href="/online.php">ليست افراد آنلاين</a></li>
                <li><a href="/search.php">جستجو</a></li>
                <li><a href="/help.php">راهنما</a></li>
            </ul>
        </li>
        <li><a href="#">Links</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
        <li><a href="#">PM</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
        <li><a href="#">US</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
        <li><a href="#">Other</a>
            <ul>
                <li><a href="#">Hover 1</a></li>
                <li><a href="#">Hover 2</a></li>
                <li><a href="#">Hover 3</a></li>
                <li><a href="#">Hover 4</a></li>
            </ul>
        </li>
    </ul><br />
            <hr class="hidden" />
            <div id="panel">
                {$welcomeblock}
            </div>
        </div>
        <hr class="hidden" />
        <br class="clear" />
        <div id="content">
            {$pm_notice}
            {$bannedwarning}
            {$bbclosedwarning}
            {$unreadreports}
            {$pending_joinrequests}
            <navigation>
            <br />
Thanks a lot guys!
I will use other method for show links!
Thanks again.