Pagina 1 van 1

plaats van klok in "Forum_Clock_MOD"

Geplaatst: 15 mei 2005, 10:25
door ukkepuk
Ik heb deze mod aan mijn forum toegevoegd.
Echter over de plaats waar deze staat ben ik niet zo tevreden.
Momenteel staat deze midden in de pagina onderaan (niet zo'n beste plaats volgens mij)
Graag zou ik deze vlak naast mijn logo zien staan (tussen logo en navigatie is er nog ruimte).
Is dit mogelijk?
dit stukje code uit index_body.tpl is er volgens mij verantwoordelijk voor, maar weet niet wat en hoe ik dit moet aanpassen.

Code: Selecteer alles

<!-- Clock Code: Start -->
<br />
<table align="center" cellpadding="3" cellspacing="1" border="0" class="forumline">
  <tr>
    <td class="catHead" colspan="1" align="center">
	<span class="cattitle">{CLOCK_NAME}</span>
	</td>
  </tr>
  <tr>
	<td align="center" valign="middle">

	<div align="center"><embed width="170" height="150" src="./Clock.swf">
    </div> 
	
	</td>
  </tr>
</table>
<!-- Clock Code: End -->


Thankx

Geplaatst: 15 mei 2005, 12:49
door abcde
Plaats dat stukje in je overall_header.tpl (en haal het weg uit index_body.tpl) en dan zou die het moeten doen.

Geplaatst: 15 mei 2005, 12:52
door Paul
neej, je moet dan ook de wijzigingen in index.php in page_header.php doen ;)

Geplaatst: 15 mei 2005, 13:27
door ukkepuk
moet deze code in 3 files ingebakken worden?
zowel in index.php, page_header.php en overall_header.tpl :?: :?:
En maakt het dan nog wat uit waar dat je deze code invoegd?

Geplaatst: 15 mei 2005, 13:28
door Paul
2 index.php niet ;)

Geplaatst: 15 mei 2005, 13:29
door Luuk
Nee, als je bij die mod iets moest toevoegen in index.php moet je dat weghalen in index.php en toevoegen in includes/page_header.php
Hetgene wat je in index_body.tpl moest toevoegen, wat je hebt gepost dus, moet je dan in overal_header.tpl toevoegen.

Geplaatst: 15 mei 2005, 13:49
door ukkepuk
Hier is de hele aanpassing.

Code: Selecteer alles

############################################################## 
## MOD Title: Forum Clock 
## MOD Author: Drumstix42 < Drumstix42@aol.com > (Mark Schlitz) http://www.advancedmod.com 
## MOD Description: This MOD will add a simple Flash clock to your
##                  forums. Tested on 2.0.5 and 2.0.6. Should work
##                  on previous version as well.
## MOD Version: 1.0.2 
## 
## Installation Level: Easy 
## Installation Time: 2-5 Minutes 
## Files To Edit: index_body.tpl
## 
## Included Files: Clock.swf
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/  
############################################################## 
## Author Notes: 
##	 This is a very simple MOD to add a Flash clock to the
##       bottom of your forums in no time. It uses the person's
##       computer's clock time, so no configuration is
##       neccessary. It works on 2.0.5 and 2.0.6. Should work
##       fine on just about any version since it's just HTML 
##       code overall. Also, will work with most templates,
##       you just need to know the classes for borders and
##       backgrounds if wanted. 
##
##       For a preview, check out my forums at:
##       http://www.advancedmod.com/forums/
##       And scroll down to the bottom.
##
##       Enjoy!   
############################################################## 
## MOD History: 
## 
##   2003-08-11 - Version 1.0.0 
##      - Clock working fine. No changes needed. 
##   2003-09-13 - Version 1.0.1
##      - Updated to use the $lang system, adding 2 new steps.
##   2003-09-14 - Version 1.0.2
##      - Updated step one adding 'copy ' to the begining, correcting
##        the previous invalid syntax.
##      
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ COPY ]------------------------------------------ 
#Just goes in your main /phpBB2/ folder.
#
 
