|
Page 1 of 2
|
Press 22 
Joined: June 2007
Posts: 101
Location:
|
 2 Things.
ok well first is replacing the Top Nav on the forum for images, and second thing is Centering the forum, All I really do is design I don't know much about php thought. I'm learning.
|
#1 Sun 08 Jul, 2007 07:18 |
|
Sponsors

|
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
|
|
Mighty Gorgon 
Luca Libralato
Joined: August 2006
Posts: 7192
Location:  Borgo San Michele
|
 Re: 2 Things.
Sorry, but I can't understand what do you need...
Replacing images is really easy, just find where an image is located and replace it...
To center something you may still use the CENTER html tag, even if it is now deprecated from W3C... but all browsers will parse it correctly.
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
|
#2 Sun 08 Jul, 2007 12:04 |
|
Press 22 
Joined: June 2007
Posts: 101
Location:
|
 Re: 2 Things.
Uhhh ok, so the Center html tag (I want to center the tables too) Kinda like on KTM's site
The other thing is the Top Navigation Bar, You know where it says Home * Forum * New * Profile * Search * FAQ * Logout
I want to replace the words with images.
|
#3 Sun 08 Jul, 2007 20:41 |
|
Zuker 
Joined: August 2006
Posts: 2134
Location:  BA
|
 Re: 2 Things.
for the images, u have to create them and add it to overall header, replacing the original links
____________ ? Zuker - EDDB - LPM - Sharefields
|
#4 Sun 08 Jul, 2007 20:46 |
|
Press 22 
Joined: June 2007
Posts: 101
Location:
|
 Re: 2 Things.
Mind a little tutorial on that, All I really do is GFX and Html, i don't know tpl or php.
|
#5 Sun 08 Jul, 2007 21:55 |
|
Zuker 
Joined: August 2006
Posts: 2134
Location:  BA
|
 Re: 2 Things.
it's simple html inside .tpl files
____________ ? Zuker - EDDB - LPM - Sharefields
|
#6 Sun 08 Jul, 2007 22:04 |
|
Press 22 
Joined: June 2007
Posts: 101
Location:
|
 Re: 2 Things.
Zurker, tht really doesn't help me one bit, I'd also like a way to have BBcode in poll options.
Major love to whoever does it.
|
#7 Mon 09 Jul, 2007 03:37 |
|
Zuker 
Joined: August 2006
Posts: 2134
Location:  BA
|
 Re: 2 Things.
i'll tell u how to put images on your header
inside overall_header.tpl
you will see that all links are here
<a href="{U_PORTAL}">{L_HOME}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<a href="{U_INDEX}">{L_INDEX}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- BEGIN switch_upi2db_off -->
<a href="{U_SEARCH_NEW}">{L_NEW2}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_upi2db_off -->
<!-- BEGIN switch_upi2db_on -->
<span style="vertical-align:top;">{L_POSTS}: </span><a href="{U_SEARCH_NEW}">{L_NEW2}</a><span style="vertical-align:top;"> • </span>{L_DISPLAY_U}<span style="vertical-align:top;"> • </span>{L_DISPLAY_M}<span style="vertical-align:top;"> • </span>{L_DISPLAY_P} <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_upi2db_on -->
<!-- BEGIN switch_user_logged_in -->
<a href="{U_PROFILE}">{L_PROFILE}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_user_logged_in -->
<a href="{U_SEARCH}">{L_SEARCH}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<a href="{U_FAQ}">{L_FAQ}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- BEGIN switch_user_logged_out -->
<a href="{U_REGISTER}">{L_REGISTER}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_user_logged_out -->
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT2}</a>
so u will have to replace it one by one with images
for ex:
find
<a href="{U_PORTAL}">{L_HOME}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
replace with
<a href="{U_PORTAL}"><img src="url of the img" title="{L_HOME}" border="0"></a>
____________ ? Zuker - EDDB - LPM - Sharefields
|
#8 Mon 09 Jul, 2007 15:50 |
|
Press 22 
Joined: June 2007
Posts: 101
Location:
|
 Re: 2 Things.
