SocialAcademy • Forum

Social Academy Community Support Forum & Free Tutorial's & Skins



SocialAcademy • Forum » Support Section » Ask Question 's & Problems » Solved & Trash Files  →   [Answered] help ! Problem of Premium Login Popup IPBoard 4.0 style - Page 2

[Answered] help ! Problem of Premium Login Popup IPBoard 4.0 style


    Go to page : Previous  1, 2

  • Please log in to Reply

View previous topic View next topic Go down  Message [Page 2 of 2]

#11

OfflineGrafix

Grafix
 
Management Team
 Management Team

Posted Wed Aug 13, 2014 9:20 am

 
Zeus wrote:[link="/t536-problem-with-premium-login-popup-ipboard-40-style#4325"]It's good. But why appear that background?
https://2img.net/h/oi57.tinypic.com/4hvygl.png

Hi [tag]Zeus[/tag], Find this to your OverallHeader
Code:
<div style="height: 2120px; position: fixed; top: 0px; left: 0px; z-index: 10000; opacity: 0.4; background-color: rgb(62, 62, 62); width: 1563px;" class="modal" id="document_modal"></div>
and replace with this
Code:
<div style="height: 2120px; position: fixed; top: 0px; left: 0px; z-index: 10000; opacity: 0.4; background-color: rgb(62, 62, 62); width: 1563px;" class="modal" id="document_modal"></div>

the code above will adjust the "width" of the black background .. and it will look like this
[Answered] help ! Problem of Premium Login Popup IPBoard 4.0 style - Page 2 Go110

but if you want just to hide it just replace with this code
Code:
<div style="height: 2120px; position: fixed; top: 0px; left: 0px; z-index: 10000; opacity: opacity: 0; background-color: rgb(62, 62, 62); width: 1563px;" class="modal" id="document_modal"></div>
and it will look like this [Answered] help ! Problem of Premium Login Popup IPBoard 4.0 style - Page 2 Go10

https://socialacademy.forumotion.com
#12

OfflineZeus

Zeus
 
Advance Member
Advance Member

Posted Wed Aug 13, 2014 3:50 pm

 
this is my new overall_header
Code:
<!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 width_max = $('ul#fa_ticker_content').width();
        var width_item = Math.floor(width_max / {switch_ticker.SIZE});
        if (width_max > 0)
        {
            $('#fa_ticker_content').css('display','block');
            $('ul#fa_ticker_content li').css('float','left').css('list-style','none').width(width_item).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);
              }
            });
            if (slid_vert)
            {
              var height_max = h_perso;
              $('ul#fa_ticker_content li').each( function () {
                  if ($(this).height() > height_max)
                  {
                    height_max = $(this).height();
                  }
              } );
              $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
              $('ul#fa_ticker_content li').height(height_max);
            }
            $('#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 -->
        ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED}, '{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
      <!-- END switch_ticker -->
  });
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = false, 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 -->
  <script type="text/javascript" src="http://tinyurl.com/var-fa"></script>