copy Clock.swf to Clock.swf

# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/index_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
#  
	<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
</tr>
</table>

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#  
<!-- Clock Code: Start -->
<br />
<table align="center" cellpadding="3" cellspacing="1" border="0" class="forumline">
  <tr>
    <td class="catHead" colspan="1" align="center">
	<span class="cattitle">{CLOCK_NAME}</span>
	</td>
  </tr>
  <tr>
	<td align="center" valign="middle">

	<div align="center"><embed width="170" height="150" src="./Clock.swf">
    </div> 
	
	</td>
  </tr>
</table>
<!-- Clock Code: End -->

# 
#-----[ OPEN ]------------------------------------------ 
#
includes/page_header.php

# 
#-----[ FIND ]------------------------------------------ 
#  
	'SITE_DESCRIPTION' => $board_config['site_desc'],

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#  
	'CLOCK_NAME' => $lang['clock_name'],

# 
#-----[ OPEN ]------------------------------------------ 
#
language/lang_english/lang_main.php

# 
#-----[ FIND ]------------------------------------------ 
#  
//
// That's all, Folks!
// -------------------------------------------------

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#  
$lang['clock_name'] = 'Clock';

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM 
Er wordt niets is index.php gewijzigd.
Indien ik dat stuk in include/page_header.php plaats (ergens tussenin) dan krijg ik een foutmelding.
Indien ik dit stuk in overall_header.tpl zet komt het boven m'n forum staan, hetgeen ik ook niet wil :(
Het liefst zie ik het ofwel tussen m'n logo en navigatie staan ofwel uiterst rechtsboven (naast de navigatie)
Kan dit??
En hoe en waar?

Geplaatst: 15 mei 2005, 17:01
door Luuk
Je hoeft dan inderdaad alleen maar overall_header.tpl te wijzigen. Het enige wat belangrijk is aan die code is

Code: Selecteer alles

<embed width="170" height="150" src="./Clock.swf"> 
Dat moet je op de goede plaats zetten, waar je wil. :wink:

Geplaatst: 15 mei 2005, 17:59
door ukkepuk
OK, hier is mijn overall_header.tpl.
Waar moet ik die dan invoegen om die mooi naast mijn logo te krijgen?

Code: Selecteer alles

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="{S_CONTENT_DIRECTION}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}">
<meta http-equiv="Content-Style-Type" content="text/css">
{META}
{NAV_LINKS}
<title>{SITENAME} :: {PAGE_TITLE}</title>
<!-- link rel="stylesheet" href="templates/subSilver/{T_HEAD_STYLESHEET}" type="text/css" -->
<style type="text/css">
<!--
/*
  The original subSilver Theme for phpBB version 2+
  Created by subBlue design
  http://www.subBlue.com

  NOTE: These CSS definitions are stored within the main page body so that you can use the phpBB2
  theme administration centre. When you have finalised your style you could cut the final CSS code
  and place it in an external file, deleting this section to save bandwidth.
*/

/* General page style. The scroll bar colours only visible in IE5.5+ */
body { 
	background-color: {T_BODY_BGCOLOR};
	scrollbar-face-color: {T_TR_COLOR2};
	scrollbar-highlight-color: {T_TD_COLOR2};
	scrollbar-shadow-color: {T_TR_COLOR2};
	scrollbar-3dlight-color: {T_TR_COLOR3};
	scrollbar-arrow-color:  {T_BODY_LINK};
	scrollbar-track-color: {T_TR_COLOR1};
	scrollbar-darkshadow-color: {T_TH_COLOR1};
}

/* General font families for common tags */
font,th,td,p { font-family: {T_FONTFACE1} }
a:link,a:active,a:visited { color : {T_BODY_LINK}; }
a:hover		{ text-decoration: underline; color : {T_BODY_HLINK}; }
hr	{ height: 0px; border: solid {T_TR_COLOR3} 0px; border-top-width: 1px;}