Thank you, that Helps.
but isn't this for the banner not the Nav bar?
<a href="{U_PORTAL}">{L_HOME}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
{DOCTYPE_HTML}
<head>
<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-style-type" content="text/css" />
{META}
{META_TAG}
{NAV_LINKS}
<!--
<meta name="author" content="Icy Phoenix Staff :: http://www.icyphoenix.com/" />
<meta name="description" content="{PAGE_TITLE}" />
<meta name="keywords" content="{PAGE_TITLE}" />
<meta name="robots" content="index,follow" />
-->
<title>{PAGE_TITLE}</title>
<link rel="shortcut icon" href="{FULL_SITE_PATH}images/favicon.ico" />
<link rel="stylesheet" href="{FULL_SITE_PATH}templates/ca_aphrodite/style_{TPL_COLOR}.css" type="text/css" />
<link rel="stylesheet" href="{FULL_SITE_PATH}templates/ca_aphrodite/FAP.css" type="text/css" />
<link rel="stylesheet" href="{FULL_SITE_PATH}templates/common/js/color_wheel.css" type="text/css" />
<script type="text/javascript" src="{FULL_SITE_PATH}language/{L_BBCB_MG_LANG}/bbcb_mg.js"></script>
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/scripts.js"></script>
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/toggle_display.js"></script>
<!-- BEGIN switch_lightbox -->
<link rel="stylesheet" href="{FULL_SITE_PATH}templates/common/js/lightbox.css" type="text/css" />
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/prototype.js"></script>
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/lightbox.js"></script>
<!-- END switch_lightbox -->
<!-- BEGIN switch_ajax_features -->
<script type="text/javascript">
<!--
var S_SID = '{S_SID}';
var ajax_core_defined = 0;
var phpbb_root_path = '{PHPBB_ROOT_PATH}';
var phpEx = '{PHPEX}';
var POST_FORUM_URL = '{POST_FORUM_URL}';
var POST_TOPIC_URL = '{POST_TOPIC_URL}';
var POST_POST_URL = '{POST_POST_URL}';
var LOGIN_MG = '{LOGIN_MG}';
var PORTAL_MG = '{PORTAL_MG}';
var FORUM_MG = '{FORUM_MG}';
var VIEWFORUM_MG = '{VIEWFORUM_MG}';
var VIEWTOPIC_MG = '{VIEWTOPIC_MG}';
var PROFILE_MG = '{PROFILE_MG}';
var POSTING_MG = '{POSTING_MG}';
var SEARCH_MG = '{SEARCH_MG}';
var ajax_page_charset = '{S_CONTENT_ENCODING}';
//-->
</script>
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/ajax/ajax_core.js"></script>
<!-- END switch_ajax_features -->
<!--[if lt IE 7]>
<script type="text/javascript" src="templates/common/js/pngfix.js"></script>
<![endif]-->
<!-- BEGIN mg_switch_xmas_fx -->
<script type="text/javascript">
<!--
//Edit the next few lines to suit your page. Recommended values are:
//numFlakes = 10; downSpeed = 0.01; lrFlakes = 10;
var pictureSrc = '{FULL_SITE_PATH}images/xmas/snfl_01.gif'; //the location of the snowflakes
var pictureWidth = 10; //the width of the snowflakes
var pictureHeight = 12; //the height of the snowflakes
var numFlakes = 20; //the number of snowflakes
var downSpeed = 0.01; //the falling speed of snowflakes (portion of screen per 100 ms)
var lrFlakes = 10; //the speed that the snowflakes should swing from side to side
//relative to distance fallen (swing increases with fewer
//snowflakes to fill available space)
//-->
</script>
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/snow_fx.js"></script>
<!-- END mg_switch_xmas_fx -->
<!-- IE conditional comments: http://msdn.microsoft.com/workshop/author/dhtml/overview/ccomment_ovw.asp -->
<!--[if IE]>
<style type="text/css">
/* IE hack to emulate the :hover & :focus pseudo-classes
Add the selectors below that required the extra attributes */
.row1h, .row1h-new { behavior: url("templates/common/pseudo-hover.htc"); }
</style>
<![endif]-->
<!-- BEGIN switch_dropdown_on -->
<script type="text/javascript">
/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//Contents for menu 1
var menu1 = new Array();
menu1[0] = '<br /><div class="center-block-text"> <form action="{U_SEARCH}" method="post"><input name="search_keywords" type="text" class="post" style="width: 150px;" /> <input type="submit" class="mainoption" value="{L_SEARCH}" /> <br /></form></div>';
menu1[1] = ' <a href="{U_SEARCH}" title="{L_SEARCH_EXPLAIN}">{L_ADV_SEARCH}</a>';
//Contents for menu 2
var menu2 = new Array();
menu2[0] = '<a href="{U_SEARCH_NEW}" title="{L_SEARCH_NEW}">{L_SEARCH_NEW2}</a>';
menu2[1] = '{L_DISPLAY_UNREAD}';
menu2[2] = '{L_DISPLAY_MARKED}';
menu2[3] = '{L_DISPLAY_PERMANENT}';
var menuwidth = '180px'; //default menu width
var menubgcolor = '#F8F8F8'; //menu bgcolor
var disappeardelay = 250; //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick = "no"; //hide menu when user clicks within menu?
/////No further editing needed
var ie4 = document.all;
var ns6 = document.getElementById && !document.all;
if (ie4 || ns6)
{
document.write('<div id="dropmenudiv" class="row1" style="visibility:hidden;width:' + menuwidth + ';" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>');
}
</script>
<script type="text/javascript" src="{FULL_SITE_PATH}templates/common/js/ddmenu.js"></script>
<script type="text/javascript">
if (hidemenu_onclick=="yes")
{
document.onclick=hidemenu;
}
</script>
<!-- END switch_dropdown_on -->
{UPI2DB_FIRST_USE}
</head>
<body onload="PreloadFlag = true;">
<a name="top"></a>
{TOP_HTML_BLOCK}
<table id="forumtable" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="forum-header" align="left" valign="top" height="64" style="padding:5px;">
<a href="{U_PORTAL}" title="{L_HOME}"><img src="{FULL_SITE_PATH}{SITELOGO}" alt="{L_HOME}" title="{L_HOME}" /></a>
</td>
<td class="forum-header" align="center" valign="middle" style="padding-top:2px;">
<!-- BEGIN switch_header_banner -->
<div class="center-block-text">
{HEADER_BANNER_CODE}
</div>
<!-- END switch_header_banner -->
</td>
<!-- BEGIN switch_user_logged_out -->
<td class="forum-header" align="right" valign="top" >
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="200" height="64" id="swf_login">
<param name="movie" value="{FULL_SITE_PATH}templates/ca_aphrodite/images/{TPL_COLOR}/login.swf?sid={S_SID}&action={U_LOGIN_LOGOUT}" />
<param name="quality" value="high" />
<param name="bgcolor" value="#F8F8F8" />
<embed src="{FULL_SITE_PATH}templates/ca_aphrodite/images/{TPL_COLOR}/login.swf?sid={S_SID}&action={U_LOGIN_LOGOUT}" quality="high" bgcolor="#F8F8F8" width="200" height="64" name="swf_login" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
</td>
<!-- END switch_user_logged_out -->
<!-- BEGIN switch_user_logged_in -->
<td class="forum-header header-search" align="right" valign="bottom">
<form action="{U_SEARCH}" method="get">
<input name="search_keywords" type="text" class="post" style="width: 130px;" />
<input type="submit" class="liteoption" value="{L_SEARCH}" />
</form>
</td>
<!-- END switch_user_logged_in -->
</tr>
<!-- TOP LINKS -->
<tr>
<td class="forum-buttons" colspan="3">
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><img src="{IMG_SPACER}" alt="" height="16" align="middle" /></td>
<td style="text-align:center;font-size:11px;color:#FF1010;" width="100%">
<!-- BEGIN mg_switch_user_is_admin -->
<b>{U_ACP}</b> •
<!-- END mg_switch_user_is_admin -->
<a href="{U_PORTAL}">{L_HOME}</a> •
<a href="{U_INDEX}">{L_INDEX}</a> •
<a href="{U_BOARDRULES}">{L_BOARDRULES}</a> •
<!-- BEGIN switch_user_logged_out -->
<a href="{U_REGISTER}"><b>{L_REGISTER}</b></a> •
<!-- END switch_user_logged_out -->
<!-- BEGIN switch_user_logged_in -->
<a href="{U_PROFILE}">{L_CPL_NAV}</a> •
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_dd_off_logged_in -->
<a href="{U_SEARCH_NEW}">{L_NEW2}</a> •
<!-- END switch_dd_off_logged_in -->
<!-- BEGIN switch_dd_on_logged_in -->
<a href="#" onMouseover="dropdownmenu(this,event,menu2,'180px')" onMouseout="delayhidemenu()">{L_POSTS}:</a><a href="{U_SEARCH_NEW}" title="{L_SEARCH_NEW}">{L_NEW}</a>
<!-- END switch_dd_on_logged_in -->
<!-- BEGIN switch_upi2db_on -->
{L_DISPLAY_U} {L_DISPLAY_M} {L_DISPLAY_P} •
<!-- END switch_upi2db_on -->
{PROFILE_VIEW}
{GREETING_POPUP}
<!-- BEGIN switch_dropdown_on -->
<a href="{U_SEARCH}" onMouseover="dropdownmenu(this,event,menu1,'250px')" onMouseout="delayhidemenu()">{L_SEARCH}</a> •
<!-- END switch_dropdown_on -->
<!-- BEGIN switch_dropdown_off -->
<a href="{U_SEARCH}">{L_SEARCH}</a> •
<!-- END switch_dropdown_off -->
<a href="{U_FAQ}">{L_FAQ}</a> •
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>
</td>
<td><img src="{IMG_SPACER}" alt="" height="16" align="bottom" /></td>
</tr>
</table>
</td>
</tr>
<!-- BEGIN switch_header_table -->
<tr>
<td width="100%" colspan="3">
<div class="center-block">
<table class="forumline" width="90%" cellspacing="0" cellpadding="0">
<tr><td class="row-header"><span>{L_STAFF_MESSAGE}</span></td></tr>
<tr><td class="row-post"><div class="post-text"><br />{switch_header_table.HEADER_TEXT}<br /><br /></div></td></tr>
</table>
</div>
</td>
</tr>
<!-- END switch_header_table -->
<!-- BEGIN ctracker_message -->
<tr>
<td width="100%" colspan="3">
<div class="center-block">
<table class="forumline" width="80%" cellspacing="0" cellpadding="0">
<tr>
<td align="center" style="background-color:#{ctracker_message.ROW_COLOR};"><img src="{ctracker_message.ICON_GLOB}" alt="" title="" border="0"></td>
<td align="center" style="background-color:#{ctracker_message.ROW_COLOR};"><span class="gensmall">{ctracker_message.L_MESSAGE_TEXT}</span></td>
</tr>
<tr>
<td class="row1 row-center" colspan="2">
<span class="gensmall"><b><a href="{ctracker_message.U_MARK_MESSAGE}">{ctracker_message.L_MARK_MESSAGE}</a></b></span><br />
</td>
</tr>
</table>
</div>
</td>
</tr>
<!-- END ctracker_message -->
<tr>
<td colspan="3" id="content">
<!--
<div id="quick_links2" style="padding-top: 5px; padding-bottom: 5px; display: none; margin-left: -7px; text-align: left;"><a href="javascript:ShowHide('quick_links','quick_links2','quick_links');" title="{L_SHOW} {L_QUICK_LINKS}"><img src="{SHOW_QUICK_LINKS_IMG}" alt="{L_SHOW} {L_QUICK_LINKS}" height="124" width="22" /></a></div>
<div id="news2" style="padding-top: 5px; padding-bottom: 5px; display: none; margin-left: -7px; text-align: left;"><a href="javascript:ShowHide('news','news2','news');" title="{L_SHOW} {NEWS_TITLE}"><img src="{SHOW_LATEST_NEWS_IMG}" alt="{L_SHOW} {NEWS_TITLE}" height="127" width="22" /></a></div>
<div id="calendar2" style="padding-top: 5px; padding-bottom: 5px; display: visible; margin-left: -7px; text-align: left;"><a href="javascript:ShowHide('calendar_display','calendar2','calendar_display');" title="{L_SHOW} {L_CALENDAR}"><img src="{TOGGLE_ICON}" alt="{L_SHOW} {L_CALENDAR}" height="125" width="22" /></a></div>
-->
<!-- BEGIN switch_user_logged_in -->
<div class="popup{PRIVMSG_IMG}"><a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a></div>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_admin_disable_board -->
<table width="100%" align="center" cellspacing="0" cellpadding="10" border="0">
<tr><td align="center" class="forumline-no"><span class="gen"><font class="topic_ann"><b>{L_BOARD_DISABLE}</b></span></td></tr>
</table>
<!-- END switch_admin_disable_board -->
<!-- BEGIN switch_importal -->
{PORTAL_HEADER}
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
{PORTAL_HEADERLEFT}
<td valign="top">
{PORTAL_HEADERCENTER}
<!-- END switch_impo rtal -->
Last edited by Press 22 on Mon 09 Jul, 2007 20:45; edited 1 time in total |
#9 Mon 09 Jul, 2007 18:47 |
|
Zuker 
Joined: August 2006
Posts: 2134
Location:  BA
|
 Re: 2 Things.
