Forum gratuit: forum de suport al utilizatorilor
Doriți să reacționați la acest mesaj? Creați un cont în câteva clickuri sau conectați-vă pentru a continua.

Afisare Widget in josul paginii

Pagina 2 din 3 Înapoi  1, 2, 3  Urmatorul

Vezi subiectul anterior Vezi subiectul urmator In jos

  • 0

In cos Afisare Widget in josul paginii

Mesaj Scris de 4LEX Sam Iul 19, 2014 11:34 pm

Rezumarea primului mesaj :

Salut .. am si eu o problema .. am activat widgeturile si doresc sa imi apara doar in partea dreapta a forumului nu jos , ce pot face?


Ultima editare efectuata de catre 4LEX in Dum Iul 20, 2014 2:03 pm, editata de 3 ori
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Vin Aug 01, 2014 8:26 pm

Update -> 1.08.2014
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de Cassius Dio Sam Aug 02, 2014 3:16 pm

Puteți să postați aici template-ul overall_header? De asemenea, v-aș ruga să activați widget-urile ca să pot vizualiza problema direct pe forumul dumneavoastră? Mulțumesc! Fericit
Cassius Dio

Cassius Dio
Membru onorific
Membru onorific

Mesaje : 10826
Varsta : 26
Localizare : Strawberry Fields
Data înscrierii : 13/07/2012
Mulțumiri : 84
Internet Explorer phpBB3

http://beatles.forummo.com/
Cassius Dio a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Sam Aug 02, 2014 3:29 pm

Cod:
<!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" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
<head>
    <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
    <meta http-equiv="content-script-type" content="text/javascript" />
    <meta http-equiv="content-style-type" content="text/css" />
    <!-- BEGIN switch_compat_meta -->
    <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
    <!-- END switch_compat_meta -->
    <!-- BEGIN switch_canonical_url -->
    <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
    <!-- END switch_canonical_url -->
    {META_FAVICO}
    {META}
    {META_FB_LIKE}
    <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
    {T_HEAD_STYLESHEET}
    {CSS}
    <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
    <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
    <script src="{JQUERY_PATH}" type="text/javascript"></script>
    <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>

    <!-- BEGIN switch_fb_login -->
    <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
    <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
    <!-- END switch_fb_login -->

    <!-- BEGIN switch_ticker -->
    <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
    <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
    <!-- END switch_ticker -->

    <!-- BEGIN switch_ticker_new -->
    <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
    <script type="text/javascript">//<![CDATA[
        /* Definir le sens de direction en fonction du panneau admin */
        var tickerDirParam = "{switch_ticker.DIRECTION}";
        var slid_vert = false;
        var auto_dir = 'next';
        var h_perso = parseInt({switch_ticker.HEIGHT});

        switch( tickerDirParam )
        {
            case 'top' :
                slid_vert = true;
                break;

            case 'left':
                break;

            case 'bottom':
                slid_vert = true;
                auto_dir = 'prev';
                break;

            case 'right':
                auto_dir = 'prev';
                break;

            default:
                slid_vert = true;
        }

        $(document).ready(function() {
            var w_cont = $('#fa_ticker_container').width();

            if (w_cont > 0)
            {
                $('#fa_ticker_container').width(w_cont);

                /* Affichage de la liste */
                $('#fa_ticker_content').css('display','block');

                /* Calcul des dimensions du conteneur et des elements */
                var width_max = $('ul#fa_ticker_content').width();
                var width_item = Math.floor(width_max / {switch_ticker.SIZE});
                var height_max = h_perso;

                /* Calcul de la hauteur maximale du conteneur en fonction des elements et de la hauteur personnalisee dans l'admin */
                $('ul#fa_ticker_content li').each( function () {
                    if ($(this).height() > height_max)
                    {
                        height_max = $(this).height();
                    }
                } );

                /* Redimensionnement des elements et des images trop larges */
                $('ul#fa_ticker_content li').width(width_item).height(height_max).find('img').each(function () {
                    if ($(this).width() > width_item)
                    {
                    var ratio        = $(this).width() / width_item;
                    var new_height = Math.round($(this).height() / ratio);
                    $(this).height(new_height).width(width_item);
                    }
                });

                /* Redimensionnement et centrage du conteneur en mode vertical */
                if (slid_vert)
                {
                    $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
                }

                /* Initialisation du caroussel */
                $('#fa_ticker_content').jcarousel({
                        vertical: slid_vert,
                    wrap: 'circular',
                    auto: {switch_ticker.STOP_TIME},
                    auto_direction: auto_dir,
                scroll: 1,
                size: {switch_ticker.SIZE},
                height_max: height_max,
                animation: {switch_ticker.SPEED}
                });
            }
            else
            {
                $('ul#fa_ticker_content li:not(:first)').css('display','none');
                $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
            }
        });
    //]]>
    </script>
    <!-- END switch_ticker_new -->

    <script type="text/javascript">//<![CDATA[
    $(document).ready(function(){
        <!-- BEGIN switch_enable_pm_popup -->
            pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
            if(pm != null) { pm.focus(); }
        <!-- END switch_enable_pm_popup -->
        <!-- BEGIN switch_report_popup -->
            report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
            if(report != null) { report.focus(); }
        <!-- END switch_report_popup -->
        <!-- BEGIN switch_ticker -->
            $(document).ready(function() {               
                Ticker.start({
                    height : {switch_ticker.HEIGHT},
                    spacing : {switch_ticker.SPACING},
                    speed : {switch_ticker.SPEED},
                    direction : '{switch_ticker.DIRECTION}',
                    pause : {switch_ticker.STOP_TIME}
                });
            });
        <!-- END switch_ticker -->
    });

    <!-- BEGIN switch_login_popup -->
        var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
    <!-- END switch_login_popup -->

    <!-- BEGIN switch_login_popup -->
    $(document).ready( function() {
        $(window).resize(function() {
            var windowWidth = document.documentElement.clientWidth;
            var popupWidth = $("#login_popup").width();
            var mypopup = $("#login_popup");

            $("#login_popup").css({
            "left": windowWidth/2 - popupWidth/2
                });
        });
    });
    <!-- END switch_login_popup -->
    //]]>
    </script>
    {GREETING_POPUP}
    <!-- BEGIN switch_ticker_new -->
    <style>
    .jcarousel-skin-tango .jcarousel-item {
        text-align:center;
        width: 10px;
    }

    .jcarousel-skin-tango .jcarousel-item-horizontal {
        margin-right: {switch_ticker.SPACING}px;
    }

    .jcarousel-skin-tango .jcarousel-item-vertical {
        margin-bottom: {switch_ticker.SPACING}px;
    }
    </style>
    <!-- END switch_ticker_new -->
    {HOSTING_JS}
    <!-- BEGIN google_analytics_code -->
    <script type="text/javascript">
    //<![CDATA[
     var _gaq = _gaq || [];
     _gaq.push(['_setAccount', '{G_ANALYTICS_ID}']);
     _gaq.push(['_trackPageview']);
    _gaq.push(['_trackPageLoadTime']);

    <!-- BEGIN google_analytics_code_bis -->
    _gaq.push(['b._setAccount', '{G_ANALYTICS_ID_BIS}']);
    _gaq.push(['b._trackPageview']);
    <!-- END google_analytics_code_bis -->

     (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
     })();
    //]]>
    </script>
    <!-- END google_analytics_code -->