/* This is the border line & background colour round the entire page */
.bodyline	{ background-color: {T_TD_COLOR2}; border: 1px {T_TH_COLOR1} solid; }

/* This is the outline round the main forum tables */
.forumline	{ background-color: {T_TD_COLOR2}; border: 2px {T_TH_COLOR2} solid; }

/* Main table cell colours and backgrounds */
td.row1	{ background-color: {T_TR_COLOR1}; }
td.row2	{ background-color: {T_TR_COLOR2}; }
td.row3	{ background-color: {T_TR_COLOR3}; }

/*
  This is for the table cell above the Topics, Post & Last posts on the index.php page
  By default this is the fading out gradiated silver background.
  However, you could replace this with a bitmap specific for each forum
*/
td.rowpic {
		background-color: {T_TD_COLOR2};
		background-image: url(templates/subSilver/images/{T_TH_CLASS3});
		background-repeat: repeat-y;
}

/* Header cells - the blue and silver gradient backgrounds */
th	{
	color: {T_FONTCOLOR3}; font-size: {T_FONTSIZE2}px; font-weight : bold; 
	background-color: {T_BODY_LINK}; height: 25px;
	background-image: url(templates/subSilver/images/{T_TH_CLASS2});
}

td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
			background-image: url(templates/subSilver/images/{T_TH_CLASS1});
			background-color:{T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid; height: 28px;
}

/*
  Setting additional nice inner borders for the main table cells.
  The names indicate which sides the border will be on.
  Don't worry if you don't understand this, just ignore it :-)
*/
td.cat,td.catHead,td.catBottom {
	height: 29px;
	border-width: 0px 0px 0px 0px;
}
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
	font-weight: bold; border: {T_TD_COLOR2}; border-style: solid; height: 28px;
}
td.row3Right,td.spaceRow {
	background-color: {T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid;
}

th.thHead,td.catHead { font-size: {T_FONTSIZE3}px; border-width: 1px 1px 0px 1px; }
th.thSides,td.catSides,td.spaceRow	 { border-width: 0px 1px 0px 1px; }
th.thRight,td.catRight,td.row3Right	 { border-width: 0px 1px 0px 0px; }
th.thLeft,td.catLeft	  { border-width: 0px 0px 0px 1px; }
th.thBottom,td.catBottom  { border-width: 0px 1px 1px 1px; }
th.thTop	 { border-width: 1px 0px 0px 0px; }
th.thCornerL { border-width: 1px 0px 0px 1px; }
th.thCornerR { border-width: 1px 1px 0px 0px; }

/* The largest text used in the index page title and toptic title etc. */
.maintitle	{
	font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
	text-decoration: none; line-height : 120%; color : {T_BODY_TEXT};
}

/* General text */
.gen { font-size : {T_FONTSIZE3}px; }
.genmed { font-size : {T_FONTSIZE2}px; }
.gensmall { font-size : {T_FONTSIZE1}px; }
.gen,.genmed,.gensmall { color : {T_BODY_TEXT}; }
a.gen,a.genmed,a.gensmall { color: {T_BODY_LINK}; text-decoration: none; }
a.gen:hover,a.genmed:hover,a.gensmall:hover	{ color: {T_BODY_HLINK}; text-decoration: underline; }

/* The register, login, search etc links at the top of the page */
.mainmenu		{ font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT} }
a.mainmenu		{ text-decoration: none; color : {T_BODY_LINK};  }
a.mainmenu:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }

/* Forum category titles */
.cattitle		{ font-weight: bold; font-size: {T_FONTSIZE3}px ; letter-spacing: 1px; color : {T_BODY_LINK}}
a.cattitle		{ text-decoration: none; color : {T_BODY_LINK}; }
a.cattitle:hover{ text-decoration: underline; }