- <!-- BEGIN mg_switch_user_is_admin -->
- <b>{U_ACP}</b> •
- <!-- END mg_switch_user_is_admin -->
- <a href="{U_PORTAL}">{L_HOME}</a> •
- <a href="{U_INDEX}">{L_INDEX}</a> •
- <a href="{U_BOARDRULES}">{L_BOARDRULES}</a> •
- <!-- BEGIN switch_user_logged_out -->
- <a href="{U_REGISTER}"><b>{L_REGISTER}</b></a> •
- <!-- END switch_user_logged_out -->
- <!-- BEGIN switch_user_logged_in -->
- <a href="{U_PROFILE}">{L_CPL_NAV}</a> •
- <!-- END switch_user_logged_in -->
- <!-- BEGIN switch_dd_off_logged_in -->
- <a href="{U_SEARCH_NEW}">{L_NEW2}</a> •
- <!-- END switch_dd_off_logged_in -->
- <!-- BEGIN switch_dd_on_logged_in -->
- <a href="#" onMouseover="dropdownmenu(this,event,menu2,'180px')" onMouseout="delayhidemenu()">{L_POSTS}:</a><a href="{U_SEARCH_NEW}" title="{L_SEARCH_NEW}">{L_NEW}</a>
- <!-- END switch_dd_on_logged_in -->
- <!-- BEGIN switch_upi2db_on -->
- {L_DISPLAY_U} {L_DISPLAY_M} {L_DISPLAY_P} •
- <!-- END switch_upi2db_on -->
- {PROFILE_VIEW}
- {GREETING_POPUP}
- <!-- BEGIN switch_dropdown_on -->
- <a href="{U_SEARCH}" onMouseover="dropdownmenu(this,event,menu1,'250px')" onMouseout="delayhidemenu()">{L_SEARCH}</a> •
- <!-- END switch_dropdown_on -->
- <!-- BEGIN switch_dropdown_off -->
- <a href="{U_SEARCH}">{L_SEARCH}</a> •
- <!-- END switch_dropdown_off -->
- <a href="{U_FAQ}">{L_FAQ}</a> •
- <a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>
There u got all the links that u have to replace with images
____________ ? Zuker - EDDB - LPM - Sharefields
|
#10 Mon 09 Jul, 2007 20:28 |
|
Press 22 
Joined: June 2007
Posts: 101
Location:
|
 Re: 2 Things.
ok i put it in as this
<!-- END mg_switch_user_is_admin -->
<a href="{U_PORTAL}"><img src="IMG_BLACK_HOME" title="{L_HOME}" border="0"></a>;
but then I just get a ";" and no home text, link, or image.
|
#11 Mon 09 Jul, 2007 20:59 |
|
Zuker 
Joined: August 2006
Posts: 2134
Location:  BA
|
 Re: 2 Things.
u are making 2 things wrong
there it's no need inside tpl files to end like in php lines
remove the ;
and the path of the image it's wrong
for ej: templates/mg_themes/images/ice/forum.gif
____________ ? Zuker - EDDB - LPM - Sharefields
|
#12 Mon 09 Jul, 2007 21:07 |
|
Press 22 
Joined: June 2007
Posts: 101
Location:
|
 Re: 2 Things.
ok thx. I got it working
Sorry Zurker, I'm not the BEST at it.
If you can, tell me the coding for a diff image on hover.
But anyways MAJOR THANKS!
|
#13 Mon 09 Jul, 2007 21:15 |
|
Zuker 
Joined: August 2006
Posts: 2134
Location:  BA
|
 Re: 2 Things.
i use this js script
- <script language="Javascript">
- <!-- Swap images
- function Permut (flag,img) {
- if (document.images) {
- if (document.images[img].permloaded) {
- if (flag==1) document.images[img].src = document.images[img].perm.src
- else document.images[img].src = document.images[img].perm.oldsrc
- }
- }
- }
- function preloadPermut (img,adresse) {
- if (document.images) {
- img.onload = null;
- img.perm = new Image ();
- img.perm.oldsrc = img.src;
- img.perm.src = adresse;
- img.permloaded = true;
- }
- }
-
- </script>
and this it's the code for images
<a href="{U_PORTAL}" onmouseover="Permut(1,'IMG1');" onmouseout="Permut(0,'IMG1');">
<img src="link" title="{L_HOME}" border="0" name="IMG1" onLoad="preloadPermut(this,'link2');" ></a>
the js must be inside <head></head>
____________ ? Zuker - EDDB - LPM - Sharefields
|
#14 Mon 09 Jul, 2007 22:53 |
|
|
Page 1 of 2
|
Was this topic useful?
Was this topic useful?
Link this topic |
URL |
|
BBCode |
|
HTML |
|
You cannot post new topics You cannot reply to topics You cannot edit your posts You cannot delete your posts You cannot vote in polls You cannot attach files You can download files You cannot post calendar events
|
|
|
|