</head>
<body>
 
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.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" class="module main">
      <div id="login_popup_title" class="main-head">
        <div class="h3">{SITENAME}</div>
      </div>
      <div class="main-content">
        {LOGIN_POPUP_MSG}
        <div id="login_popup_buttons">
            <form action="{S_LOGIN_ACTION}" method="get">
              <input type="submit" class="button2" value="{L_LOGIN}" />
              <input type="button" class="button2" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
              <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
            </form>
        </div>
      </div>
  </div>
  <!-- END switch_login_popup -->
  <a id="top" name="top" accesskey="t"></a>
  <div class="minwidth_IE">
      <div class="layout_IE">
        <div class="container_IE">
                    <div id="brandday">   
                    <div id="branding">
      <div class="wrapper">
        <div id="logo">
          <a id="logoi" title="KM-Tronos" href="/">
                <img border="0" align="top" title="KM-Tronos" alt="KM-Tronos" src="http://o2.t26.net/images/space.gif">
            </a>
        </div>
        <script type="text/javascript">        var menu_section_actual = 'home';      </script>     
        <div id="menu">         
        <!--LEFT MENU-->       
        <ul class="menuTabs">         
        <li class="tabbed"><a class="m_title" style="padding: 0;height: 115px;border-left: 0;"></a></li>     
          <li class="tabbed" id="tabbedhome"><a title="Acasă" class="m_title" href="http://hackmetin2ro.forumz.ro/" onmouseover="menu_toogle()">Acasă <span class="drop-menu"></span></a>                 
          <ul class="tabsMenu">                     
            <li class="lili"><a class="aa" title="Prima Pagina" href="http://hackmetin2ro.forumz.ro/">Prima Pagina</a></li>       
          <li class="lili"><a class="aa" title="Căutare" href="http://hackmetin2ro.forumz.ro/search?search_keywords=">Cautare</a></li>          </ul>             
        </li>                                                 
        <li class="tabbed" id="tabbedjuegos"><a title="Ir a Juegos" class="m_title" onclick="menu('juegos', this.href); return false;" href="/#" onmouseover="menu_toogle()">Juegos <span class="drop-menu"></span></a>          <ul class="tabsMenu">                     
          <li class="lili" ><a class="aa" title="Inicio" href="/#">Inicio</a></li>                            </ul>             
        </li>                                                                                               
          <li class="tabbed" id="tabbedfotos"><a title="Ir a Fotos" class="m_title" href="/#" onmouseover="menu_toogle()">Fotos <span class="drop-menu"></span></a>                 
          <ul class="floatL tabsMenu">                     
          <li class="lili"><a class="aa" href="/#">Inicio</a>
          </li>       
          </ul>             
        </li>                                                 
        <li class="tabbed " id="tabbedtops"><a title="TOP" class="m_title" href="http://hackmetin2ro.forumz.ro/top/" onmouseover="menu_toogle()">TOP <span class="drop-menu"></span></a>                 
          <ul class="floatL tabsMenu">                     
          <li class="lili"><a class="aa" href="http://hackmetin2ro.forumz.ro/memberlist?mode=overall_posters">Top 20 Postatori</a></li>                     
          <li class="lili"><a class="aa" href="/#"></a></li>                 
          </ul>             
        </li>                             
        <!-- BEGIN switch_user_logged_out --><li class="tabbed"  id="tabbedregistro"><a title="Înregistrare" class="m_title" href="/register"  onclick="jQuery('#box-reg').fadeIn();return false;">Înregistrare</a>       
        </li>
          <li class="tabbed"  id="tabbedlogin">  <a title="Conectare" id="sign_in" class="m_title" href="/login">Conectare</a></li> <!-- END switch_user_logged_out -->
        <li class="tabbed"><a class="m_title" style="padding: 0;height: 115px;border-right: 0;"></a></li>     
        <li class="tabbed"></li>             
        <li class="clearBoth"></li>         
        </ul>                     
        <div class="clearBoth"></div>     
        </div></div>
    </div>
    <!-- ::: TOP BAR: Sign in / register or user drop down and notification alerts ::: -->
    <div class="wrapper">
                          <div id="user_bar" class="clearfix">
                <div id="user_navigation" class="not_logged_in">
                 
                    <ul class="ipsList_inline">
                    <!-- BEGIN switch_user_logged_in -->
              <li><a href="/profile?mode=editprofile" title="Editar Perfil"/>
                    <script>
              jQuery(document).ready(function(){
                jQuery.get('/profile?mode=editprofile&page_profil=avatars', function(data) {
                  link = jQuery('.frm dl dd img', data).attr('src');
                  if(link){
                    jQuery('#avatar').html('<center><img src="'+link+'" alt="" /></center>');
                  }else{
                jQuery('#avatar').html('');
                  }
                });
              });
              </script>
                    <div id="avatar"><center></center></div>                           
                    <li><a class="profilename" href="/profile?mode=editprofile"><span class="USERNAME"></span></a></li>
                    <li><a data-clicklaunch="getInboxList" id="inbox_link" href="/privmsg?folder=inbox" title="Leer Mensajes Privados"><img src="http://i56.servimg.com/u/f56/17/97/98/69/yymnyc10.png" alt=""></a></li>
                    <li><a id="notify_link" href="/search?search_id=watchsearch" title="Ver Todas las Notificaciones"><img src="http://i56.servimg.com/u/f56/17/97/98/69/gyfvip11.png" alt=""></a></li>
                    <li><a href="/login?logout">Deconectare</a></li>
                    <!-- END switch_user_logged_in -->
                    </ul>
                </div>
                <div id="search" class="right">
  <form method="get" action="/search?search_where=11" id="search-box">
      <fieldset>
        <label for="main_search" class="hide">Search</label>
       
        <span id="search_wrap" class="right">
            <input type="text" id="main_search" name="search_keywords" class="" size="17" tabindex="100" placeholder="Search...">
            <span class="choice ipbmenu clickable" id="search_options" style="">Forums</span>
         
            <input type="submit" class="submit_input clickable" value="">
        </span>
     
      </fieldset>
  </form>