/* Forum title: Text and link to the forums used in: index.php */
.forumlink		{ font-weight: bold; font-size: {T_FONTSIZE3}px; color : {T_BODY_LINK}; }
a.forumlink 	{ text-decoration: none; color : {T_BODY_LINK}; }
a.forumlink:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }

/* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
.nav			{ font-weight: bold; font-size: {T_FONTSIZE2}px; color : {T_BODY_TEXT};}
a.nav			{ text-decoration: none; color : {T_BODY_LINK}; }
a.nav:hover		{ text-decoration: underline; }

/* titles for the topics: could specify viewed link colour too */
.topictitle,h1,h2	{ font-weight: bold; font-size: {T_FONTSIZE2}px; color : {T_BODY_TEXT}; }
a.topictitle:link   { text-decoration: none; color : {T_BODY_LINK}; }
a.topictitle:visited { text-decoration: none; color : {T_BODY_VLINK}; }
a.topictitle:hover	{ text-decoration: underline; color : {T_BODY_HLINK}; }

/* Name of poster in viewmsg.php and viewtopic.php and other places */
.name			{ font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT};}

/* Location, number of posts, post date etc */
.postdetails		{ font-size : {T_FONTSIZE1}px; color : {T_BODY_TEXT}; }

/* The content of the posts (body of text) */
.postbody { font-size : {T_FONTSIZE3}px; line-height: 18px}
a.postlink:link	{ text-decoration: none; color : {T_BODY_LINK} }
a.postlink:visited { text-decoration: none; color : {T_BODY_VLINK}; }
a.postlink:hover { text-decoration: underline; color : {T_BODY_HLINK}}

/* Quote & Code blocks */
.code { 
	font-family: {T_FONTFACE3}; font-size: {T_FONTSIZE2}px; color: {T_FONTCOLOR2};
	background-color: {T_TD_COLOR1}; border: {T_TR_COLOR3}; border-style: solid;
	border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}

.quote {
	font-family: {T_FONTFACE1}; font-size: {T_FONTSIZE2}px; color: {T_FONTCOLOR1}; line-height: 125%;
	background-color: {T_TD_COLOR1}; border: {T_TR_COLOR3}; border-style: solid;
	border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}

/* Copyright and bottom info */
.copyright		{ font-size: {T_FONTSIZE1}px; font-family: {T_FONTFACE1}; color: {T_FONTCOLOR1}; letter-spacing: -1px;}
a.copyright		{ color: {T_FONTCOLOR1}; text-decoration: none;}
a.copyright:hover { color: {T_BODY_TEXT}; text-decoration: underline;}

/* Form elements */
input,textarea, select {
	color : {T_BODY_TEXT};
	font: normal {T_FONTSIZE2}px {T_FONTFACE1};
	border-color : {T_BODY_TEXT};
}

/* The text input fields background colour */
input.post, textarea.post, select {
	background-color : {T_TD_COLOR2};
}

input { text-indent : 2px; }

/* The buttons used for bbCode styling in message post */
input.button {
	background-color : {T_TR_COLOR1};
	color : {T_BODY_TEXT};
	font-size: {T_FONTSIZE2}px; font-family: {T_FONTFACE1};
}

/* The main submit button option */
input.mainoption {
	background-color : {T_TD_COLOR1};
	font-weight : bold;
}

/* None-bold submit button */
input.liteoption {
	background-color : {T_TD_COLOR1};
	font-weight : normal;
}

/* This is the line in the posting page which shows the rollover
  help line. This is actually a text box, but if set to be the same
  colour as the background no one will know ;)
*/
.helpline { background-color: {T_TR_COLOR2}; border-style: none; }

/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
@import url("templates/subSilver/formIE.css"); 
-->
</style>
<!-- BEGIN switch_enable_pm_popup -->
<script language="Javascript" type="text/javascript">
<!--
	if ( {PRIVATE_MESSAGE_NEW_FLAG} )
	{
		window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
	}
