Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post 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.
 



 
Press 22Send private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post 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
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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.
 



 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Things. 
 
Mind a little tutorial on that, All I really do is GFX and Html, i don't know tpl or php.
 



 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Things. 
 
it's simple html inside .tpl files
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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.
 



 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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

    
Code: [Download] [Hide] [Select]
    <a href="{U_PORTAL}">{L_HOME}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <a href="{U_INDEX}">{L_INDEX}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <!-- BEGIN switch_upi2db_off -->
        <a href="{U_SEARCH_NEW}">{L_NEW2}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <!-- END switch_upi2db_off -->
        <!-- BEGIN switch_upi2db_on -->
        <span style="vertical-align:top;">{L_POSTS}:&nbsp;</span><a href="{U_SEARCH_NEW}">{L_NEW2}</a><span style="vertical-align:top;">&nbsp;•&nbsp;</span>{L_DISPLAY_U}<span style="vertical-align:top;">&nbsp;•&nbsp;</span>{L_DISPLAY_M}<span style="vertical-align:top;">&nbsp;•&nbsp;</span>{L_DISPLAY_P}&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <!-- END switch_upi2db_on -->
        <!-- BEGIN switch_user_logged_in -->
        <a href="{U_PROFILE}">{L_PROFILE}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <!-- END switch_user_logged_in -->
        <a href="{U_SEARCH}">{L_SEARCH}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <a href="{U_FAQ}">{L_FAQ}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <!-- BEGIN switch_user_logged_out -->
        <a href="{U_REGISTER}">{L_REGISTER}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;
        <!-- 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

Code: [Download] [Hide] [Select]
        <a href="{U_PORTAL}">{L_HOME}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;


replace with

Code: [Download] [Hide] [Select]
        <a href="{U_PORTAL}"><img src="url of the img" title="{L_HOME}" border="0"></a>

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Things. 
 
Thank you, that Helps.            

but isn't this for the banner not the Nav bar?
Code: [Download] [Hide] [Select]
        <a href="{U_PORTAL}">{L_HOME}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;



Code: [Download] [Hide] [Select]
{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">&nbsp;<form action="{U_SEARCH}" method="post"><input name="search_keywords" type="text" class="post" style="width: 150px;" />&nbsp;<input type="submit" class="mainoption" value="{L_SEARCH}" />&nbsp;<br /></form></div>';
menu1[1] = '&nbsp;<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}&amp;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}&amp;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>&nbsp;•
                    <!-- END mg_switch_user_is_admin -->
                    <a href="{U_PORTAL}">{L_HOME}</a>&nbsp;•
                    <a href="{U_INDEX}">{L_INDEX}</a>&nbsp;•
                    <a href="{U_BOARDRULES}">{L_BOARDRULES}</a>&nbsp;•
                    <!-- BEGIN switch_user_logged_out -->
                    <a href="{U_REGISTER}"><b>{L_REGISTER}</b></a>&nbsp;•
                    <!-- END switch_user_logged_out -->
                    <!-- BEGIN switch_user_logged_in -->
                    <a href="{U_PROFILE}">{L_CPL_NAV}</a>&nbsp;•
                    <!-- END switch_user_logged_in -->
                    <!-- BEGIN switch_dd_off_logged_in -->
                    <a href="{U_SEARCH_NEW}">{L_NEW2}</a>&nbsp;•
                    <!-- 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}&nbsp;{L_DISPLAY_M}&nbsp;{L_DISPLAY_P}&nbsp;•
                    <!-- 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>&nbsp;•
                    <!-- END switch_dropdown_on -->
                    <!-- BEGIN switch_dropdown_off -->
                    <a href="{U_SEARCH}">{L_SEARCH}</a>&nbsp;•
                    <!-- END switch_dropdown_off -->
                    <a href="{U_FAQ}">{L_FAQ}</a>&nbsp;•
                    <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 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Things. 
 
Code: [Download] [Hide]
  1.                     <!-- BEGIN mg_switch_user_is_admin -->  
  2.                     <b>{U_ACP}</b>&nbsp;•  
  3.                     <!-- END mg_switch_user_is_admin -->  
  4.                     <a href="{U_PORTAL}">{L_HOME}</a>&nbsp;•  
  5.                     <a href="{U_INDEX}">{L_INDEX}</a>&nbsp;•  
  6.                     <a href="{U_BOARDRULES}">{L_BOARDRULES}</a>&nbsp;•  
  7.                     <!-- BEGIN switch_user_logged_out -->  
  8.                     <a href="{U_REGISTER}"><b>{L_REGISTER}</b></a>&nbsp;•  
  9.                     <!-- END switch_user_logged_out -->  
  10.                     <!-- BEGIN switch_user_logged_in -->  
  11.                     <a href="{U_PROFILE}">{L_CPL_NAV}</a>&nbsp;•  
  12.                     <!-- END switch_user_logged_in -->  
  13.                     <!-- BEGIN switch_dd_off_logged_in -->  
  14.                     <a href="{U_SEARCH_NEW}">{L_NEW2}</a>&nbsp;•  
  15.                     <!-- END switch_dd_off_logged_in -->  
  16.                     <!-- BEGIN switch_dd_on_logged_in -->  
  17.                     <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>  
  18.                     <!-- END switch_dd_on_logged_in -->  
  19.                     <!-- BEGIN switch_upi2db_on -->  
  20.                     {L_DISPLAY_U}&nbsp;{L_DISPLAY_M}&nbsp;{L_DISPLAY_P}&nbsp;•  
  21.                     <!-- END switch_upi2db_on -->  
  22.                     {PROFILE_VIEW}  
  23.                     {GREETING_POPUP}  
  24.                     <!-- BEGIN switch_dropdown_on -->  
  25.                     <a href="{U_SEARCH}" onMouseover="dropdownmenu(this,event,menu1,'250px')" onMouseout="delayhidemenu()">{L_SEARCH}</a>&nbsp;•  
  26.                     <!-- END switch_dropdown_on -->  
  27.                     <!-- BEGIN switch_dropdown_off -->  
  28.                     <a href="{U_SEARCH}">{L_SEARCH}</a>&nbsp;•  
  29.                     <!-- END switch_dropdown_off -->  
  30.                     <a href="{U_FAQ}">{L_FAQ}</a>&nbsp;•  
  31.                     <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
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Things. 
 
ok i put it in as this
Code: [Download] [Hide] [Select]
<!-- 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.
 



 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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!
 



 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Things. 
 
i use this js script

Code: [Download] [Hide]
  1. <script language="Javascript">  
  2. <!-- Swap images  
  3. function Permut (flag,img) {  
  4.    if (document.images) {  
  5.         if (document.images[img].permloaded) {  
  6.             if (flag==1) document.images[img].src = document.images[img].perm.src  
  7.             else document.images[img].src = document.images[img].perm.oldsrc  
  8.         }  
  9.    }  
  10. }  
  11. function preloadPermut (img,adresse) {  
  12.    if (document.images) {  
  13.         img.onload = null;  
  14.         img.perm = new Image ();  
  15.         img.perm.oldsrc = img.src;  
  16.         img.perm.src = adresse;  
  17.         img.permloaded = true;  
  18.    }  
  19. }  
  20.  
  21. </script> 


and this it's the code for images

Code: [Download] [Hide] [Select]
        <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
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Things. 
 
Ok, do I just replace the other code for the links with that one, and fill in the links?


My other problem is this the centering. Hopefully these screenshots help you help me.
http://www.fileden.com/files/2007/5/20/1096986/centered.jpg
http://www.fileden.com/files/2007/5...%20centered.jpg

Zurker, once again thanks for all the help.

and 1 question is GD is there a way to get it on my server to make thumbnails, because I don't think I have it and nobody can upload images to the Album.
 



 
Last edited by Press 22 on Tue 10 Jul, 2007 02:14; edited 1 time in total 
Press 22Send private message  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
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


  

 

  cron