Sida 1 av 4

Skulle vilja ha en: Drop Down Menu

Postat: 2005-11-14 19:03
av WickeD
Hej!

Jag har nu sökt en bra Drop Down Menu som jag tänkte lägga in i overall_header.tpl

Som liknande denna: http://www.phpbbstyles.com/viewtopic.ph ... light=menu

Synd bara att den inte går att använda till min Plus Portal.

Är det någon som vet av en Mod som gör en liknande Drop Down Menu?

Eller i något annat format än php går väl bra, men det är ju en fördel om det är i php skulle jag tro.

Jag har hittat en del Drop Down Menu men då kostar dom en del, därför vänder jag mig hit och hör om någon har en Drop Down Menu liggandes eller vet av någon sidan som har Drop Down Menu som är gratis.

Postat: 2005-11-14 19:26
av Holger
Sök på drop down hos http://www.hotscripts.com i kategorierna JavaScript eller PHP. Där blir du säkert fyndig!

/H

Edit: varför kan du inte använda den på din sajt?
http://www.phpbbstyles.com/viewtopic.ph ... light=menu

Postat: 2005-11-14 19:30
av WickeD
Därför den är låst till ett tema som dom har gjort.


Från deras sida:

Kod: Markera allt

You must have eXtreme Styles MOD 2.2.x & Aphrodite Theme installed in your forum ... (Downloadable at phpBBStyles.com)

Postat: 2005-11-14 19:35
av Holger
Hm, analysera koden, det kanske inte är så svårt att använda den med en annan style ...

Postat: 2005-11-14 19:39
av WickeD
Problemet är att jag ska lägga in några rader i en file som heter:

Kod: Markera allt

# 
#-----[ OPEN ]------------------------------------------
# 
templates/ca_aphrodite/scripts.js

# 
#-----[ FIND ]------------------------------------------
#
	else 
	{
		itm.visibility = "hide"; 
		return true;
	}
}

# 
#-----[ AFTER, ADD ]------------------------------------------
#
/* XS Drop Down Menus */
var MenuVisible = false;
var showMenu = false;
var showSubMenu = false;
var navRoot = false;
var navTimer = false;
function startList()
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("subnav");
		navRoot.onmouseover=function() 
		{
			navRoot.className="forum-button over";
			MenuVisible = true;
			showMenu = true;
			MenuTimerStop();
		}
		navRoot.onmouseout=function() 
		{
			showMenu = false;
			MenuTimerStart();
		}
		for (i=0; i<navRoot.childNodes.length; i++) 
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					showSubMenu = true;
					MenuTimerStop();
				}
				node.onmouseout=function() 
				{
					showSubMenu = false;
					MenuTimerStart();
				}
			}
		}
	}
}

function HideNav()
{
	navRoot.className="forum-button";
	MenuVisible = false;
}

function CheckNav()
{
	if(MenuVisible && !showMenu && !showSubMenu)
	{
		HideNav();
	}
	MenuTimerStop();
}

function MenuTimerStop()
{
	if(navTimer != false)
	{
		clearTimeout(navTimer);
		navTimer = false;
	}
}

function MenuTimerStart()
{
	if(navTimer == false)
	{
		navTimer = setTimeout('CheckNav()', 200);
	}
}
Och det finns ingen file som heter scripts i mitt tema.

Postat: 2005-11-14 19:42
av Holger
Skapa en ...

Postat: 2005-11-14 19:44
av WickeD
Jag ladda hem temat i fråga, och i scripts filen ser det ut så här:

Kod: Markera allt

var PreloadFlag = false;
var expDays = 90;
var exp = new Date(); 
var tmp = '';
var tmp_counter = 0;
var tmp_open = 0;

exp.setTime(exp.getTime() + (expDays*24*60*60*1000));

function SetCookie(name, value) 
{
	var argv = SetCookie.arguments;
	var argc = SetCookie.arguments.length;
	var expires = (argc > 2) ? argv[2] : null;
	var path = (argc > 3) ? argv[3] : null;
	var domain = (argc > 4) ? argv[4] : null;
	var secure = (argc > 5) ? argv[5] : false;
	document.cookie = name + "=" + escape(value) +
		((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
		((path == null) ? "" : ("; path=" + path)) +
		((domain == null) ? "" : ("; domain=" + domain)) +
		((secure == true) ? "; secure" : "");
}

function getCookieVal(offset) 
{
	var endstr = document.cookie.indexOf(";",offset);
	if (endstr == -1)
	{
		endstr = document.cookie.length;
	}
	return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie(name) 
{
	var arg = name + "=";
	var alen = arg.length;
	var clen = document.cookie.length;
	var i = 0;
	while (i < clen) 
	{
		var j = i + alen;
		if (document.cookie.substring(i, j) == arg)
			return getCookieVal(j);
		i = document.cookie.indexOf(" ", i) + 1;
		if (i == 0)
			break;
	} 
	return null;
}

function ShowHide(id1, id2, id3) 
{
	var res = expMenu(id1);
	if (id2 != '') expMenu(id2);
	if (id3 != '') SetCookie(id3, res, exp);
}
	
function expMenu(id) 
{
	var itm = null;
	if (document.getElementById) 
	{
		itm = document.getElementById(id);
	}
	else if (document.all)
	{
		itm = document.all[id];
	} 
	else if (document.layers)
	{
		itm = document.layers[id];
	}
	if (!itm) 
	{
		// do nothing
	}
	else if (itm.style) 
	{
		if (itm.style.display == "none")
		{ 
			itm.style.display = ""; 
			return 1;
		}
		else
		{
			itm.style.display = "none"; 
			return 2;
		}
	}
	else 
	{
		itm.visibility = "show"; 
		return 1;
	}
}

function showMenu(id)
{
	var itm = null;
	if (document.getElementById) 
	{
		itm = document.getElementById(id);
	}
	else if (document.all)
	{
		itm = document.all[id];
	} 
	else if (document.layers)
	{
		itm = document.layers[id];
	}
	if (!itm) 
	{
		// do nothing
	}
	else if (itm.style) 
	{
		if (itm.style.display == "none")
		{ 
			itm.style.display = ""; 
			return true;
		}
		else
		{
//			itm.style.display = "none"; 
			return true;
		}
	}
	else 
	{
		itm.visibility = "show"; 
		return true;
	}
}

function hideMenu(id)
{
	var itm = null;
	if (document.getElementById) 
	{
		itm = document.getElementById(id);
	}
	else if (document.all)
	{
		itm = document.all[id];
	} 
	else if (document.layers)
	{
		itm = document.layers[id];
	}
	if (!itm) 
	{
		// do nothing
	}
	else if (itm.style) 
	{
		if (itm.style.display == "none")
		{ 
//			itm.style.display = ""; 
			return true;
		}
		else
		{
			itm.style.display = "none"; 
			return true;
		}
	}
	else 
	{
		itm.visibility = "hide"; 
		return true;
	}
}

Det verkar inte vara något som binds till temat utan en vanlig script fil bara, eller har jag fel? Jag borde väl kunna använda denna till min sida?

Postat: 2005-11-14 19:48
av Holger
Jag föreslår att du först skapar en fil som du kallar scripts.js och sätter in endast

Kod: Markera allt

/* XS Drop Down Menus */ 
var MenuVisible = false; 
var showMenu = false; 
var showSubMenu = false; 
var navRoot = false; 
var navTimer = false; 
function startList() 
{ 
   if (document.all&&document.getElementById) 
   { 
      navRoot = document.getElementById("subnav"); 
      navRoot.onmouseover=function() 
      { 
         navRoot.className="forum-button over"; 
         MenuVisible = true; 
         showMenu = true; 
         MenuTimerStop(); 
      } 
      navRoot.onmouseout=function() 
      { 
         showMenu = false; 
         MenuTimerStart(); 
      } 
      for (i=0; i<navRoot.childNodes.length; i++) 
      { 
         node = navRoot.childNodes[i]; 
         if (node.nodeName=="LI") 
         { 
            node.onmouseover=function() 
            { 
               showSubMenu = true; 
               MenuTimerStop(); 
            } 
            node.onmouseout=function() 
            { 
               showSubMenu = false; 
               MenuTimerStart(); 
            } 
         } 
      } 
   } 
} 

function HideNav() 
{ 
   navRoot.className="forum-button"; 
   MenuVisible = false; 
} 

function CheckNav() 
{ 
   if(MenuVisible && !showMenu && !showSubMenu) 
   { 
      HideNav(); 
   } 
   MenuTimerStop(); 
} 

function MenuTimerStop() 
{ 
   if(navTimer != false) 
   { 
      clearTimeout(navTimer); 
      navTimer = false; 
   } 
} 

function MenuTimerStart() 
{ 
   if(navTimer == false) 
   { 
      navTimer = setTimeout('CheckNav()', 200); 
   } 
}
och sedan laddar upp den till ditt template ...

Postat: 2005-11-14 19:50
av WickeD
Okej!

Jag dök på ett problem:

Install säger:

Kod: Markera allt

#-----[ OPEN ]------------------------------------------
# 
templates/ca_aphrodite/style.css

# 
#-----[ FIND ]------------------------------------------
#
.popuppm-new a:hover {
	color: #666;
	text-decoration: underline;
}

# 
#-----[ AFTER, ADD ]------------------------------------------
# 
/* XS Drop Down Menus */
.forum-buttons ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.forum-buttons li {
	float: left;
	position: relative;
}

.forum-buttons li ul {
	display: none;
	position: absolute; 
	top: 15px;
	left: 0;
}
.forum-buttons li > ul {
	top: auto;
	left: auto;
}
.forum-buttons li ul li {
	float: none;
	display: block;
	text-align: left;
}
.forum-buttons li:hover ul, .forum-buttons li.over ul { display: block; }

li.subnav {
	display: block;
	background-color: #F8F8F8;
	border-left: solid 1px #2B438F;
	border-right: solid 1px #2B438F;
	margin: 0;
	padding: 0;
}
li.subnav:hover {
	background: #F0F0F0 url(images/bg_row_hover.gif) bottom right no-repeat; 
}
li.subnav-first {
	border-top: solid 1px #2B438F;
}
html>body li.subnav-first {
	margin-top: 3px;
}
li.subnav-last {
	border-bottom: solid 1px #2B438F;
}
li.subnav div {
	display: block;
	width: 150px;
	margin: 0;
	padding: 3px;
	border: solid 1px;
	border-top-color: #F8F8F8;
	border-left-color: #F8F8F8;
	border-bottom-color: #D0D0D0;
	border-right-color: #D0D0D0;
}
li.subnav a {
	font-size: 11px;
	line-height: 1.2em;
}
li.subnav-spacer {
	display: block;
	background: #3D4E81 url(images/bg_spacerow.gif);
	height: 3px;
	line-height: 3px;
	padding: 0;
}
li.subnav-spacer div {
	border: none;
	margin: 0;
	padding: 0;
	width: 158px;
}
* html .forum-buttons li ul li.subnav-spacer {
	display: none;
}
li.subnav-section div {
	background: #FFF url(images/bg_th.gif) top left repeat-x;
	color: #455995;
	font-weight: bold;
	font-size: 11px;
	float: none;
	text-align: center;
}

.forum-buttons2 {
	text-align: center;
	font-size: 11px;
	color: #FF1010;
}

html>body .forum-buttons2 { white-space: nowrap; }

.forum-buttons2 a, .forum-buttons2 a:visited {
	color: #334C9A;
	text-decoration: none;
	margin: 0 3px;
}

.forum-buttons2 a:hover, .forum-buttons2 a:active {
	color: #FF1010;
	text-decoration: none;
}
Men jag hittar ingen rad som heter så, vart kan man lägga in detta tror du?

Postat: 2005-11-14 19:52
av Holger
Prova att lägga in det långt upp till att börja med ...

Postat: 2005-11-14 20:27
av WickeD
Detta får jag ej till som det ska vara.

1. Det är något i någon rad som ändrar bakgrundsfärgen som är i header till vit.
2. Det blir länkar överst men det är inga under länkar, vilket det ska vara.

Så jag vet inte vad jag ska hitta på, jag har provat på allt jag kan komma på, synd för det än en bra menu som gör det enkelt att ändra länkarna.

Om jag klistrar in filerna här, har du möjlighet att hjälpa mig då?

Det är dessa filer som det ska ändras:
fiblack.css
overall_footer.tpl
overall_header.tpl

Postat: 2005-11-15 08:17
av Holger
Vi provar!

Postat: 2005-11-15 13:19
av WickeD
Ja vi försöker väl att slå våra hjärnor ihop å se om vi får till detta då :D

Install säger:

Kod: Markera allt

#-----[ OPEN ]------------------------------------------
# 
templates/ca_aphrodite/style.css

# 
#-----[ FIND ]------------------------------------------
#
.popuppm-new a:hover {
	color: #666;
	text-decoration: underline;
}

# 
#-----[ AFTER, ADD ]------------------------------------------
# 
/* XS Drop Down Menus */
.forum-buttons ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.forum-buttons li {
	float: left;
	position: relative;
}

.forum-buttons li ul {
	display: none;
	position: absolute; 
	top: 15px;
	left: 0;
}
.forum-buttons li > ul {
	top: auto;
	left: auto;
}
.forum-buttons li ul li {
	float: none;
	display: block;
	text-align: left;
}
.forum-buttons li:hover ul, .forum-buttons li.over ul { display: block; }

li.subnav {
	display: block;
	background-color: #F8F8F8;
	border-left: solid 1px #2B438F;
	border-right: solid 1px #2B438F;
	margin: 0;
	padding: 0;
}
li.subnav:hover {
	background: #F0F0F0 url(images/bg_row_hover.gif) bottom right no-repeat; 
}
li.subnav-first {
	border-top: solid 1px #2B438F;
}
html>body li.subnav-first {
	margin-top: 3px;
}
li.subnav-last {
	border-bottom: solid 1px #2B438F;
}
li.subnav div {
	display: block;
	width: 150px;
	margin: 0;
	padding: 3px;
	border: solid 1px;
	border-top-color: #F8F8F8;
	border-left-color: #F8F8F8;
	border-bottom-color: #D0D0D0;
	border-right-color: #D0D0D0;
}
li.subnav a {
	font-size: 11px;
	line-height: 1.2em;
}
li.subnav-spacer {
	display: block;
	background: #3D4E81 url(images/bg_spacerow.gif);
	height: 3px;
	line-height: 3px;
	padding: 0;
}
li.subnav-spacer div {
	border: none;
	margin: 0;
	padding: 0;
	width: 158px;
}
* html .forum-buttons li ul li.subnav-spacer {
	display: none;
}
li.subnav-section div {
	background: #FFF url(images/bg_th.gif) top left repeat-x;
	color: #455995;
	font-weight: bold;
	font-size: 11px;
	float: none;
	text-align: center;
}

.forum-buttons2 {
	text-align: center;
	font-size: 11px;
	color: #FF1010;
}

html>body .forum-buttons2 { white-space: nowrap; }

.forum-buttons2 a, .forum-buttons2 a:visited {
	color: #334C9A;
	text-decoration: none;
	margin: 0 3px;
}

.forum-buttons2 a:hover, .forum-buttons2 a:active {
	color: #FF1010;
	text-decoration: none;
}
Och i mitt fall blir det denna fil: fiblack.css som ser ut så här:

Kod: Markera allt

/* Based on the original Style Sheet for the fisubsilver v2 Theme for phpBB version 2+
Edited by Daz  - http://www.forumimages.com - last updated 26-06-03 */

/* The content of the posts (body of text) */
body{background:#ffffff;color:#000000;font:12px Verdana,Arial,Helvetica,sans-serif;margin:6px;padding:0;
scrollbar-3dlight-color:#d1d7dc;
scrollbar-arrow-color:#556F9F;
scrollbar-darkshadow-color:#98aab1;
scrollbar-face-color:#D1D8E6;
scrollbar-highlight-color:#ffffff;
scrollbar-shadow-color:#556F9F;
scrollbar-track-color:#efefef}

/* General font families for common tags */
font,th,td,p{font:12px Verdana,Arial,Helvetica,sans-serif}

/* General text */
.gensmall{font-size:10px}
td.genmed,.genmed{font-size:11px}
.explaintitle{font-size:11px;font-weight:bold;color:#5c81b1}

/* General page style */
a:link,a:active,a:visited,a.postlink{color:#02479B;text-decoration:none}
a:hover{color:#02479B;text-decoration:underline}

/* titles for the topics:could specify viewed link colour too */
.topictitle{font-size:11px;font-weight:bold}
a.topictitle:visited{color:#3874BD}
a.topictitle:hover{color:#113C70}

/* titles for the statistics mod tables only */
.cattitle{font-size:11px;font-weight:bold}
a.cattitle:visited{color:#113C70}
a.cattitle:hover{color:#113C70}

/* titles for the topics:could specify viewed link colour too */
td.cathead{font-weight:bold;letter-spacing:1px;background:#d9e2ec url(images/cellpic1.gif);
height:29px;text-indent:4px}

/* Name of poster in viewmsg.php and viewtopic.php and other places */
.name{font-size:11px;font-weight: bold}

hr{border: 0px solid #ffffff;border-top-width:1px;height:0px}

/* Category gradients*/
td.cat{font-weight:bold;letter-spacing:1px;background:#D5D8DF url(images/cellpic1.gif);
height:27px;text-indent:4px}

/* Main table cell colours and backgrounds */
.row1{background:#EEEEF2}
.row2,.helpline{background:#E0E0EA}
.row3{background:#cedcec}
.row4{background:#F4F4F6 url(images/cellpic4.gif) repeat-x}
.row5{background:#EEF2FA url(images/cellpic9.gif) repeat-x}
.row6{background:#E4E7ED url(images/cellpic10.gif) repeat-x}
.row7{background:#EDF1F9 url(images/cellpic11.gif) repeat-x}
.row8{background:#F4F4F6 url(images/cellpic12.gif) repeat-x}
.row9{background:#F6F5F8 url(images/cellpic13.gif) repeat-y}

td.spacerow{background:#F4F4F6 url(images/cellpic4.gif) repeat-x}

/* This is for the table cell above the Topics,Post & Last posts on the index.php */
td.rowpic{background:#D5D8DF url(images/cellpic2.jpg)}

/* Table Header cells */
th{background:#3D5B92 url(images/cellpic3.gif);color:#ffffff;font-size:11px;
font-weight:bold;height:28px;text-align:center;padding-left:8px;padding-right:8px}

.pica{background:#42738B url(images/cellpic8.gif);color:#ffffff;font-size:11px;
font-weight:bold;height:28px;text-align:center;padding-left:8px;padding-right:8px}

.picb{background:#B85F01 url(images/cellpic5.gif);color:#ffffff;font-size:11px;
font-weight:bold;height:28px;text-align:center;padding-left:8px;padding-right:8px}

.picc{background:#4C8F40 url(images/cellpic6.gif);color:#ffffff;font-size:11px;
font-weight:bold;height:28px;text-align:center;padding-left:8px;padding-right:8px}

.picd{background:#8C4270 url(images/cellpic7.gif);color:#ffffff;font-size:11px;
font-weight:bold;height:28px;text-align:center;padding-left:8px;padding-right:8px}

.pice{background:#C8CD52 url(images/cellpic14.gif);color:#ffffff;font-size:11px;
font-weight:bold;height:28px;text-align:center;padding-left:8px;padding-right:8px}

.picf{background:#3D9080 url(images/cellpic15.gif);color:#ffffff;font-size:11px;
font-weight:bold;height:28px;text-align:center;padding-left:8px;padding-right:8px}

/* This is the border line & background colour round the entire page */
.bodyline{background:#C1D2EC;border:1px solid #1C1A8C}

/* This is the outline round the main forum tables */
.forumline{background:#A5ABB9;border:1px solid #011C57}

/* The largest text used in the index page title and toptic title etc. */
.maintitle,h1{
font:bold 20px/120% "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;text-decoration:none;color:#5c81b1}

.subtitle,h2{font:bold 18px/180% "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;
text-decoration:none}

/* Used for the navigation text,(Page 1,2,3 etc) and the navigation bar when in a forum */
.nav{font-size:11px;font-weight:bold}
.postbody{font-size:12px;line-height:125%}

/* Location,number of posts,post date etc */
.postdetails{font-size:10px;color:#00396a}

/* Quote blocks */
.quote{background:#fafafa;border:1px solid #d1d7dc;font-size:11px;line-height:125%}
.quotediv{background:#fafafa;border: 1px solid #9ca9b4;border-top:0; padding:5px;overflow:auto;width:90%;text-align:left}

/* Code blocks */
.code{background:#fafafa;border:1px solid #d1d7dc;color:#006600;
font:12px Courier,"Courier New",sans-serif;padding:5px}

/* This is for the error messages that pop up */
.errorline{background:#add8e6;border:1px solid #006699}

/* Form elements */
form{display:inline}

input{font:11px Verdana,Arial,Helvetica,sans-serif}

select{background:#ffffff;font:11px Verdana,Arial,Helvetica,sans-serif}

input.post,textarea.post{background:#ffffff;border:1px solid #000000;
font:11px Verdana,Arial,Helvetica,sans-serif;padding-bottom:2px;padding-left:2px}

input.button,input.liteoption,.fakebut{border:1px solid #000000;background:#fafafa;font-size:11px}
input.catbutton{border:1px solid #000000;background:#fafafa;font-size:10px}
input.mainoption{border:1px solid #000000;background:#fafafa;font-size:11px;font-weight:bold}

a.but,a.but:hover,a.but:visited{color:#000000;text-decoration:none}

/* This is the line in the posting page which shows the rollover
help line. Colour value in row2 */
.helpline{border:0 solid;font-size:10px}

/* This is the gradient background at the top of the page */
.topbkg{background: #dbe3ee url(images/cellpic_bkg.jpg) repeat-x}
.topnav{font-size:10px;background: #e5ebf3 url(images/cellpic_nav.gif) repeat-x;color:#dd6900;
height:24px;white-space:nowrap;border: 0px solid #91a0ae;border-width: 1px 0px 1px 0px}
.topnavb{font-size:11px;background: #e5ebf3 url(images/cellpic_navb.gif) repeat-x;color:#1B1B8F;
height:35px}
.topnavc{font-size:10px;background: #e5ebf3 url(images/cellpic_navc.gif) repeat-x;color:#dd6900;
height:13px}

/* Admin & Moderator Colours MODification */
.admin,.mod{font-size:11px;font-weight:bold}
.admin,a.admin,a.admin:visited{color:#ffa34f}
.mod,a.mod,a.mod:visited{color:#006600}
a.admin:hover,a.mod:hover{color:#dd6900}

/* Specify the space around images */
.imgtopic,.imgicon{margin-left:3px}
.imgspace{margin-left:1px;margin-right:2px}
.imgfolder{margin:1px 4px 1px 4px}

/* Gets rid of the need for border="0" on hyperlinked images */
img{border:0 solid}

/* Background images for tables */
.tbl{border-collapse:collapse;height:4px;width:100%}
.tbll{background: url(images/tb4_l.gif) no-repeat;width:8px}
.tblbot{background: url(images/tb4_m.gif) repeat-x;width:100%}
.tblr{background: url(images/tb4_r.gif) no-repeat;width:8px}

/* Code blocks */ 
.codetitle{background: #cdd6de;border:1px solid #9ca9b4;padding:5px;width:90%;font-weight:bold; text-align:left; 
margin-top:10px} 
.codediv{background:#fafafa;border: 1px solid #9ca9b4;color:#006600;border-top:0; 
font:12px Courier,"Courier New",sans-serif;padding:5px;overflow:auto;width:90%;height:50px;text-align:left}

/* FI Colour Palette MOD - START */
.colouter,.col{border:1px solid #000;margin-left:10px}
.colouter{border-right-width:0;cursor:pointer}
.col{margin:0;padding:0 0 0 7px;display:inline;border-width:1px 1px 0 0;font-size:7px}
/* FI Colour Palette MOD - END */

abbr, acronym {
	border-bottom: 1px dotted #333;
	cursor: help;
}

.imgfade{filter:alpha(opacity=50); -moz-opacity:0.5;margin-left:3px}
.imgfull{filter:alpha(opacity=100); -moz-opacity:1;margin-left:3px} 
Och då kommer frågan vart jag ska lägga in dom raderna?

Postat: 2005-11-15 13:33
av Holger
Lägg till det före

Kod: Markera allt

/* The content of the posts (body of text) */

Postat: 2005-11-15 13:41
av WickeD
Då kom vi till denna fil: scripts.js
Ska jag fortfarande bara lägga in det som du har skrivit i inlägget ovan?