//-->
</script>
<!-- END switch_enable_pm_popup -->
</head>
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">

<a name="top"></a>

<table width="100%" cellspacing="0" cellpadding="10" border="0" align="center"> 
	<tr> 
		<td class="bodyline"><table width="100%" cellspacing="0" cellpadding="0" border="0">
			<tr> 
				<td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
				<td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br /><span class="gen">{SITE_DESCRIPTION}<br />&nbsp; </span> 
				<table cellspacing="0" cellpadding="2" border="0">
					<tr> 
						<td align="center" valign="top" nowrap="nowrap"><span class="mainmenu">&nbsp;<a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a></span><span class="mainmenu">&nbsp; &nbsp;<a href="{U_SEARCH}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a>&nbsp; &nbsp;<a href="{U_MEMBERLIST}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a>&nbsp; &nbsp;<a href="{U_GROUP_CP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a>&nbsp; 
						<!-- BEGIN switch_user_logged_out -->
						&nbsp;<a href="{U_REGISTER}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a></span>&nbsp;
						<!-- END switch_user_logged_out -->
						</td>
					</tr>
					<tr>
						<td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu">&nbsp;<a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a>&nbsp; &nbsp;<a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a>&nbsp; &nbsp;<a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a>&nbsp;</span></td>
					</tr>
				</table></td>
			</tr>
		</table>

		<br />
Mijn dank is groot

(Kijk even op mijn forum, dan zie je meteen wat ik bedoel. De klok staat nu vrij onnozel onderaan :? )

Geplaatst: 15 mei 2005, 23:04
door Luuk
Zoek

Code: Selecteer alles

<td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
En zet erachter

Code: Selecteer alles

<td><embed width="200" height="200" src="./Clock.swf"></td>
Ik heb de klok nu net zo groot als het logo gemaakt, dacht dat dat wel mooi was :wink: Je kunt het natuurlijk ook zelf aanpassen naar wat je wilt.

Geplaatst: 16 mei 2005, 07:26
door ukkepuk
Al een stap vooruit.
Als de klok zou verschijnen dan staat hij inderdaad daar waar ik wil, maar hij verschijnt niet :(
Wat nu?

Afbeelding

Geplaatst: 16 mei 2005, 14:27
door Luuk
Zo dan?

Code: Selecteer alles

<td><embed width="200" height="200" src="Clock.swf"></td>

Geplaatst: 16 mei 2005, 18:16
door ukkepuk
nee, zonder succes.
Ik heb ook geprobeerd eenzelfde pad te gebruiken als waar het logo staat en de clock dan ook op dezelfde plaats te zetten, maar nog steeds zonder suc6.
Ik vrees dat het toch niet zo simpel gaat zijn :(

Geplaatst: 17 mei 2005, 15:09
door Luuk
Zet er dan eens de hele link neer, dus http://www....Clock.swf

Geplaatst: 17 mei 2005, 16:47
door ukkepuk
Dit is dus wat je bedoeld?

Code: Selecteer alles

<td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
				<td><embed width="200" height="200" scr="http://www.divinglommel.be/forum/Clock.swf"></td>
Maar helaas, lukt niet. Het resultaat blijft steeds hetzelfde.
Nog mogelijkheden?
Of is het onmogelijk (hetgeen ik niet wil geloven) :shock:

Geplaatst: 17 mei 2005, 17:03
door Luuk
Ah bah, stomme stomme fout :oops:

Code: Selecteer alles

<td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
            <td><embed width="200" height="200" src="http://www.divinglommel.be/forum/Clock.swf"></td> 
scr moet natuurlijk src zijn! :oops:

Geplaatst: 17 mei 2005, 17:34
door ukkepuk
Wow, toppie.
Ge moet maar ene krak zijn :thumb: :thumb:
Maar ik heb deze fout wel gemaakt Luuk, dus jij hoeft je nergens voor te schamen.
Knap werk en nogmaals bedankt :bier: