1
jensclas
Drop down menu problem in NewBB

G'day - just installed NewBB latest and I was crusin - but i came across a small (big) problem - take a look at this and you will see what i mean. Resized Image

The theme is scac by Bassman. As a learner I have not tinkered in themes yet and i don't know if this is a module or a theme problem...so your guidance would be fully appreciated.

Cheers

2
Anonymous
Re: Drop down menu problem in NewBB
  • 2004/12/12 20:29

  • Anonymous

  • Posts: 0

  • Since:


It is a theme problem ...

You only have to put <{$xoops_module_header}> into your theme.html ...

3
jensclas
Re: Drop down menu problem in NewBB

Quote:

Bahattee wrote:
It is a theme problem ...

You only have to put <{$xoops_module_header}> into your theme.html ...


Thank you - now I need some more precise directions - where in theme.html do I paste <{$xoops_module_header}> ?

The current theme.html is this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<{$xoops_langcode}>" lang="<{$xoops_langcode}>">
<head>
<meta http-equiv="content-type" content="text/html; charset=<{$xoops_charset}>" />
<meta http-equiv="content-language" content="<{$xoops_langcode}>" />
<meta name="robots" content="<{$xoops_meta_robots}>" />
<meta name="keywords" content="<{$xoops_meta_keywords}>" />
<meta name="description" content="<{$xoops_meta_description}>" />
<meta name="rating" content="<{$xoops_meta_rating}>" />
<meta name="author" content="<{$xoops_meta_author}>" />
<meta name="copyright" content="<{$xoops_meta_copyright}>" />
<meta name="generator" content="XOOPS" />
<title><{$xoops_sitename}> - <{$xoops_pagetitle}></title>
<link href="<{$xoops_url}>/favicon.ico" rel="SHORTCUT ICON" />
<link rel="stylesheet" type="text/css" media="all" href="<{$xoops_url}>/xoops.css" />
<link rel="stylesheet" type="text/css" media="all" href="<{$xoops_themecss}>" />
<script type="text/javascript" language="javascript">
<!--
<{$xoops_js}>
//-->
</script>
</head>
<body>
<table cellspacing="0" id="top">
<tr>
<td class="slogan"><{$xoops_slogan}></td>
</tr>
<tr id="header">
<td id="headerlogo">
<table width="100%" border="0">
<tr>
<td bgcolor="#DDDDFF" align="center" valign="top" height="100">
<div align="center">
<table width="100%" border="0" height="106">
<tr>
<td width="69%" height="96" align="left" valign="top">
<div align="left"><a href="%22%3C%7B$xoops_url%7D%3E/%22%3E"><img src="<{$xoops_imageurl}>logo.gif" width="498" height="100" border="0"></a></div>
</td>
<td align="left" valign="top" width="31%" height="96">
<p>&nbsp;</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table><!--<a href="<{$xoops_url}>/"><img src="<{$xoops_imageurl}>logo.gif" alt="" /></a></td>-->
</tr>
<tr id="header">
<td class="slogan"> <{if $xoops_isuser}><color="#331F64">Welcome, <a href="<{$xoops_url}>/user.php"><{$xoops_uname}></a>!
<{else}> <a href="<{$xoops_url}>/register.php">Become a member</a> of this website.<{/if}> </td>
</tr>
</table>
<table cellspacing="0">
<tr>
<td id="leftcolumn">
<!-- Start left blocks loop -->
<{foreach item=block from=$xoops_lblocks}>
<{include file="scac/theme_blockleft.html"}>
<{/foreach}>
<!-- End left blocks loop -->
</td>
<td id="centercolumn">
<!-- Display center blocks if any -->
<{if $xoops_showcblock == 1}>
<table cellspacing="0">
<tr>
<td id="centerCcolumn" colspan="2">

<!-- Start center-center blocks loop -->
<{foreach item=block from=$xoops_ccblocks}>
<{include file="scac/theme_blockcenter_c.html"}>
<{/foreach}>
<!-- End center-center blocks loop -->

</td>
</tr>
<tr>
<td id="centerLcolumn">

<!-- Start center-left blocks loop -->
<{foreach item=block from=$xoops_clblocks}>
<{include file="scac/theme_blockcenter_l.html"}>
<{/foreach}>
<!-- End center-left blocks loop -->
</td>
<td id="centerRcolumn">

<!-- Start center-right blocks loop -->
<{foreach item=block from=$xoops_crblocks}>
<{include file="scac/theme_blockcenter_r.html"}>
<{/foreach}>
<!-- End center-right blocks loop -->
</td>
</tr>
</table>
<{/if}>
<!-- End display center blocks -->
<div id="content"><{$xoops_contents}></div>
</td>
<{if $xoops_showrblock == 1}>
<td id="rightcolumn">
<!-- Start right blocks loop -->
<{foreach item=block from=$xoops_rblocks}>
<{include file="scac/theme_blockright.html"}>
<{/foreach}>
<!-- End right blocks loop -->
</td>
<{/if}>
</tr>
</table>
<div id="footer"><{$xoops_footer}></div>
<script type="text/Javascript">
<!--
istat = new Image(1,1);
istat.src = "<{$xoops_url}>/modules/istats/include/counter.php?sw="+screen.width+"&sc="+screen.colorDepth+"&referer="+escape(document.referrer)+"&page="+location.href;
//-->
</script>
</body>
</html>

If you can point out exactly where to paste it I should be right as rain!
Thanks

4
irmtfan
Re: Drop down menu problem in NewBB
  • 2004/12/13 5:28

  • irmtfan

  • Module Developer

  • Posts: 3419

  • Since: 2003/12/7


copy and paste from readme file in newbb package:
5. To make the Popup Menu work, make sure that the <{$xoops_module_header}> is included in your theme.html

5
jensclas
Re: Drop down menu problem in NewBB

Quote:

irmtfan wrote:
copy and paste from readme file in newbb package:
5. To make the Popup Menu work, make sure that the <{$xoops_module_header}> is included in your theme.html


Hey thanks - But I understand this is what I need to do - the question is where do I paste it?

6
migoe
Re: Drop down menu problem in NewBB
  • 2004/12/13 8:14

  • migoe

  • Just popping in

  • Posts: 68

  • Since: 2003/4/2 9


Hi,

you must insert the
Quote:
<{$xoops_module_header}>

between
Quote:
<head>... and ...</head>


migoe

7
irmtfan
Re: Drop down menu problem in NewBB
  • 2004/12/13 9:11

  • irmtfan

  • Module Developer

  • Posts: 3419

  • Since: 2003/12/7


Quote:

jensclas wrote:
Quote:

irmtfan wrote:
copy and paste from readme file in newbb package:
5. To make the Popup Menu work, make sure that the <{$xoops_module_header}> is included in your theme.html


Hey thanks - But I understand this is what I need to do - the question is where do I paste it?

jensclas you must check and read the LINK in my last post:
<{$xoops_module_header}>

8
jensclas
Re: Drop down menu problem in NewBB

Hey Thanks Migoe

9
jensclas
Re: Drop down menu problem in NewBB

Quote:

irmtfan wrote:

jensclas you must check and read the LINK in my last post:
<{$xoops_module_header}>


Doh!
Umm someone get me a coffee and wake me up - sorry irmtfan...I didn't recognise the link in your post!
It was excellent!

I have more questions about pasting snippets...so will no go to XOOPS FAQ - perhaps you can help there too!

cheers

Login

Who's Online

267 user(s) are online (165 user(s) are browsing Support Forums)


Members: 0


Guests: 267


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits