MyBB Community Forums

Full Version: 2 quick questions about theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
http://prntscr.com/xaooc

How can I get it to show that under the header, and how can I do it so if you put your mouse over the trow, it goes into a diff color?
1. Put your menu block below your header block in header template.

2. Add in global.css:

.trow:hover {
background-color: #CC0000; /* change hex as you wish */
}
(2013-03-22, 03:01 AM)effone Wrote: [ -> ]1. Put your menu block below your header block in header template.

2. Add in global.css:

.trow:hover {
background-color: #CC0000; /* change hex as you wish */
}

1. What do you mean by that?

2. Added it, and no change
1. Post your header template.
(2013-03-22, 04:18 AM)effone Wrote: [ -> ]1. Post your header template.

<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<div class="logo" style="margin:0 auto;text-align:center"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>
			<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 />
This is the default header template, not the one in your posted snap.
(2013-03-23, 03:10 AM)effone Wrote: [ -> ]This is the default header template, not the one in your posted snap.

I'm using the default for both of them.

<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<div class="logo" style="margin:0 auto;text-align:center"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>
			<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 />
http://prntscr.com/xft2u
In that case your menu is in somewhere else maybe with position fixed.
You have to provide your site url to identify the code.
(2013-03-23, 06:31 AM)effone Wrote: [ -> ]In that case your menu is in somewhere else maybe with position fixed.
You have to provide your site url to identify the code.

http://ofwgkta.info/forum/
I can't see that menu at your site.
Pages: 1 2