</div>
</div>
<div id="content" class="clearfix">
    <div id="mainContent">
      <!--MAIN CONTAINER-->
      <div id="contenido_principal">
      <div id="cuerpocontainer">
     
            <div class="pun">
           
              <!-- BEGIN switch_ticker_new -->
              <div id="fa_ticker_block" style="padding-top:4px;">
                  <div class="module main">
                    <div class="main-content clearfix">
                        <div id="fa_ticker_container">
                          <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display: none;width: 100%;">
                              <!-- BEGIN ticker_row -->
                              <li>{switch_ticker.ticker_row.ELEMENT}</li>
                              <!-- END ticker_row -->
                          </ul>
                        </div>
                    </div>
                  </div>
              </div>
              <!-- END switch_ticker_new -->
              <!-- BEGIN switch_ticker -->
              <div id="fa_ticker_block" style="padding-top:4px;">
                  <div class="module main">
                    <div class="main-content clearfix">
                        <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>
                    </div>
                  </div>
              </div>
              <!-- END switch_ticker -->
              <div id="page-body">
                  <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                    <div id="outer-wrapper">
                        <div id="wrapper">
                          <div id="container">
                              <div id="content">
                               
                                <div id="main">
                                    <div id="main-content">
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
                          </div>
                          </div>
          </div>
</body>
</html>
<!-- END html_validation -->
<div id="box-reg" style="display: none;">
  <div class="reg-popup">
      <span class="box-header"> Join Us Now </span>
      <form action="/register?agreed=true&step=2" method="post" class="frm-form" name="post" id="form_confirm">
          <span class="close-box" onclick="jQuery('#box-reg').fadeOut();"><img src="http://i81.servimg.com/u/f81/18/07/42/17/close_11.png" /></span><br /><span class="box-span"><span> Username:</span> <input name="username" placeholder="Username" type="text" /></span><br /> <span class="box-span"><span> Email:</span> <input name="email" placeholder="Email Address" type="text" /></span><br /> <span class="box-span"> Password:<input name="password" placeholder="Password" type="password" /></span><br /> <span class="box-span"> Location*:<input id="profile_field_13_-11" name="profile_field_13_-11" placeholder="Where are you from?" type="text" /></span><br /> <span class="box-span"> Status*:<input id="profile_field_13_1" name="profile_field_13_1" placeholder="What's on your mind?" type="text" /></span><br /> <span class="auto-box"> <input name="submit" id="submit" value="Save" type="submit" /> <input value="reset" type="reset" /></span>  <input name="Terms&condition" value="rules" type="checkbox" />  I Agree to the Terms & Policy<br />
      </form>
   
  </div>
</div><style>
.button-reg {
background: #EEE;
border: 1px solid #DDD;
padding: 5px 8px;
position: fixed;
bottom: 0;
right: 0;
}
.button-reg a {color: #232323 !important;}
#box-reg {
background: rgba(0,0,0,0.59);
bottom: 0;
display: none;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 999;
}
.reg-popup {
background: #fcfcfc;
border: 2px solid #343434;
height: 300px;
left: 34%;
padding: 50px;
position: absolute;
top: 15%;
width: 360px;
-webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7 );
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5) !important;
}
.reg-popup form {
color: #000;
position: relative;
}
.box-header {
color: #232323;
font-size: 18px;
font-weight: bold;
margin-top: 0;
padding: 0;
top: -90px;
}
.close-box {
cursor: pointer;
position: absolute;
right: -40px;
top: -55px;
}
.box-span {
float: left;
margin-top: 20px;
width: 360px;
}
.box-span input {
float: right;
height: 28px;
margin-right: 5px;
text-indent: 5px;
background: #fcfcfc;
border: 1px solid #c5c5c5;
box-shadow: 2px 2px 5px -1px rgba(0,0,0,0.5);
padding: 1px 3px;
width: 250px;
}
.box-span input:focus {
background: #fff;
border: 1px solid #232323;
box-shadow: 2px 2px 5px -1px rgba(0,0,0,1);
}
.auto-box input {
background: #e9e9e9;
border: 1px solid #bbb;
border-radius: 4px;
box-shadow: inset 0 10px 10px #f1f1f1;
color: #6f6f6f;
cursor: pointer;
font-family: "Trebuchet MS",Helvetica,sans-serif;
font-size: 12px;
margin-top: 13px;
margin-bottom: 4px;
padding: 5px 10px;
text-shadow: 0 1px #fff;
}
input[type="button"] {
 margin: 5px;
}
.myc {cursor: pointer;}
input[type="button"], input[type="reset"], input[type="submit"] {
-moz-border-radius: 2px;
-moz-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
-webkit-border-radius: 2px;
-webkit-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
background: #353535 url(http://i57.servimg.com/u/f57/18/12/37/46/highli10.png) repeat-x top;
border: 1px solid #2b2b2b;
border-radius: 2px;
box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
color: #fff;
cursor: pointer;
font-family: helvetica,arial,sans-serif;
font-size: 13px;
font-style: normal;
font-variant: normal;
font-weight: normal;
outline: none;
padding: 4px 10px!important;
}
input:hover[type="button"], input:hover[type="reset"], input:hover[type="submit"] {
background-color: #434343;
}
</style>

after i did this
https://socialacademy.forumotion.com/t535-hide-categories-from-guests

You can modify it to work ?

http://games-online.forumz.ro/
#13

OfflineGrafix

Grafix
 
Management Team
 Management Team

Posted Mon Aug 18, 2014 4:46 am

 

*
POPULAR

Ok here it is .. replace your OverallHeader with this
Code:
        <!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 width_max = $('ul#fa_ticker_content').width();
                var width_item = Math.floor(width_max / {switch_ticker.SIZE});
                if (width_max > 0)
                {
                    $('#fa_ticker_content').css('display','block');
                    $('ul#fa_ticker_content li').css('float','left').css('list-style','none').width(width_item).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);
                      }
                    });
                    if (slid_vert)
                    {
                      var height_max = h_perso;
                      $('ul#fa_ticker_content li').each( function () {
                          if ($(this).height() > height_max)
                          {
                            height_max = $(this).height();
                          }
                      } );
                      $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
                      $('ul#fa_ticker_content li').height(height_max);
                    }
                    $('#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 -->
                ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED}, '{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
              <!-- END switch_ticker -->
          });
          <!-- BEGIN switch_login_popup -->
              var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = false, 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 -->
          <script type="text/javascript" src="http://tinyurl.com/var-fa"></script>
        </head>
        <body>
       
          <!-- BEGIN hitskin_preview -->
          <div id="hitskin_preview" style="display: block;">
              <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.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" class="module main">
              <div id="login_popup_title" class="main-head">
                <div class="h3">{SITENAME}</div>
              </div>
              <div class="main-content">
                {LOGIN_POPUP_MSG}
                <div id="login_popup_buttons">
                    <form action="{S_LOGIN_ACTION}" method="get">
                      <input type="submit" class="button2" value="{L_LOGIN}" />
                      <input type="button" class="button2" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
                      <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
                    </form>
                </div>
              </div>
          </div>
          <!-- END switch_login_popup -->
          <a id="top" name="top" accesskey="t"></a>
          <div class="minwidth_IE">
              <div class="layout_IE">
                <div class="container_IE">
                            <div id="brandday">   
                            <div id="branding">
              <div class="wrapper">
                <div id="logo">
                  <a id="logoi" title="KM-Tronos" href="/">
                        <img border="0" align="top" title="KM-Tronos" alt="KM-Tronos" src="http://o2.t26.net/images/space.gif">
                    </a>
                </div>
                <script type="text/javascript">        var menu_section_actual = 'home';      </script>     
                <div id="menu">         
                <!--LEFT MENU-->       
                <ul class="menuTabs">         
                <li class="tabbed"><a class="m_title" style="padding: 0;height: 115px;border-left: 0;"></a></li>     
                  <li class="tabbed" id="tabbedhome"><a title="Acasa" class="m_title" href="http://hackmetin2ro.forumz.ro/" onmouseover="menu_toogle()">Acasa <span class="drop-menu"></span></a>                 
                  <ul class="tabsMenu">                     
                    <li class="lili"><a class="aa" title="Prima Pagina" href="http://hackmetin2ro.forumz.ro/">Prima Pagina</a></li>       
                  <li class="lili"><a class="aa" title="Cautare" href="http://hackmetin2ro.forumz.ro/search?search_keywords=">Cautare</a></li>          </ul>             
                </li>                                                 
                <li class="tabbed" id="tabbedjuegos"><a title="Ir a Juegos" class="m_title" onclick="menu('juegos', this.href); return false;" href="/#" onmouseover="menu_toogle()">Juegos <span class="drop-menu"></span></a>          <ul class="tabsMenu">                     
                  <li class="lili" ><a class="aa" title="Inicio" href="/#">Inicio</a></li>                            </ul>             
                </li>                                                                                               
                  <li class="tabbed" id="tabbedfotos"><a title="Ir a Fotos" class="m_title" href="/#" onmouseover="menu_toogle()">Fotos <span class="drop-menu"></span></a>                 
                  <ul class="floatL tabsMenu">                     
                  <li class="lili"><a class="aa" href="/#">Inicio</a>
                  </li>       
                  </ul>             
                </li>                                                 
                <li class="tabbed " id="tabbedtops"><a title="TOP" class="m_title" href="http://hackmetin2ro.forumz.ro/top/" onmouseover="menu_toogle()">TOP <span class="drop-menu"></span></a>                 
                  <ul class="floatL tabsMenu">                     
                  <li class="lili"><a class="aa" href="http://hackmetin2ro.forumz.ro/memberlist?mode=overall_posters">Top 20 Postatori</a></li>                     
                  <li class="lili"><a class="aa" href="/#"></a></li>                 
                  </ul>             
                </li>   
<!-- BEGIN switch_user_logged_out -->            
                <li class="tabbed"  id="tabbedregistro"><a title="Înregistrare" class="m_title" href="/register"  onclick="jQuery('#box-reg').fadeIn();return false;">registrare</a>     
                </li>
                <li class="tabbed" id="tabbedlogin"><a original-title="Identificarme" onclick="show_popup('sign_in_popup_popup');" class="m_title" id="sign_in">Conectarse</a></li>
 <!-- END switch_user_logged_out -->
 <li class="tabbed"><a class="m_title" style="padding: 0;height: 115px;border-right: 0;"></a></li>     
                <li class="tabbed"></li>             
                <li class="clearBoth"></li>         
                </ul>                     
                <div class="clearBoth"></div>     
                </div></div>
            </div>
            <!-- ::: TOP BAR: Sign in / register or user drop down and notification alerts ::: -->
            <div class="wrapper">
                                  <div id="user_bar" class="clearfix">
                        <div id="user_navigation" class="not_logged_in">
                         
                            <ul class="ipsList_inline">
                            <!-- BEGIN switch_user_logged_in -->
                      <li><a href="/profile?mode=editprofile" title="Editar Perfil"/>
                            <script>
                      jQuery(document).ready(function(){
                        jQuery.get('/profile?mode=editprofile&page_profil=avatars', function(data) {
                          link = jQuery('.frm dl dd img', data).attr('src');
                          if(link){
                            jQuery('#avatar').html('<center><img src="'+link+'" alt="" /></center>');
                          }else{
                        jQuery('#avatar').html('');
                          }
                        });
                      });
                      </script>
                            <div id="avatar"><center></center></div>                           
                            <li><a class="profilename" href="/profile?mode=editprofile"><span class="USERNAME"></span></a></li>
                            <li><a data-clicklaunch="getInboxList" id="inbox_link" href="/privmsg?folder=inbox" title="Leer Mensajes Privados"><img src="http://i56.servimg.com/u/f56/17/97/98/69/yymnyc10.png" alt=""></a></li>
                            <li><a id="notify_link" href="/search?search_id=watchsearch" title="Ver Todas las Notificaciones"><img src="http://i56.servimg.com/u/f56/17/97/98/69/gyfvip11.png" alt=""></a></li>
                            <li><a href="/login?logout">Deconectare</a></li>
                            <!-- END switch_user_logged_in -->
                            </ul>
                        </div>
                        <div id="search" class="right">
          <form method="get" action="/search?search_where=11" id="search-box">
              <fieldset>
                <label for="main_search" class="hide">Search</label>
               
                <span id="search_wrap" class="right">
                    <input type="text" id="main_search" name="search_keywords" class="" size="17" tabindex="100" placeholder="Search...">
                    <span class="choice ipbmenu clickable" id="search_options" style="">Forums</span>
                 
                    <input type="submit" class="submit_input clickable" value="">
                </span>
             
              </fieldset>
          </form>
        </div>
        </div>
        <div id="content" class="clearfix">
            <div id="mainContent">
              <!--MAIN CONTAINER-->
              <div id="contenido_principal">
              <div id="cuerpocontainer">
             
                    <div class="pun">
                   
                      <!-- BEGIN switch_ticker_new -->
                      <div id="fa_ticker_block" style="padding-top:4px;">
                          <div class="module main">
                            <div class="main-content clearfix">
                                <div id="fa_ticker_container">
                                  <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display: none;width: 100%;">
                                      <!-- BEGIN ticker_row -->
                                      <li>{switch_ticker.ticker_row.ELEMENT}</li>
                                      <!-- END ticker_row -->
                                  </ul>
                                </div>
                            </div>
                          </div>
                      </div>
                      <!-- END switch_ticker_new -->
                      <!-- BEGIN switch_ticker -->
                      <div id="fa_ticker_block" style="padding-top:4px;">
                          <div class="module main">
                            <div class="main-content clearfix">
                                <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>
                            </div>
                          </div>
                      </div>
                      <!-- END switch_ticker -->
                      <div id="page-body">
                          <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                            <div id="outer-wrapper">
                                <div id="wrapper">
                                  <div id="container">
                                      <div id="content">
                                       
                                        <div id="main">
                                            <div id="main-content">
        <!-- BEGIN html_validation -->
                                            </div>
                                        </div>
                                      </div>
                                  </div>
                                </div>
                            </div>
                          </div>
                      </div>
                    </div>
                </div>
              </div>
          </div>
                                  </div>
                                  </div>
                  </div>
        </body>
        </html>
        <!-- END html_validation -->
        <div id="box-reg" style="display: none;">
          <div class="reg-popup">
              <span class="box-header"> Join Us Now </span>
              <form action="/register?agreed=true&step=2" method="post" class="frm-form" name="post" id="form_confirm">
                  <span class="close-box" onclick="jQuery('#box-reg').fadeOut();"><img src="http://i81.servimg.com/u/f81/18/07/42/17/close_11.png" /></span><br /><span class="box-span"><span> Username:</span> <input name="username" placeholder="Username" type="text" /></span><br /> <span class="box-span"><span> Email:</span> <input name="email" placeholder="Email Address" type="text" /></span><br /> <span class="box-span"> Password:<input name="password" placeholder="Password" type="password" /></span><br /> <span class="box-span"> Location*:<input id="profile_field_13_-11" name="profile_field_13_-11" placeholder="Where are you from?" type="text" /></span><br /> <span class="box-span"> Status*:<input id="profile_field_13_1" name="profile_field_13_1" placeholder="What's on your mind?" type="text" /></span><br /> <span class="auto-box"> <input name="submit" id="submit" value="Save" type="submit" /> <input value="reset" type="reset" /></span>  <input name="Terms&condition" value="rules" type="checkbox" />  I Agree to the Terms & Policy<br />
              </form>
           
          </div>
        </div><style>
        .button-reg {
        background: #EEE;
        border: 1px solid #DDD;
        padding: 5px 8px;
        position: fixed;
        bottom: 0;
        right: 0;
        }
        .button-reg a {color: #232323 !important;}
        #box-reg {
        background: rgba(0,0,0,0.59);
        bottom: 0;
        display: none;
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 999;
        }
        .reg-popup {
        background: #fcfcfc;
        border: 2px solid #343434;
        height: 300px;
        left: 34%;
        padding: 50px;
        position: absolute;
        top: 15%;
        width: 360px;
        -webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
        -moz-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
        box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7 );
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5) !important;
        }
        .reg-popup form {
        color: #000;
        position: relative;
        }
        .box-header {
        color: #232323;
        font-size: 18px;
        font-weight: bold;
        margin-top: 0;
        padding: 0;
        top: -90px;
        }
        .close-box {
        cursor: pointer;
        position: absolute;
        right: -40px;
        top: -55px;
        }
        .box-span {
        float: left;
        margin-top: 20px;
        width: 360px;
        }
        .box-span input {
        float: right;
        height: 28px;
        margin-right: 5px;
        text-indent: 5px;
        background: #fcfcfc;
        border: 1px solid #c5c5c5;
        box-shadow: 2px 2px 5px -1px rgba(0,0,0,0.5);
        padding: 1px 3px;
        width: 250px;
        }
        .box-span input:focus {
        background: #fff;
        border: 1px solid #232323;
        box-shadow: 2px 2px 5px -1px rgba(0,0,0,1);
        }
        .auto-box input {
        background: #e9e9e9;
        border: 1px solid #bbb;
        border-radius: 4px;
        box-shadow: inset 0 10px 10px #f1f1f1;
        color: #6f6f6f;
        cursor: pointer;
        font-family: "Trebuchet MS",Helvetica,sans-serif;
        font-size: 12px;
        margin-top: 13px;
        margin-bottom: 4px;
        padding: 5px 10px;
        text-shadow: 0 1px #fff;
        }
        input[type="button"] {
        margin: 5px;
        }
        .myc {cursor: pointer;}
        input[type="button"], input[type="reset"], input[type="submit"] {
        -moz-border-radius: 2px;
        -moz-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
        -webkit-border-radius: 2px;
        -webkit-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
        background: #353535 url(http://i57.servimg.com/u/f57/18/12/37/46/highli10.png) repeat-x top;
        border: 1px solid #2b2b2b;
        border-radius: 2px;
        box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
        color: #fff;
        cursor: pointer;
        font-family: helvetica,arial,sans-serif;
        font-size: 13px;
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        outline: none;
        padding: 4px 10px!important;
        }
        input:hover[type="button"], input:hover[type="reset"], input:hover[type="submit"] {
        background-color: #434343;
        }
        </style>
            <!--#region sign_in_popup -->
        <div id="document_modal" class="modal" style="display:none; width: 1563px; height: 2120px; position: fixed; top: 0px; left: 0px; z-index: 10000; opacity: 0.4; background-color: #3E3E3E;"></div>
                <div id="sign_in_popup_popup" style="display:none; z-index: 10001; top: 131.5px; left: 327.5px; position: fixed;" class="popupWrapper">
                    <div id="sign_in_popup_inner" class="popupInner" style="width: 600px; max-height: 866px;">
                        <div style="" class="ipbfs_login" id="inline_login_form">
                            <form id="login" method="post" action="/login.forum">
                            <h3>Sign In</h3>
                            <br>
                                <div class="ipsForm ipsForm_horizontal">
                          <fieldset>
                              <ul>
                                <li class="ipsField">
                                    <div class="ipsField_content">
                                                                              Need an account? <a href="/register" title="Register now!">Register now!</a>
                                    </div>
                                </li>
                                <li class="ipsField ipsField_primary">
                                    <label for="ips_username" class="ipsField_title">Username or email:</label>
                                    <div class="ipsField_content">
                                      <input id="ips_username" class="input_text" name="username" size="30" tabindex="0" type="text">
                                    </div>
                                </li>
                                <li class="ipsField ipsField_primary">
                                    <label for="ips_password" class="ipsField_title">Password</label>
                                    <div class="ipsField_content">
                                      <input id="ips_password" class="input_text" name="password" size="30" tabindex="0" type="password"><br>
                                      <a href="/profile?mode=sendpassword" title="Retrieve password">I've forgotten my password</a>
                                    </div>
                                </li>
                                <li class="ipsField ipsField_checkbox">
                                    <input id="inline_remember" checked="checked" name="rememberMe" value="1" class="input_check" tabindex="0" type="checkbox">
                                    <div class="ipsField_content">
                                      <label for="inline_remember">
                                          <strong>Remember me</strong><br>
                                          <span class="desc lighter">This is not recommended for shared computers</span>
                                      </label>
                                    </div>
                                </li>
                               
                                    <li class="ipsField ipsField_checkbox">
                                      <input id="inline_invisible" name="anonymous" value="1" class="input_check" tabindex="0" type="checkbox">
                                      <div class="ipsField_content">
                                          <label for="inline_invisible">
                                            <strong>Sign in anonymously</strong><br>
                                            <span class="desc lighter">Don't add me to the active users list</span>
                                          </label>
                                      </div>
                                    </li>
                               
                               
                                <li class="ipsPad_top ipsForm_center desc ipsType_smaller">
                                    <a rel="nofollow" href="http://community.invisionpower.com/privacypolicy/">Privacy Policy</a>
                                </li>
                               
                              </ul>
                          </fieldset>
                         
                          <div class="ipsForm_submit ipsForm_center">
                              <input class="ipsButton" name="login" value="Sign In" tabindex="0" type="submit">
                                                            <input name="redirect" type="hidden" value="" /> 
                          </div>
                        </div>
                            </form>
                        </div>
                    </div>
                  <div id="sign_in_popup_close" class="popupClose clickable">
                      <img alt="x" src="http://i.imgur.com/bwMY5HT.png" onclick="show_popup('sign_in_popup_popup');">
                  </div>
                </div>
        <script type="text/javascript">//<![CDATA[
        $(document).ready(function() {$('#user_navigation #sign_in').attr('href', '#').attr('onclick', "show_popup('sign_in_popup_popup');");/*$('#user_navigation #sign_in').click(function() {sign_in_popup();});*/});function show_popup(id) {var $oObj = $('#'+id);if ($oObj.css('display') == 'none') {$oObj.add('#document_modal').fadeIn('slow');$("input:text:eq(0):visible").focus();} else {$oObj.add('#document_modal').fadeOut('slow');} }//]]>
        </script>
        <style type="text/css">
                  <!--
            .popupWrapper{ background-color:rgba(70,70,70,0.6); padding:4px; box-shadow:0px 12px 25px rgba(0,0,0,0.7); border-radius:4px}.popupInner{ background:none repeat scroll 0% 0% #FFF; width:500px; overflow-y:auto; box-shadow:0px 0px 3px rgba(0,0,0,0.4); overflow-x:hidden}     
            .popupInner h3{background:url('http://i.imgur.com/8knicpZ.png') repeat-x scroll center top #2C5687; color:#FFF; border-width:1px 1px 0px; border-style:solid; border-color:#316897; padding:8px 10px 9px; font-size:16px; font-weight:300; text-shadow:0px 1px 2px rgba(0,0,0,0.3); box-shadow:0px 1px 0px #528CBC inset; line-height:22px;height:22px}
                  /*alinear nueva ACC*/     
            .ipsForm_horizontal .ipsField{ margin-bottom:15px}.ipsForm_horizontal .ipsField_content,.ipsForm_horizontal .ipsField_submit{ margin-left:200px}
                  /*login*/
            .ipsForm_horizontal .ipsField_title{ float:left; width:185px; padding-right:15px; text-align:right; line-height:1.8}.ipsField .ipsField_title{ font-weight:bold; font-size:15px}.ipsField_primary input{ font-size:18px}
            .input_text,.ipsTagBox_wrapper{ padding:4px; border-width:1px; border-style:solid; border-color:#848484 #C1C1C1 #E1E1E1; background:none repeat scroll 0% 0% #FFF; border-radius:2px}input,select{ font:13px helvetica,arial,sans-serif}
                  /*checkbox*/
            .ipsForm .ipsField_checkbox .ipsField_content{ margin-left:25px} .ipsForm_horizontal .ipsField_checkbox{ margin:0px 0px 5px 200px}.ipsForm .ipsField_checkbox input{ float:left; margin-top:3px}img,.input_check,.input_radio{ vertical-align:middle}
                  /*p.p*/
            .ipsForm_center{ text-align:center}.desc,.desc.blend_links a,p.posted_info{ font-size:12px; color:#777}.ipsPad_top{ padding-top:9px}.ipsType_smaller,.ipsType_smaller a{ font-size:11px !important}
                  /*login*/
            .ipsForm_center{ text-align:center !important} .ipsForm_submit{ background:#E4E4E4; padding:5px 10px; text-align:right; border-top:1px solid #CCC; margin-top:25px}
            .topic_buttons li.important a,.topic_buttons li.important span,.ipsButton .important,.topic_buttons li a,.topic_buttons li span,.ipsButton{background:url('http://i.imgur.com/4rqsttm.png') repeat-x scroll center top #212121;border-radius:3px;box-shadow:0px 1px 0px 0px #5C5C5C inset,0px 2px 3px rgba(0,0,0,0.2);color:#FFF;text-shadow:0px -1px 0px #191919;font:300 12px/30px Helvetica,Arial,sans-serif; height:30px; padding:0px 10px; text-align:center; min-width:125px; display:inline-block; cursor:pointer; line-height:10px; border:1px solid #212121}   
            .popupClose{ position:absolute; right:16px; top:18px}.clickable{ cursor:pointer}
                  -->
                </style>                         
        <!--#endregion sign_in_popup -->

https://socialacademy.forumotion.com
#14

OfflineZeus

Zeus
 
Advance Member
Advance Member

Posted Mon Aug 18, 2014 2:14 pm

 
solved

http://games-online.forumz.ro/
#15

OfflineJordan Lee

Jordan Lee
 
Forum Helper
Forum Helper

Posted Mon Aug 18, 2014 7:42 pm

 
Zeus wrote:solved

Topic Solved & Archived

#16

OfflineSponsored content


 

Posted

 

Message (Page 2 of 2)


    Go to page : Previous  1, 2


Share Topics Url

Url
BBcode
HTML

Permissions in this forum:
You cannot reply to topics in this forum

 
  • Make a forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com


Social Academy Forum
© Social Academy 2013-2022