</head>
<body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
    <!-- BEGIN hitskin_preview -->
    <div id="hitskin_preview" style="display: block;">
        <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
        <div class="content">
            <p>
                {hitskin_preview.L_THEME_SITE_PREVIEW}
                <br />
                <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
            </p>
        </div>
    </div>
    <!-- END hitskin_preview -->
    <!-- BEGIN switch_login_popup -->
    <div id="login_popup">
        <table class="forumline" width="{LOGIN_POPUP_WIDTH}" height="{LOGIN_POPUP_HEIGHT}" border="0" cellspacing="1" cellpadding="0">
            <tr height="25">
                <td class="catLeft">
                    <span class="genmed module-title">{SITENAME}</span>
                </td>
            </tr>
            <tr height="{LOGIN_POPUP_MSG_HEIGHT}">
                <td class="row1" align="left" valign="top">
                    <div id="login_popup_buttons">
                        <form action="{S_LOGIN_ACTION}" method="get">
                            <input type="submit" class="mainoption" value="{L_LOGIN}" />
                            <input type="button" class="mainoption" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
                            <input id="login_popup_close" type="button" class="button" value="{L_DONT_DISPLAY_AGAIN}" />
                        </form>
                    </div>
                    <span class="genmed">{LOGIN_POPUP_MSG}</span>
                </td>
            </tr>
        </table>
    </div>
    <!-- END switch_login_popup -->

    <a name="top"></a>
    {JAVASCRIPT}

    <table class="bodylinewidth" width="{T_BODY_TABLE_WIDTH}" cellspacing="0" cellpadding="10" border="0" align="center">
        <tr>
            <td class="bodyline">
                <table width="100%" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                        <!-- BEGIN switch_logo_left -->
                        <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
                        <!-- END switch_logo_left -->
                        <td align="center" width="100%" valign="middle">
                            <!-- BEGIN switch_logo_center -->
                            <a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a>
                            <br />
                            <!-- END switch_logo_center -->
                            <div class="maintitle">{MAIN_SITENAME}</div>
                            <br />
                            <span class="gen">{SITE_DESCRIPTION}<br />&nbsp; </span>
                        </td>
                        <!-- BEGIN switch_logo_right -->
                        <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
                        <!-- END switch_logo_right -->
                    </tr>
                </table>

                <table cellspacing="0" cellpadding="0" border="0" align="{MENU_POSITION}">
                    <tr>
                        <td align="{MENU_POSITION}"{MENU_NOWRAP}>{GENERATED_NAV_BAR}</td>
                    </tr>
                </table>

                <div style="clear: both;"></div>

                <!-- BEGIN switch_ticker_new -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display:none;">
                                        <!-- BEGIN ticker_row -->
                                        <li>{switch_ticker.ticker_row.ELEMENT}</li>
                                        <!-- END ticker_row -->
                                    </ul>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker_new -->

                <!-- BEGIN switch_ticker -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
                                        <div class="fa_ticker_content">
                                            <!-- BEGIN ticker_row -->
                                            <div>{switch_ticker.ticker_row.ELEMENT}</div>
                                            <!-- END ticker_row -->
                                        </div>
                                    </div>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker -->

                <div id="page-body">
                    <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                        <table cellpadding="0" cellspacing="0" width="100%" class="three-col">
                            <tbody>
                                <tr>
                               
                                    <td valign="top" width="100%">
<!-- BEGIN html_validation -->
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </td>
        </tr>
    </table>
</body>
</html>
<!-- END html_validation -->
<!-- BEGIN switch_user_logged_out -->
<form class="logarr" action="/login" method="post">
<input type="text"  value="Utilizator" tabindex="1" name="username" size="20" maxlength="40" class="autowidth" />
<input type="password" value="Parola" tabindex="2" id="password" name="password" size="20" maxlength="25" class="autowidth"/>
<br/>
<input type="submit" name="login" tabindex="6" value="Conectare" class="button1" />
</form>
<!-- END switch_user_logged_out -->

* Widgeturi activate.
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de Cassius Dio Sam Aug 02, 2014 3:39 pm

Dar index_body? În overall_header nu am văzut codul pentru widget-uri, s-ar putea să fie mutat în index_body. Fericit
Cassius Dio

Cassius Dio
Membru onorific
Membru onorific

Mesaje : 10826
Varsta : 26
Localizare : Strawberry Fields
Data înscrierii : 13/07/2012
Mulțumiri : 84
Internet Explorer phpBB3

http://beatles.forummo.com/
Cassius Dio a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Sam Aug 02, 2014 5:15 pm

Cod:
{JAVASCRIPT}
    <!-- BEGIN message_admin_index -->
    <table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
      <!-- BEGIN message_admin_titre -->
      <tr>
          <td class="catHead" height="28"><span class="cattitle">{message_admin_index.message_admin_titre.MES_TITRE}</span></td>
      </tr>
      <!-- END message_admin_titre -->
      <!-- BEGIN message_admin_txt -->
      <tr>
          <td class="row1" rowspan="3" align="center" valign="middle">
          <div class="gensmall">{message_admin_index.message_admin_txt.MES_TXT}</div>
          </td>
      </tr>
      <!-- END message_admin_txt -->
    </table>
    <!-- END message_admin_index -->
<a href="/forum"><img src="http://i.imgur.com/paq9f.png" /> <font style="font-size: 11px; font-weight: bold">Board index</font></a>
    <!-- BEGIN switch_user_login_form_header -->
  <form action="{S_LOGIN_ACTION}" method="post" name="form_login">
      <!-- BEGIN switch_fb_connect_no -->
      <table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
          <tr>
            <td class="row1" align="center">
                <table border="0" cellspacing="0" cellpadding="0">
                  <tr>
                      <td><span class="genmed">{L_USERNAME}:</span> </td>
                      <td><input class="post" type="text" size="10" name="username"/> </td>
                      <td>
                        <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                        <span class="gensmall">{L_AUTO_LOGIN}</span>
                      </td>
                  </tr>

                  <tr>
                      <td><span class="genmed">{L_PASSWORD}:</span> </td>
                      <td><input class="post" type="password" size="10" name="password"/> </td>
                      <td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
                  </tr>
                </table>
            </td>
          </tr>
      </table>
      <!-- END switch_fb_connect_no -->

      <!-- BEGIN switch_fb_connect -->
      <table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
          <tr>
            <td valign="top" width="100%"  class="row1" align="center">
                <table width="100%">
                  <tr>
                      <td width="55%" valign="middle" align="right">
                        <table class="right">
                            <tr>
                              <td><span class="genmed">{L_USERNAME}:</span> </td>
                              <td><input class="post" type="text" size="10" name="username"/> </td>
                              <td>
                                  <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                                  <span class="gensmall">{L_AUTO_LOGIN}</span>
                              </td>
                            </tr>

                            <tr>
                              <td><span class="genmed">{L_PASSWORD}:</span> </td>
                              <td><input class="post" type="password" size="10" name="password"/> </td>
                              <td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
                            </tr>
                        </table>
                      </td>
                      <td width="10%" align="center" valign="middle">
                        <span class="genmed fb_or">{switch_user_login_form_header.switch_fb_connect.L_OR}</span>
                      </td>
                      <td width="35%" class="align_gauche"><fb:login-button size="large" onlogin="window.location='/facebook_connect.forum'" v="2" perms="{switch_user_login_form_header.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_header.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button></td>
                  </tr>
                </table>
            </td>
          </tr>
      </table>
      <!-- END switch_fb_connect -->
    </form>
    <!-- END switch_user_login_form_header -->

    {CHATBOX_TOP}
    {BOARD_INDEX}
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
          <td width="50%" valign="top">
            </span>
          </td>
      </tr>
    </table>

    <!-- BEGIN switch_user_login_form_footer -->
    <form action="{S_LOGIN_ACTION}" method="post" name="form_login">
      <!-- BEGIN switch_fb_connect_no -->
      <table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
          <tr>
            <td class="row1" align="center">
                <table border="0" cellspacing="0" cellpadding="0">
                  <tr>
                      <td><span class="genmed">{L_USERNAME}:</span> </td>
                      <td><input class="post" type="text" size="10" name="username"/> </td>
                      <td>
                        <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                        <span class="gensmall">{L_AUTO_LOGIN}</span>
                      </td>
                  </tr>

                  <tr>
                      <td><span class="genmed">{L_PASSWORD}:</span> </td>
                      <td><input class="post" type="password" size="10" name="password"/> </td>
                      <td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
                  </tr>
                </table>
            </td>
          </tr>
      </table>
      <!-- END switch_fb_connect_no -->
      <!-- BEGIN switch_fb_connect -->
      <table width="100%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
          <tr>
            <td valign="top" width="100%"  class="row1" align="center">
                <table width="100%">
                  <tr>
                      <td width="55%" valign="middle">
                        <table class="right">
                            <tr>
                              <td><span class="genmed">{L_USERNAME}:</span> </td>
                              <td><input class="post" type="text" size="10" name="username"/> </td>
                              <td>
                                  <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                                  <span class="gensmall">{L_AUTO_LOGIN}</span>
                              </td>
                            </tr>

                            <tr>
                              <td><span class="genmed">{L_PASSWORD}:</span> </td>
                              <td><input class="post" type="password" size="10" name="password"/> </td>
                              <td>{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" /></td>
                            </tr>
                        </table>
                      </td>
                      <td width="10%" align="center" valign="middle">
                        <span class="genmed fb_or">{switch_user_login_form_footer.switch_fb_connect.L_OR}</span>
                      </td>
                      <td width="35%" class="align_gauche"><fb:login-button size="large" onlogin="window.location='/facebook_connect.forum'" v="2" perms="{switch_user_login_form_footer.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_footer.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button></td>
                  </tr>
                </table>
            </td>
          </tr>
      </table>
      <!-- END switch_fb_connect -->
    </form>
    <!-- END switch_user_login_form_footer -->

     
                                    <td valign="top" width="100%">
                              <div id="center">
                                <!-- BEGIN giefmod_index1 -->
                                {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                <!-- END giefmod_index1 -->
                              </div>
                          </td></tr><tr>
                    <!-- BEGIN switch_chatbox_activate -->
      <tr>
          <td class="row1">
            <span class="gensmall">{TOTAL_CHATTERS_ONLINE} :  {CHATTERS_LIST}<br />
                <!-- BEGIN switch_chatbox_popup -->
                <div id="chatbox_popup"></div>
                <script type="text/javascript">
                //<![CDATA[
                insertChatBoxPopup('{disable_viewonline.switch_chatbox_activate.switch_chatbox_popup.U_FRAME_CHATBOX}', '{L_CLICK_TO_JOIN_CHAT}');
                //]]>
                </script>
                <!-- END switch_chatbox_popup -->
            </span>
          </td>
      </tr>
    </table>

    <!-- END disable_viewonline -->
     
<table class="spoiler" width="90%" cellspacing="1" cellpadding="0" border="0" align="center"><tr><td style="cursor: pointer;">
  <span class="genmed"><b><center><font color="openblue">Arata-mi mini-regulamentul !</font></center>
  </b></span></td></tr><tr><td class="spoiler_closed"> </td><td class="spoiler_content hidden">
  <center> <div class="atentie"><img src="http://images.wikia.com/nation/images/c/c7/Attention.png" width="50px" /></div>
<font color="#fff"> Nu ai voie sa vorbesti cu limbajul SMS gen <strong>"lol","dnd","bn","mijto"</strong>.<Br>
  Nu injura deloc , poti suporta o mustrare sau chiar banarea pentru un timp.<br>
Nu faceti reclame la altor site-uri !<Br>
  Respectati-va unul pe altul !</center>
  <div align="right">Scris de IPhone5</div></font></td></tr></table><span class="postbody"><br></center>
 
 
 
 
 

    {CHATBOX_BOTTOM}
<br clear="all" />
<!-- BEGIN switch_legend -->
<table border="0" cellspacing="3" cellpadding="0" align="center">
  <tr>
 
  </tr>
</table>


<!-- END switch_legend -->


  <b><font color="white"><center><div class="adds2"><span style="font-size: 11px; line-height: normal">  <strong>RGZ STAFF</strong> : {GROUP_LEGEND}</span></div></center> </font></b>

<tr>
<table class="forumline detalii_forum" width="55%" align="right" border="0" cellspacing="1" cellpadding="0">
<td class="catHead" colspan="2" height="28">
  {Statistici}<b><font color="white"> Membrii conectati in decursul ultimelor 99 ore: </font></b>{Statistici}</a></span>         
              </span>
  </tr>
 
<td class="row1"><span class="gensmall">  {LOGGED_IN_USER_LIST}</td></span>
  <tr>
  <td class="row1"><span class="gensmall">{L_CONNECTED_MEMBERS}</td></span>


<tr>
 
 
  <tr>
 <td class="row1"><span class="gensmall">

    <tr>
 <td class="row1"><span class="gensmall">
<strong><img src="" border="0" alt="" /> </td></span>
</tr>
 
<table class="forumline" width="45%" border="0" cellspacing="1" cellpadding="0">

      <td class="catHead" colspan="2" height="28">

      {Statistici}<span class="cattitle"><a class="cattitle" href="{U_VIEWONLINE}" rel="nofollow">{L_WHO_IS_ONLINE}</a></span>{Statistici}
  </tr>
 
<tr>
 <td class="row1"><span class="gensmall">
<b><font color="white"><strong><img src="http://i48.servimg.com/u/f48/16/68/66/37/pgor_i10.png" border="0" alt="" /> {TOTAL_USERS_ONLINE} </font></b> </td></span>
</tr>

<tr>
 <td class="row1"><span class="gensmall">
<b><font color="white"><strong><img src="http://i48.servimg.com/u/f48/16/68/66/37/i_icon10.png" border="0" alt="" /> {TOTAL_POSTS} | {TOTAL_USERS}</td></span> </font></b>
</tr>

<tr>
 <td class="row1"><span class="gensmall">
<b><font color="white"><strong><img src="http://i48.servimg.com/u/f48/16/68/66/37/images16.jpg" border="0" alt="" /> Recordul de utilizatori conectati a fost de 14 , Joi 31 Iul 2014 - 15:08</td></span> </font></b>
</tr>

<tr>
 <td class="row1"><span class="gensmall">
<b><font color="white"><strong><img src="http://i48.servimg.com/u/f48/16/68/66/37/new_po10.png" border="0" alt="" /> {NEWEST_USER}<img src="http://i48.servimg.com/u/f48/17/38/19/69/89223210.gif" border="0" alt="" /></td></span> </font></b>
</tr>

<tr>
<td class="row1"><span class="gensmall">
<b><font color="white"><img src="http://i47.servimg.com/u/f47/15/67/84/32/on10.png" border="0" alt="" /><strong> Forumul a fost infiintat in data de : <font color="blue">1 Iulie 2014</font></strong> </font></b>
</td>
</tr>

<tr>
 <td class="row1"><span class="gensmall">
<b><font color="white"><img src="http://i48.servimg.com/u/f48/16/68/66/37/gnome-10.png" border="0" alt="" /> <strong>Versiune Instalata: <font color="lime"> phpBB2 </strong></font></td></span> </font></b>
</tr>


<tr>
 <td class="row1"><span class="gensmall">
<b><font color="white"><strong><img src="http://turism.bzi.ro/public/images/send-yahoo-ico.png" border="0" alt="" /><strong>Contact<font color="red"> IPHONE5 <a href="ymsgr:send?geostate90@yahoo.com"><img border=0 src="http://opi.yahoo.com/online?u=csapogistul&m=g&t=1" /></strong></font></td></span> </font></b>
</tr>
  <tr>
<td class="row1"><span class="gensmall">
<img src="http://i48.servimg.com/u/f48/16/68/66/37/icon-110.png" border="0" alt="" />
<b><font color="white"><strong>Citeste <a href="http://rgzone.forumer.ro/t4-rgz-regulament-forum-utilizatori-moderatori">Termenii de utilizare</strong></a></td></span> </font></b>
</tr>

</tr>
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<td class="catHead" colspan="2" height="28">
 
                <!-- BEGIN switch_chatbox_activate -->
  <tr>
      <td class="row1">
        <span class="gensmall">{TOTAL_CHATTERS_ONLINE} :  {CHATTERS_LIST}

            <!-- BEGIN switch_chatbox_popup -->
            <div id="chatbox_popup"></div>
            <script type="text/javascript">
            //<![CDATA[
            insertChatBoxPopup('{disable_viewonline.switch_chatbox_activate.switch_chatbox_popup.U_FRAME_CHATBOX}', '{L_CLICK_TO_JOIN_CHAT}');
            //]]>
            </script>
            <!-- END switch_chatbox_popup -->
        </span>
      </td>
  </tr>

<!-- END switch_chatbox_activate -->
</table>

 
  <!-- / Footer -->
            </div>
  <div id="footer_container">
      <div class="centercolumn">
<center>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#202020">
<tbody><tr>
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#404040">
<tbody><tr>
<td class="row1 nobold" width="100%" valign="middle"><p class="genmed">
<div align="center" style="background-color: ##4A4A4A; border: 1px dashed #FFFF00; padding: 2px; font-size: 11px; font-family:'tahoma';">
<center><strong><b><h32>
<font style="text-shadow: 1px 1px 7px rgb(108, 108, 108);" color="#FF8000">Nici unul din fisierele care apar aici sau urcate pe server nostru nu raspundem de acele fisiere . Linkurile sunt furnizate exclusiv de utilizatorii acestui site. Echipa RGZ nu poate fi trasa la raspundere pentru ceea ce utilizatorii posteaza, sau orice alte actiuni ilegale ale acestora . Nu puteti folosi acest site pentru a distribui sau descarca orice material atunci cand nu aveti dreptul legal de a face acest lucru. Este responsabilitatea ta sa aderi la acesti termeni. Daca aveti indoieli cu privire la legalitatea de continut sau aveti orice suspiciuni, nu ezitati sa ne contactati. Administratorii acestei comunitatii pot selecta utilizatorii si interzicerea oricui in orice moment, fara nici un anunt prealabil.Drepturile de autor pentru toate creatiile Apartin echipei RGZ :> Si este interzisa reproducerea sau copierea lor.Va rugam sa cititi acest disclaimer si sa il tratati cu maxima seriozitate..</font></NeedCs></div>    </a></b></p></td>
</tr>
</table>
</br>

  <!-- PARTENERI --><b><center><font color="white"> PARTENERI RGZ </b> </center> </font> <!-- PARTENERI -->
<table class="tablebg" width="100%" cellspacing="1">
<tr>

<td class="row1"<a href="http://tinypic.com?ref=i1kxkz" target="_blank"><img src="http://i48.tinypic.com/i1kxkz.jpg" border="0" alt="Image and video hosting by TinyPic"></a></td>
<td class="row1 nobold" width="100%" valign="middle"><marquee direction="left" onmouseover="this.setAttribute('scrollamount', 0, 0);" onmouseout="this.setAttribute('scrollamount', 6, 0);">


 <a href="http://rgzone.forumer.ro/"><img src="http://i59.tinypic.com/2zjgwp4.jpg" title="RGZ - Noi producem diferenta !" /></a>
 <a href="http://board.power-rpg.com/"><img src="http://i1197.photobucket.com/albums/aa439/Justin-GH/ZeusArtWork/da_zps56cacb9c.gif" title="PARTENER OFFICIAL RGZ" /></a>
 <a href="http://d-zone.forum.st"><img src="http://i.imgur.com/MNoInWG.gif" title="D-Zone - it all about gaming!" /></a>
</span></marquee>
</td>
</tr>
</table>

</marquee></td>
</tr>
</table>
<!-- BEGIN switch_legend -->
<table border="0" cellspacing="3" cellpadding="0" align="center">
  <tr>
      <td align="center" width="20"><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" /></td>
      <td><span class="gensmall">{L_NEW_POSTS}</span></td>
      <td></td>
      <td align="center" width="20"><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" /></td>
      <td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
      <td>  </td>
      <td align="center" width="20"><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" /></td>
      <td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
  </tr>
</table>
<!-- END switch_legend -->


<!-- BEGIN switch_fb_index_login -->
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
FB.init({
  appId: '{switch_fb_index_login.FACEBOOK_APP_ID}',
    status: true,
    cookie: true,
    xfbml: true
});
//]]>
</script>
<!-- END switch_fb_index_login -->
<center><table><tr><td style="border:1px dashed #FF0404 ; padding:1px ;"><span class="cattitle">CopyrightŠ2014 by IPhone5 - Toate drepturile sunt rezervate.</span></td></tr></table></center>
<center>
  <!-- http://topgaming.ro - Web Traffic Statistics -->
<script type="text/javascript" src="http://topgaming.ro/counter.php?u=reguts99"></script>
<a href="http://topgaming.ro/stats/reguts99"><img src="http://topgaming.ro/images/button1.png" width="88" height="31" border="0"></a>
<!-- End of http://topgaming.ro -->
  <!-- Code 2.0 Romanian Top 66 START (rgzone.forumer.ro) -->
<script src="http://script.top66.ro/id-485809/20/1/Bine%20ati%20venit!%20Apasati%20OK%20pentru%20a%20vota%20pentru%20acest%20site%20in%20Romanian%20Top%2066/code2.js" type="text/javascript"></script>
<a href="http://www.top66.ro" title="Promovare gratuita"><img src="http://images.top66.ro/vote/20.gif" usemap="#Top66Vote" border="0"></a>
<!-- Code 2.0 Romanian Top 66 STOP (rgzone.forumer.ro) --> 
<!--/ GTop.ro - (begin) v2.1/-->
<script type="text/javascript" language="javascript">
var site_id = 72581;
var gtopSiteIcon = 12;
var _gtUrl = (("https:" == document.location.protocol) ? "https://secure." : "http://fx.");
document.write(unescape("%3Cscript src='" + _gtUrl + "gtop.ro/js/gTOP.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<!--/ GTop.ro - (end) v2.1/-->
  </center>
 
 

* Am specificat mai sus ceva de index_body A face cu ochiul
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Lun Aug 04, 2014 2:03 pm

UPDATE -> 04.08.2014
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de Cassius Dio Lun Aug 04, 2014 4:57 pm

Pur și simplu ștergeți acest cod din index_body:
Cod:
<td valign="top" width="100%">
                              <div id="center">
                                <!-- BEGIN giefmod_index1 -->
                                {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                <!-- END giefmod_index1 -->
                              </div>
                          </td>
Salvați și publicați template-ul.

Acum trebuie să readăugați în overall_header acest cod:
Cod:
                           <td valign="top" width="{C1SIZE}">
                              <div id="{ID_LEFT}">
                                 <!-- BEGIN giefmod_index1 -->
                                 {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                 <!-- END giefmod_index1 -->
                              </div>
                           </td>
după acesta:
Cod:
<table cellpadding="0" cellspacing="0" width="100%" class="three-col">
                            <tbody>
                                <tr>
Salvați și publicați template-ul. A face cu ochiul
Cassius Dio

Cassius Dio
Membru onorific
Membru onorific

Mesaje : 10826
Varsta : 26
Localizare : Strawberry Fields
Data înscrierii : 13/07/2012
Mulțumiri : 84
Internet Explorer phpBB3

http://beatles.forummo.com/
Cassius Dio a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Lun Aug 04, 2014 6:36 pm

Tot nu imi merge .. imi apar tot jos + ca textul mi se face mai mic..
Am urmat Pas cu Pas ce mi-ai zis Cassius  Salut!  

[Trebuie sa fiti inscris si conectat pentru a vedea acest link]
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Joi Aug 07, 2014 10:31 pm

up?
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Mier Aug 13, 2014 10:32 pm

up?
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de Zeus Joi Aug 14, 2014 11:03 pm

Buna seara,

Restabiliti template-urile overall_footer_begin si overall_footer_end la valorile implicite prin apasarea acestui buton ( Stergere ).
Zeus

Zeus
Membru onorific
Membru onorific

Mesaje : 4160
Varsta : 27
Localizare : Bucuresti, Romania
Data înscrierii : 19/02/2012
Mulțumiri : 644
Google Chrome phpBB3

https://github.com/zeusmaximus
Zeus a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de 4LEX Vin Aug 15, 2014 4:14 pm

Nu sunt modificate deloc Fericit
4LEX

4LEX
Membru Forumgratuit

Mesaje : 355
Varsta : 27
Localizare : Targoviste
Data înscrierii : 13/06/2013
Mulțumiri : 21
Internet Explorer phpBB2

http://helpcs.forumers.ro/
4LEX a fost mulțumit de autorul acestui subiect.

In cos Re: Afisare Widget in josul paginii

Mesaj Scris de Continut sponsorizat


Continut sponsorizat


Continut sponsorizat a fost mulțumit de autorul acestui subiect.

Pagina 2 din 3 Înapoi  1, 2, 3  Urmatorul

Vezi subiectul anterior Vezi subiectul urmator Sus

- Subiecte similare

Permisiunile acestui forum:
Nu puteti raspunde la subiectele acestui forum