Efeito hover no Menu

2 participantes

Ver o tópico anterior Ver o tópico seguinte Ir para baixo

Tópico resolvido Efeito hover no Menu

Mensagem por iScroll 15.03.17 2:35

Detalhes da questão


Endereço do fórum: http://www.brasilplayultimate.com.br
Versão do fórum: PunBB

Descrição


Olá galera, gostaria desse seguinte efeito:

https://i.imgur.com/uP4UFFT.png

No meu menu na parte de "regras":
https://i.imgur.com/c5Xssf2.png

Seria possível?


Última edição por iScroll em 16.03.17 15:38, editado 1 vez(es)
iScroll

iScroll
Super Membro

Membro desde : 08/03/2015
Mensagens : 1701
Pontos : 2311

http://ultimatelife.forumeiros.com

Ir para o topo Ir para baixo

Tópico resolvido Re: Efeito hover no Menu

Mensagem por while 15.03.17 2:38

Olá autor, boa noite.

Me passa o código do seu overall_header e também os links e nomes que você gostaria que tivessem esse hover.

Até mais.
while

while
Hiper Membro

Membro desde : 24/04/2016
Mensagens : 3263
Pontos : 4761

http://www.ajuda.forumeiros.com https://www.facebook.com/profile.php?id=100012157981279

Ir para o topo Ir para baixo

Tópico resolvido Re: Efeito hover no Menu

Mensagem por iScroll 15.03.17 2:44

Overall : http://pastebin.com/FJp0Gf3b

http://www.brasilplayultimate.com.br/f149-regras-do-servidor

Todos esses links por favor
Se der pra criar por exemplo, digamos que no total tenha 10 tópicos, criar 2 de cada lado
Exemplo

1 | 1
2 | 2
3 | 3
4 | 4
5 | 5

Entendeu ?
Desde já agradeço kk
iScroll

iScroll
Super Membro

Membro desde : 08/03/2015
Mensagens : 1701
Pontos : 2311

http://ultimatelife.forumeiros.com

Ir para o topo Ir para baixo

Tópico resolvido Re: Efeito hover no Menu

Mensagem por while 15.03.17 3:07

Não puis todos, deixarei você terminar o resto... troque o overall_header por este:

Código:
<!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>
  <link href="https://fonts.googleapis.com/css?family=Exo+2:400,400i,500,500i,600,600i,700" rel="stylesheet">
    <link rel="stylesheet" type="text/css" title="Main" media="screen,print" href="http://darkcheats.uhosti.com/css/css.css">
  <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="https://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 -->
      <style>
@keyframes branding {
 
  from {
      background-position: 0 0;
  }
   
  to {
      background-position: 1600px 0;
  }
}
 
#branding {
    animation: branding 40s linear infinite;
}
</style>
</head>
 

<body>
  <style>
/** Ajuste */
table spam.lr-title {
display: flex!important;
}
 
/** Ícones antes dos links */
td.lr-links a:before {
content: "\f0c1";
margin-right: 4px;
font-family: FontAwesome;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 12px!important;
}
 
/** ---------------- MAIN ---------------- */
div.link-rapido table {
padding-top: 10px;
top:77px;
padding-bottom: 10px;
margin-left: -11px;
color: #fff;
background-color: #444;
border-bottom: solid 3px #383737;
position: fixed;
left: -221px;
transition: 0.5s;
padding-left: 16px;
z-index: 9999;
border-radius: 0px 5px 5px 0px;
box-shadow: 3px 2px 5px 0px #444444, inset -2px 3px 9px 0px #444444;
}
 
/** Ajuste */
div.link-rapido table:hover {
left:0px!important;
}
 
/** Título */
spam.lr-title {
text-shadow: 2px 2px 0px #272525;
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg)!important;
font-family: "Trebuchet MS", Arial, Verdana, Sans-serif;
margin-right: -36px;
margin-left: -15px;
font-size:17px;
}
 
/** Links */
td.lr-links a {
text-shadow: 2px 2px 0px #272525;
font-family: "Trebuchet MS", Arial, Verdana, Sans-serif;
color: #fff!important;
font-size: 14px;
}
</style>
<div class="link-rapido">
   
<table>
     
<tbody>
         
<tr>
<!--  =================================================================  -->
<td class="lr-links">
<div id="lr-inside1">
<a id="lr-ins" href="/f3-regras-servidor-e-forum">Regras do Servidor e Fórum</a><br />
<a id="lr-con" href="/f4-noticias-da-administracao?">Notícias da Administração</a><br />
<a id="lr-pro" href="/f6-denuncias">Área de Denúncias</a><br />
<a id="lr-dem" href="/f16-inscricoes-para-lider">Inscrições para Líder</a><br />
<br />
<a id="lr-rco" href="https://www.facebook.com/BrasilPlayUltimate">Facebook</a><br />
<a id="lr-leg" href="https://www.youtube.com/user/BrasilPlayUltimateSA">Youtube</a>
</div>
</td>
<!--  =================================================================  -->
<td>
<!--  =================================================================  -->
<spam class="lr-title">LINKS RÁPIDOS</spam>
<!--  =================================================================  -->
</td>
           
</tr>
         
</tbody>
     
</table>
</div>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://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="https://{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 -->
 
 
 
 
 
 <style id="stylePrimary" type="text/css">body.cpe, .cpe #header, .cpe #secondary_navigation, .cpe #footer, .cpe #primary_extra_menucontent, .cpe #more_apps_menucontent, .cpe .submenu_container{ background-color: #55728b}.cpe #secondary_navigation a, .cpe #secondary_navigation{ color: #55728b} </style>
  <style id="styleSecondary" type="text/css">.cpe .topic_buttons li a, .cpe .pagination .pages li.active, .cpe .mini_pagination a, .cpe #vnc_filter_popup_close, .cpe .bar, .cpe .ipsSideBlock h3, .cpe .general_box h3, .cpe .statistics_head, .cpe .maintitle, .cpe ul.post_controls, .cpe ul.post_controls li.multiquote.selected a, .cpe #board_stats .value, .cpe .post_block h3, .input_submit{ background-color: #55728b }a, .cpe .ipsSideBlock h3, .cpe .ipsSideBlock h3 a, .cpe .general_box h3, .cpe .general_box h3 a, .cpe .bar, .cpe .bar a, .cpe .statistics_head, .cpe .statistics_head a, .cpe .poll h3 .desc, .cpe #board_stats .value{ color: #55728b } </style>
  <p id="content_jump" class="hide"><a id="top"></a><a href="#j_content" title="Jump to content" accesskey="m">Jump to content</a><a id="top" name="top" accesskey="t"></a></p>
 

  <style id="stylePrimary" type="text/css">body.cpe, .cpe #header, .cpe #secondary_navigation, .cpe #footer, .cpe #primary_extra_menucontent, .cpe #more_apps_menucontent, .cpe .submenu_container{ background-color: #55728b}.cpe #secondary_navigation a, .cpe #secondary_navigation{ color: #55728b} </style>
  <style id="styleSecondary" type="text/css">.cpe .topic_buttons li a, .cpe .pagination .pages li.active, .cpe .mini_pagination a, .cpe #vnc_filter_popup_close, .cpe .bar, .cpe .ipsSideBlock h3, .cpe .general_box h3, .cpe .statistics_head, .cpe .maintitle, .cpe ul.post_controls, .cpe ul.post_controls li.multiquote.selected a, .cpe #board_stats .value, .cpe .post_block h3, .input_submit{ background-color: #55728b }a, .cpe .ipsSideBlock h3, .cpe .ipsSideBlock h3 a, .cpe .general_box h3, .cpe .general_box h3 a, .cpe .bar, .cpe .bar a, .cpe .statistics_head, .cpe .statistics_head a, .cpe .poll h3 .desc, .cpe #board_stats .value{ color: #55728b } </style>
  <p id="content_jump" class="hide"><a id="top"></a><a href="#j_content" title="Jump to content" accesskey="m">Jump to content</a><a id="top" name="top" accesskey="t"></a></p>
 

  <div id="header">
    <div id="panel">
      <div class="upper">
         <div class="wrapper">
             <div class="menu">
                 <ul>
                 
                  <li class="home"><a href=""></a></li>
                  <li><a href="/portal">Portal</a></li>
                  <li><a href="/forum">Ínicio</a></li>
                  <li><a href="/memberlist">Membros</a></li>
        <li><a href="/groups">Grupos</a></li>                 
<script>function myDropMenu() {    document.getElementById("myDropDown").classList.toggle("show");document.getElementById("notif_list").classList.remove('show');document.getElementById("drop_link").classList.toggle("select_link");document.getElementById("notify_link").classList.remove('select_link');}</script>
          <li><a id="drop_link" onclick="myDropMenu()" style="cursor: pointer;" >Regras</a><div id="myDropDown" class="dropdown-content">
<a href="/t1198-regras-mecanicos">Mecânicos</a>
<a href="/t957-regras-destinadas-aos-territorios">Destinada á Territorios</a>
<a href="/t777-regras-veiculos-1-2">Veiculos</a>
<a href="/t464-regras-boca-de-fumo">Boca de fumo</a>
<a href="/t437-regras-veiculos-de-guerra">Veiculo de guerra</a>
<a href="/t436-regras-para-andar-na-mala">Andar na mala</a>
<a href="/t435-regras-agente-penitenciario">Agente penitenciario</a>
<a href="/t434-regras-sistema-de-som-veicular">Sistema de som</a>
<a href="/t433-regras-ladrao-de-carros">Ladrão de carros</a>
<a href="/t432-regras-quanto-a-atentados-e-contrato-com-mercenarios">Contrato e atento com mercenarios</a>
<a href="/t431-regras-invasoes-e-ataques-terroristas">Invasão e ataque terrorista</a>
<a href="/t430-regras-destinadas-aos-lideres">Lideres</a>
     
                 </ul>
             </div>
           <div class="usersection">

           </div>
         </div>
   </div>
</div>
</div>
                                     
                           
  <!-- BEGIN switch_user_logged_in -->
<div id="branding">
<!-- FA.BEGIN fa_user_menu -->
<div id="fa-user-menu" class="fa-user-menu-{% CONNECTION_STATUS %}">
  <div class="fa-user-menu-body">
      <div class="fa-user-menu-open-arrow">
        <i class="fa fa-angle-double-left"></i>
      </div>
      <div class="fa-user-menu-title">
        {% L_WELCOME %}, <a href="{% USER_PROFILE_URL %}" class="fa-user-menu-username">{% USERNAME %}</a>
      </div>
      <div class="fa-user-menu-content">
        <ul class="fa-user-menu-column fa-user-menu-side-column">
            <li><i class="fa fa-comments"></i> {% L_POSTS %}: <span>{% USER_POSTS %}</span></li>
            <li><i class="fa fa-thumbs-up"></i> {% L_REPUTATION %}: <span>{% USER_REPUTATION %}</span></li>
            <li><i class="fa fa-user"></i> {% L_USER_ID %}: <span>{% USER_ID %}</span></li>
            <li><i class="fa fa-envelope"></i> {% L_PRIVMSG %}: <span>{% USER_PRIVMSG %}</span></li>
        </ul>
        <div class="fa-user-menu-column fa-user-menu-main-column">
            <a href="{% LOGIN_LOGOUT_URL %}" class="fa-user-menu-login-logout">
              <i class="fa fa-{% LOGIN_LOGOUT_ICON %}"></i> {% L_LOGIN_LOGOUT %}
            </a>
        </div>
        <ul class="fa-user-menu-column fa-user-menu-side-column">
            <li><i class="fa fa-user"></i> <a href="/profile?mode=editprofile">{% L_PROFILE %}</a></li>
            <li><i class="fa fa-file-text"></i> <a href="/search?search_id=egosearch">{% L_USER_POSTS %}</a></li>
            <li><i class="fa fa-thumbs-up"></i> <a href="/search?search_id=watchsearch">{% L_USER_WATCH_POSTS %}</a></li>
            <li><i class="fa fa-users"></i> <a href="{% USER_FRIENDS_URL %}">{% L_FRIENDS %}</a></li>
        </ul>
      </div>
  </div> 
  <div class="fa-user-menu-profile">
      {% USER_AVATAR %}
      <ul class="fa-user-menu-icons">
        <li><a href="/profile?mode=editprofile&page_profil=notifications" title="{% L_NOTIFICATIONS: %}"><i class="fa fa-bell"></i></a></li>
        <li><a href="/privmsg?folder=inbox" title="{% L_PRIVMSG %}"><i class="fa fa-envelope"></i></a></li>
      </ul>
  </div>
</div>
<script>
(function($) {
  var fa = {
      CONNECTION_STATUS: _userdata.session_logged_in ? 'online' : 'offline',
      L_FRIENDS: 'Amigos',
      L_LOGIN_LOGOUT: _userdata.session_logged_in ? 'Sair' : 'Entrar',
      L_NOTIFICATIONS: 'Notificações',
      L_POSTS: 'Posts',
      L_PRIVMSG: 'MPs',
      L_PROFILE: 'Meu perfil',     
      L_REPUTATION: 'Reputação',
      L_USER_ID: 'ID',
      L_USER_POSTS: 'Meu conteúdo',
      L_USER_WATCH_POSTS: 'Conteúdo que sigo',
      L_WELCOME: 'Bem-vindo',
      LOGIN_LOGOUT_ICON: _userdata.session_logged_in ? 'sign-out' : 'sign-in',
      LOGIN_LOGOUT_URL: _userdata.session_logged_in ? '/login?logout' : '/login',     
      USER_AVATAR: _userdata.avatar,
      USER_ID: _userdata.user_id,
      USER_FRIENDS_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id + 'friends' : '/login',
      USER_POSTS: _userdata.user_posts,
      USER_PRIVMSG: _userdata.user_nb_privmsg,
      USER_PROFILE_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id : '/login',
      USER_REPUTATION: _userdata.point_reputation,
      USERNAME: _userdata.username,
  };
 
  var $menu = $('#fa-user-menu');
  var html = $menu.prop('outerHTML');
 
  $.each(fa, function(key, value) {
      html = html.replace(new RegExp('\\{%\\s' + key + '\\s%\\}', 'g'), value);
  });
 
  $menu.prop('outerHTML', html);
}(jQuery));
</script>   
<!-- FA.END fa_user_menu --><div class="wrapper3 clearfix">
  <div id="logo">
<a href="{U_INDEX}" id="pun-logo"><img src="http://i.imgur.com/GixUGSE.png" alt="{L_INDEX}" /></a>
                </div>
                       
        </div></div>
  <div class="wrapper-head">
    <div id="panel-top">
         <p style="text-align: center; color: #f1f1f1;"> Bem-vindo(a) ao Fórum do Brasil PlayUltimate - RPG, sinta-se a vontade para juntar-se a nós.</p>
      <form action="/search" method="post" style="float: right;margin: -25px 15px 0px;">
         <fieldset id="search" style="background: none;">
                          <input name="search_keywords" type="text" id="main_search" name="search_term" class="" size="17" tabindex="100" placeholder="Buscar..." type="text" class="textbox" style="padding-left: 10px;border-radius: 10px;border-color: #23313e;">
            <!--<input value="" type="submit" class="button" style="font: normal normal normal 14px/1 FontAwesome;">-->
            <input type="hidden" name="action" value="do_search">
            <input type="hidden" name="postthread" value="1">
         </fieldset>
      </form>
      
   </div>
</div>
             
                 
                              <div class="wrapper2">
                   
                 
                <div id="socialButtons" class="right  ">
                  <a href="https://www.facebook.com/BrasilPlayUltimate/" title="Visit us on Facebook" class="facebookButton">Facebook</a>
                </div>
                               
                                                  <!-- ::: NAVIGATION BREADCRUMBS ::: -->
                                             
                                      <div id="secondary_navigation" class="clearfix">
                    <ol class="breadcrumb top ipsList_inline left" id="breadcrumb">
                                                <li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb" class="first">
                                                  <a href="/forum" itemprop="url">
                                    <span itemprop="title">Forum</span>
                                </a>
                            </li>
                       
                                            </ol>
                    <ul id="secondary_links" class="ipsList_inline right">
                        <li><a href="/admin">Painel Admin</a></li>
                        <li><a href="/modcp?f=1&tid=c12aa0fde27491dc563946e93da3ad9e">Painel Moderador</a></li>
                        <li><a href="/search?search_id=newposts" accesskey="2">Novidades</a></li>
                   
                    </ul>
                </div>
                                       
                                          </div>
                                       
                                          <!-- END switch_user_logged_in -->
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                          <!-- BEGIN switch_user_logged_out -->
<div id="branding">
 <!-- FA.BEGIN fa_user_menu -->
<div id="fa-user-menu" class="fa-user-menu-{% CONNECTION_STATUS %}">
            <a href="{% LOGIN_LOGOUT_URL %}" class="fa-user-menu-login-logout">
              <i class="fa fa-{% LOGIN_LOGOUT_ICON %}"></i> {% L_LOGIN_LOGOUT %}</a>
              <a href="/register" class="fa-user-menu-register">
              <i class="fa fa-user-plus"></i> Cadastre-se
            </a>
        </div>
         
<script>
(function($) {
  var fa = {
      CONNECTION_STATUS: _userdata.session_logged_in ? 'online' : 'offline',
      L_FRIENDS: 'Amigos',
      L_LOGIN_LOGOUT: _userdata.session_logged_in ? 'Sair' : 'Entrar',
      L_NOTIFICATIONS: 'Notificações',
      L_POSTS: 'Posts',
      L_PRIVMSG: 'MPs',
      L_PROFILE: 'Meu perfil',     
      L_REPUTATION: 'Reputação',
      L_USER_ID: 'ID',
      L_USER_POSTS: 'Meu conteúdo',
      L_USER_WATCH_POSTS: 'Conteúdo que sigo',
      L_WELCOME: 'Bem-vindo',
      LOGIN_LOGOUT_ICON: _userdata.session_logged_in ? 'sign-out' : 'sign-in',
      LOGIN_LOGOUT_URL: _userdata.session_logged_in ? '/login?logout' : '/login',     
      USER_AVATAR: _userdata.avatar,
      USER_ID: _userdata.user_id,
      USER_FRIENDS_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id + 'friends' : '/login',
      USER_POSTS: _userdata.user_posts,
      USER_PRIVMSG: _userdata.user_nb_privmsg,
      USER_PROFILE_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id : '/login',
      USER_REPUTATION: _userdata.point_reputation,
      USERNAME: _userdata.username,
  };
 
  var $menu = $('#fa-user-menu');
  var html = $menu.prop('outerHTML');
 
  $.each(fa, function(key, value) {
      html = html.replace(new RegExp('\\{%\\s' + key + '\\s%\\}', 'g'), value);
  });
 
  $menu.prop('outerHTML', html);
}(jQuery));
</script>   
<!-- FA.END fa_user_menu -->
  <div class="wrapper clearfix">
                <div id="logo">
                  <a href="{U_INDEX}" id="pun-logo"><img src="http://i.imgur.com/GixUGSE.png" alt="{L_INDEX}" /></a>
                </div>
                     
        </div></div>
                              <div class="wrapper-head">
    <div id="panel-top">
         <p style="text-align: center; color: #f1f1f1;"> Bem-vindo(a) ao Fórum do Brasil PlayUltimate - RPG, registre-se para ter total acesso.</p>
      <form action="/search" method="post" style="float: right;margin: -25px 15px 0px;">
         <fieldset id="search" style="background: none;">
                          <input name="search_keywords" type="text" id="main_search" name="search_term" class="" size="17" tabindex="100" placeholder="Buscar..." type="text" class="textbox" style="padding-left: 10px;border-radius: 10px;border-color: #23313e;">
            <!--<input value="" type="submit" class="button" style="font: normal normal normal 14px/1 FontAwesome;">-->
            <input type="hidden" name="action" value="do_search">
            <input type="hidden" name="postthread" value="1">
         </fieldset>
      </form>
      
   </div>
</div>
                 
                  <div class="wrapper2">
                <div id="nav_wrap" class="clearfix">

                    </div>
      </div>         
   
                 
                                                  <!-- ::: NAVIGATION BREADCRUMBS ::: -->
                                              <div id="secondary_navigation" class="clearfix">
                 
                       
                                       
                    <ul id="secondary_links" class="ipsList_inline right">
                   
                   
                    </ul>
                </div> 
                                             
                                             
                                             
                                             
                                             
                                          <!-- END switch_user_logged_out -->
  <a id="top" name="top" accesskey="t"></a>

  <div class="minwidth_IE">
      <div class="layout_IE">
        <div class="container_IE">
            <div class="pun">
              <div id="pun-intro" class="clearfix">
                  <a href="{U_INDEX}" id="pun-logo"><img src="http://i.imgur.com/EljhHzF.png" alt="{L_INDEX}" /></a>

                  <!-- BEGIN switch_h1 -->
                  <div id="pun-title">{switch_h1.MAIN_SITENAME}</div>
                  <!-- END switch_h1 -->

                  <!-- BEGIN switch_desc -->
                  <p id="pun-desc">{switch_desc.SITE_DESCRIPTION}</p>
                  <!-- END switch_desc -->
              </div>
              <div id="pun-head">
                  <div id="pun-navlinks">
                    <ul class="clearfix">
                        <li>{GENERATED_NAV_BAR}</li>
                    </ul>
                  </div>
              </div>

              <!-- 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="{ID_LEFT}">
                                    <!-- BEGIN giefmod_index1 -->
                                    {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                    <!-- END giefmod_index1 -->
                                </div>
                                <div id="main">
                                    <div id="main-content">

<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
             
<!-- #region sign_in_popup -->
<div id="document_modal" class="modal" style="display:none; width: 100%; height: 100%; 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; position: absolute; top: 9%; left: 27%; z-index: 10001" class="popupWrapper">
  <div id="sign_in_popup_inner" class="popupInner" style="width: 600px; max-height: 641px;">
      <div style="" id="inline_login_form">
        <form id="login" method="post" action="/login.forum">
            <h3>Entrar</h3>
            <!-- BEGIN switch_fb_connect -->
            <div class="ipsBox_notice">
              <ul class="ipsList_inline">
                  <li>
                    <a class="ipsButton_secondary" href="/facebook_connect.forum" v="2" scope="{switch_user_login_form_header.switch_fb_connect.L_FB_PERMISSIONS}">
                        <img alt="Facebook" src="https://i69.servimg.com/u/f69/16/62/61/50/facebo10.png"> &nbsp; Use Facebook
                    </a>
                  </li>
              </ul>
            </div>
            <!-- END switch_fb_connect -->
            <br>
            <div class="ipsForm ipsForm_horizontal">
              <fieldset>
                  <ul>
                    <li class="ipsField">
                        <div class="ipsField_content">
                          Precisa de uma conta? <a title="Registre-se agora!" href="/register">Registre-se agora!</a>
                        </div>
                    </li>
                    <li class="ipsField ipsField_primary">
                        <label class="ipsField_title" for="username">Usuário ou E-mail:</label>
                        <div class="ipsField_content">
                          <input type="text" tabindex="0" size="30" name="username" class="input_text" id="ips_username">
                        </div>
                    </li>
                    <li class="ipsField ipsField_primary">
                        <label class="ipsField_title" for="password">Senha</label>
                        <div class="ipsField_content">
                          <input type="password" tabindex="0" size="30" name="password" class="input_text" id="ips_password"><br>
                          <a title="Retrieve password" href="/profile?mode=sendpassword">Esqueci minha senha</a>
                        </div>
                    </li>
                    <li class="ipsField ipsField_checkbox">
                        <input type="checkbox" tabindex="0" class="input_check" value="1" name="autologin" checked="checked" id="autologin">
                        <div class="ipsField_content">
                          <label for="autologin">
                              <strong>Lembrar dados</strong><br>
                              <span class="desc lighter">Não recomendado para computadores públicos</span>
                          </label>
                        </div>
                    </li>
                    <li class="ipsPad_top ipsForm_center desc ipsType_smaller">
                        <a href="{FORUMURLINK}" rel="nofollow">Privacy Policy</a>
                    </li>
                  </ul>
              </fieldset>
              <div class="ipsForm_submit ipsForm_center">
                  <!-- <input type="submit" tabindex="0" value="Entrar" class="ipsButton"> -->
                  <input type="submit" tabindex="0" class="login-submit ipsButton" name="login" value="Entrar"/>
                  <input name="redirect" type="hidden" value="" /><br />
              </div>
            </div>
        </form>
      </div>
  </div>
  <div id="sign_in_popup_close" class="popupClose clickable">
      <img alt="x" src="https://i69.servimg.com/u/f69/16/62/61/50/close_10.png" onclick="sign_in_popup();">
  </div>
</div>
<script type="text/javascript">
  //<![CDATA[
  $(document).ready(function() {
      $('#user_navigation #sign_in').attr('href', '#').attr('onclick', 'sign_in_popup()');
      /*
      $('#user_navigation #sign_in').click(function() {
        sign_in_popup();
      });
      */
  });
  function sign_in_popup() {
      var x = document.getElementById('sign_in_popup_popup');
      if (x.style.display == 'none') {
        jQuery(x).add('#document_modal').fadeIn('slow');
        var r = x.getElementsByTagName('form')[0].redirect;
        r.value = window.location.href;
      } else {
        jQuery(x).add('#document_modal').fadeOut('slow');
      }
  }
  jQuery(function(){if(document.getElementById('logout')) document.getElementById('sign_in_popup_popup').style.display = 'none'; });
  //]]>
</script>
<style type="text/css">
  <!--
  .popupWrapper {background-color: rgba(70, 70, 70, 0.6);border-radius: 4px 4px 4px 4px;box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);padding: 4px;}
  .popupInner {background: none repeat scroll 0 0 #FFFFFF;box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);overflow-x: hidden;overflow-y: auto;width: 500px;}
  .popupInner h3 {background-color: #2C5687;background: url("http://www.autoitbrasil.com/public/style_images/master/maintitle.png") repeat-x scroll center top #2C5687;border-color: #316897;border-style: solid;border-width: 1px 1px 0;box-shadow: 0 1px 0 #528CBC inset;color: #FFFFFF;font-size: 16px;font-weight: 300;padding: 8px 10px 9px;text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);}
  .ipsBox_notice {line-height: 1.6;margin-bottom: 10px;padding: 10px;}
  .ipsBox_notice, .ipsBox_highlight {background: none repeat scroll 0 0 #F4FCFF;border-bottom: 1px solid #CAE9F5;}
  .ipsList_inline > li:last-child {margin-right: 0;}
  .ipsList_inline > li:first-child {margin-left: 0;}
  .ipsList_inline > li {display: inline-block;}
  .ipsForm_horizontal .ipsField {margin-bottom: 15px;}
  .ipsForm_horizontal .ipsField_content, .ipsForm_horizontal .ipsField_submit {margin-left: 200px;}
  .ipsForm_horizontal .ipsField_title {float: left;line-height: 1.8;padding-right: 15px;text-align: right;width: 185px;}
  .ipsField .ipsField_title {font-size: 15px;font-weight: bold;}
  .ipsField_primary input {font-size: 18px;}
  .input_text, .ipsTagBox_wrapper {background: none repeat scroll 0 0 #FFFFFF;border-color: #848484 #C1C1C1 #E1E1E1;border-radius: 2px 2px 2px 2px;border-style: solid;border-width: 1px;padding: 4px;}
  .input_text:focus {border-color: #4E4E4E #7C7C7C #A3A3A3;box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}
  input.inactive, select.inactive, textarea.inactive {color: #C4C4C4;}
  .ipsForm_horizontal .ipsField_checkbox {margin: 0 0 5px 200px;}
  .ipsForm .ipsField_checkbox input {float: left;margin-top: 3px;}
  .ipsForm .ipsField_checkbox .ipsField_content {margin-left: 25px;}
  .desc.lighter, .desc.lighter.blend_links a {color: #A4A4A4;}
  .ipsForm_center {text-align: center;}
  .desc, .desc.blend_links a, p.posted_info {color: #777777;font-size: 12px;}
  .ipsPad_top {padding-top: 9px;}
  .ipsType_smaller, .ipsType_smaller a {font-size: 11px !important;}
  .ipsForm_submit {background-color: #CCCCCC;background: -moz-linear-gradient(center top , #E4E4E4 0%, #CCCCCC 100%) repeat-x scroll 0 0 transparent !important;border-top: 1px solid #CCCCCC;margin-top: 25px;padding: 5px 10px;}
  .popupClose {position: absolute;right: 16px;top: 12px;}
  .clickable {cursor: pointer;}
  .topic_buttons li.important a, .topic_buttons li.important span, .ipsButton .important, .topic_buttons li a, .topic_buttons li span, .ipsButton{
      -moz-border-bottom-colors: none;-moz-border-left-colors: none;-moz-border-right-colors: none;-moz-border-top-colors: none;background: url("http://www.autoitbrasil.com/public/style_images/master/topic_button.png") repeat-x scroll center top #212121;
      border-color: #212121;border-image: none;border-radius: 3px 3px 3px 3px;border-style: solid;border-width: 1px 1px 0;box-shadow: 0 1px 0 0 #5C5C5C inset, 0 2px 3px rgba(0, 0, 0, 0.2);color: #FFFFFF;cursor: pointer;display: inline-block;
      font: 300 12px/30px Helvetica,Arial,sans-serif;height: 30px;min-width: 125px;padding: 0 10px;text-align: center;text-shadow: 0 -1px 0 #191919;
  }
  .ipsButton_secondary {
      background-color: #DBDBDB;background: -moz-linear-gradient(center top , #F6F6F6 0%, #E5E5E5 100%) repeat-x scroll 0 0 transparent !important;border: 1px solid #DBDBDB;border-radius: 3px 3px 3px 3px;
      box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 0 rgba(0, 0, 0, 0.3);color: #616161;display: inline-block;font-size: 12px;height: 22px;line-height: 22px;padding: 0 10px;transition: all 0.2s ease-in-out 0s;white-space: nowrap;
  }
  -->
</style>
<!-- #endregion sign_in_popup -->
           
                                <style>
                                 
@charset 'UTF-8';
#cssmenu ul,
#cssmenu li,
#cssmenu span,
#cssmenu a {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenu {
color: #878787;
display: block;
height: 37px;
line-height: 37px;
outline: none;
padding: 0 15px;
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu a {
display: inline-block;
padding: 0 28px;
color: #878787;
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
line-height: 52px;
-webkit-box-shadow: inset rgba(0,0,0,0.05) 0 0 0 1px;
background: #efefef;
box-shadow: inset rgba(0,0,0,0.05) 0 0 0 1px;
color: #878787;
display: block;
height: 37px;
line-height: 37px;
outline: none;
padding: 0 15px;
}

#cssmenu ul {
  list-style: none;
  box-shadow: inset 0 1px 0 whitesmoke;
  -moz-box-shadow: inset 0 1px 0 whitesmoke;
  -webkit-box-shadow: inset 0 1px 0 whitesmoke;
}
#cssmenu > ul {
  float: left;
}
#cssmenu > ul > li {
  float: left;
}

#cssmenu > ul > li.active a,
#cssmenu > ul > li:hover > a {
background-color: #51aada;
}
#cssmenu .has-sub {
  z-index: 1;
}
#cssmenu .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub ul {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: none;
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
}
#cssmenu .has-sub ul li a {
background: #51aada;
border-bottom: 1px solid #51aada;
box-shadow: inset 0 1px 0 #51aada;
-moz-box-shadow: inset 0 1px 0 #51aada;
-webkit-box-shadow: inset 0 1px 0 #51aada;
color: white;
display: block;
line-height: 326%;
}
#cssmenu .has-sub ul li:hover a {
background-color: #0d6ea3;
}
#cssmenu .has-sub .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}
#cssmenu .has-sub .has-sub ul li a {
  background: #0d6ea3;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
#cssmenu .has-sub .has-sub ul li a:hover {
  background: #0d6ea3;
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
}
                                  .dropdown-content {
    display: none!important;
    margin-left:-153px;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 153px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    top: 105px!important;
    z-index: 999;
    text-shadow: none!important;
}
.dropdown-content a {
    color: #666!important;
    padding: 0px 16px!important;
    text-decoration: none;
        display: block;
        border-bottom:1px solid #ddd!important;
    float: none!important;
}

.show {
    display: block!important;
}
</style>
while

while
Hiper Membro

Membro desde : 24/04/2016
Mensagens : 3263
Pontos : 4761

http://www.ajuda.forumeiros.com https://www.facebook.com/profile.php?id=100012157981279

Ir para o topo Ir para baixo

Tópico resolvido Re: Efeito hover no Menu

Mensagem por iScroll 15.03.17 3:09

Infelizmente sem resultado.
Veja: https://i.imgur.com/rMhPQ7r.png

faltou algum código ou CSS?
iScroll

iScroll
Super Membro

Membro desde : 08/03/2015
Mensagens : 1701
Pontos : 2311

http://ultimatelife.forumeiros.com

Ir para o topo Ir para baixo

Tópico resolvido Re: Efeito hover no Menu

Mensagem por while 15.03.17 3:49

Naah, é por conta do seu banner.... você deve clicar em "Regras" e vai aparecer agora.

Troque o overall_header por este:

Código:
<!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>
  <link href="https://fonts.googleapis.com/css?family=Exo+2:400,400i,500,500i,600,600i,700" rel="stylesheet">
    <link rel="stylesheet" type="text/css" title="Main" media="screen,print" href="http://darkcheats.uhosti.com/css/css.css">
  <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="https://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 -->
      <style>
@keyframes branding {
 
  from {
      background-position: 0 0;
  }
   
  to {
      background-position: 1600px 0;
  }
}
 
#branding {
    animation: branding 40s linear infinite;
}
</style>
</head>
 

<body>
  <style>
/** Ajuste */
table spam.lr-title {
display: flex!important;
}
 
/** Ícones antes dos links */
td.lr-links a:before {
content: "\f0c1";
margin-right: 4px;
font-family: FontAwesome;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 12px!important;
}
 
/** ---------------- MAIN ---------------- */
div.link-rapido table {
padding-top: 10px;
top:77px;
padding-bottom: 10px;
margin-left: -11px;
color: #fff;
background-color: #444;
border-bottom: solid 3px #383737;
position: fixed;
left: -221px;
transition: 0.5s;
padding-left: 16px;
z-index: 9999;
border-radius: 0px 5px 5px 0px;
box-shadow: 3px 2px 5px 0px #444444, inset -2px 3px 9px 0px #444444;
}
 
/** Ajuste */
div.link-rapido table:hover {
left:0px!important;
}
 
/** Título */
spam.lr-title {
text-shadow: 2px 2px 0px #272525;
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg)!important;
font-family: "Trebuchet MS", Arial, Verdana, Sans-serif;
margin-right: -36px;
margin-left: -15px;
font-size:17px;
}
 
/** Links */
td.lr-links a {
text-shadow: 2px 2px 0px #272525;
font-family: "Trebuchet MS", Arial, Verdana, Sans-serif;
color: #fff!important;
font-size: 14px;
}
</style>
<div class="link-rapido">
   
<table>
     
<tbody>
         
<tr>
<!--  =================================================================  -->
<td class="lr-links">
<div id="lr-inside1">
<a id="lr-ins" href="/f3-regras-servidor-e-forum">Regras do Servidor e Fórum</a><br />
<a id="lr-con" href="/f4-noticias-da-administracao?">Notícias da Administração</a><br />
<a id="lr-pro" href="/f6-denuncias">Área de Denúncias</a><br />
<a id="lr-dem" href="/f16-inscricoes-para-lider">Inscrições para Líder</a><br />
<br />
<a id="lr-rco" href="https://www.facebook.com/BrasilPlayUltimate">Facebook</a><br />
<a id="lr-leg" href="https://www.youtube.com/user/BrasilPlayUltimateSA">Youtube</a>
</div>
</td>
<!--  =================================================================  -->
<td>
<!--  =================================================================  -->
<spam class="lr-title">LINKS RÁPIDOS</spam>
<!--  =================================================================  -->
</td>
           
</tr>
         
</tbody>
     
</table>
</div>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://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="https://{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 -->
 
 
 
 
 
 <style id="stylePrimary" type="text/css">body.cpe, .cpe #header, .cpe #secondary_navigation, .cpe #footer, .cpe #primary_extra_menucontent, .cpe #more_apps_menucontent, .cpe .submenu_container{ background-color: #55728b}.cpe #secondary_navigation a, .cpe #secondary_navigation{ color: #55728b} </style>
  <style id="styleSecondary" type="text/css">.cpe .topic_buttons li a, .cpe .pagination .pages li.active, .cpe .mini_pagination a, .cpe #vnc_filter_popup_close, .cpe .bar, .cpe .ipsSideBlock h3, .cpe .general_box h3, .cpe .statistics_head, .cpe .maintitle, .cpe ul.post_controls, .cpe ul.post_controls li.multiquote.selected a, .cpe #board_stats .value, .cpe .post_block h3, .input_submit{ background-color: #55728b }a, .cpe .ipsSideBlock h3, .cpe .ipsSideBlock h3 a, .cpe .general_box h3, .cpe .general_box h3 a, .cpe .bar, .cpe .bar a, .cpe .statistics_head, .cpe .statistics_head a, .cpe .poll h3 .desc, .cpe #board_stats .value{ color: #55728b } </style>
  <p id="content_jump" class="hide"><a id="top"></a><a href="#j_content" title="Jump to content" accesskey="m">Jump to content</a><a id="top" name="top" accesskey="t"></a></p>
 

  <style id="stylePrimary" type="text/css">body.cpe, .cpe #header, .cpe #secondary_navigation, .cpe #footer, .cpe #primary_extra_menucontent, .cpe #more_apps_menucontent, .cpe .submenu_container{ background-color: #55728b}.cpe #secondary_navigation a, .cpe #secondary_navigation{ color: #55728b} </style>
  <style id="styleSecondary" type="text/css">.cpe .topic_buttons li a, .cpe .pagination .pages li.active, .cpe .mini_pagination a, .cpe #vnc_filter_popup_close, .cpe .bar, .cpe .ipsSideBlock h3, .cpe .general_box h3, .cpe .statistics_head, .cpe .maintitle, .cpe ul.post_controls, .cpe ul.post_controls li.multiquote.selected a, .cpe #board_stats .value, .cpe .post_block h3, .input_submit{ background-color: #55728b }a, .cpe .ipsSideBlock h3, .cpe .ipsSideBlock h3 a, .cpe .general_box h3, .cpe .general_box h3 a, .cpe .bar, .cpe .bar a, .cpe .statistics_head, .cpe .statistics_head a, .cpe .poll h3 .desc, .cpe #board_stats .value{ color: #55728b } </style>
  <p id="content_jump" class="hide"><a id="top"></a><a href="#j_content" title="Jump to content" accesskey="m">Jump to content</a><a id="top" name="top" accesskey="t"></a></p>
 

  <div id="header">
    <div id="panel">
      <div class="upper">
        <div class="wrapper">
            <div class="menu">
                <ul>
                 
                  <li class="home"><a href=""></a></li>
                  <li><a href="/portal">Portal</a></li>
                  <li><a href="/forum">Ínicio</a></li>
                  <li><a href="/memberlist">Membros</a></li>
        <li><a href="/groups">Grupos</a></li>                 
<script>function myDropMenu() {    document.getElementById("myDropDown").classList.toggle("show");document.getElementById("notif_list").classList.remove('show');document.getElementById("drop_link").classList.toggle("select_link");document.getElementById("notify_link").classList.remove('select_link');}</script>
          <li><a id="drop_link" onclick="myDropMenu()" style="cursor: pointer;" >Regras</a><div id="myDropDown" class="dropdown-content">
<a href="/t1198-regras-mecanicos">Mecânicos</a>
<a href="/t957-regras-destinadas-aos-territorios">Destinada á Territorios</a>
<a href="/t777-regras-veiculos-1-2">Veiculos</a>
<a href="/t464-regras-boca-de-fumo">Boca de fumo</a>
<a href="/t437-regras-veiculos-de-guerra">Veiculo de guerra</a>
<a href="/t436-regras-para-andar-na-mala">Andar na mala</a>
<a href="/t435-regras-agente-penitenciario">Agente penitenciario</a>
<a href="/t434-regras-sistema-de-som-veicular">Sistema de som</a>
<a href="/t433-regras-ladrao-de-carros">Ladrão de carros</a>
<a href="/t432-regras-quanto-a-atentados-e-contrato-com-mercenarios">Contrato e atento com mercenarios</a>
<a href="/t431-regras-invasoes-e-ataques-terroristas">Invasão e ataque terrorista</a>
<a href="/t430-regras-destinadas-aos-lideres">Lideres</a>
     
                </ul>
            </div>
          <div class="usersection">

          </div>
        </div>
  </div>
</div>
</div>
                                     
                           
  <!-- BEGIN switch_user_logged_in -->
<div id="branding">
<!-- FA.BEGIN fa_user_menu -->
<div id="fa-user-menu" class="fa-user-menu-{% CONNECTION_STATUS %}">
  <div class="fa-user-menu-body">
      <div class="fa-user-menu-open-arrow">
        <i class="fa fa-angle-double-left"></i>
      </div>
      <div class="fa-user-menu-title">
        {% L_WELCOME %}, <a href="{% USER_PROFILE_URL %}" class="fa-user-menu-username">{% USERNAME %}</a>
      </div>
      <div class="fa-user-menu-content">
        <ul class="fa-user-menu-column fa-user-menu-side-column">
            <li><i class="fa fa-comments"></i> {% L_POSTS %}: <span>{% USER_POSTS %}</span></li>
            <li><i class="fa fa-thumbs-up"></i> {% L_REPUTATION %}: <span>{% USER_REPUTATION %}</span></li>
            <li><i class="fa fa-user"></i> {% L_USER_ID %}: <span>{% USER_ID %}</span></li>
            <li><i class="fa fa-envelope"></i> {% L_PRIVMSG %}: <span>{% USER_PRIVMSG %}</span></li>
        </ul>
        <div class="fa-user-menu-column fa-user-menu-main-column">
            <a href="{% LOGIN_LOGOUT_URL %}" class="fa-user-menu-login-logout">
              <i class="fa fa-{% LOGIN_LOGOUT_ICON %}"></i> {% L_LOGIN_LOGOUT %}
            </a>
        </div>
        <ul class="fa-user-menu-column fa-user-menu-side-column">
            <li><i class="fa fa-user"></i> <a href="/profile?mode=editprofile">{% L_PROFILE %}</a></li>
            <li><i class="fa fa-file-text"></i> <a href="/search?search_id=egosearch">{% L_USER_POSTS %}</a></li>
            <li><i class="fa fa-thumbs-up"></i> <a href="/search?search_id=watchsearch">{% L_USER_WATCH_POSTS %}</a></li>
            <li><i class="fa fa-users"></i> <a href="{% USER_FRIENDS_URL %}">{% L_FRIENDS %}</a></li>
        </ul>
      </div>
  </div> 
  <div class="fa-user-menu-profile">
      {% USER_AVATAR %}
      <ul class="fa-user-menu-icons">
        <li><a href="/profile?mode=editprofile&page_profil=notifications" title="{% L_NOTIFICATIONS: %}"><i class="fa fa-bell"></i></a></li>
        <li><a href="/privmsg?folder=inbox" title="{% L_PRIVMSG %}"><i class="fa fa-envelope"></i></a></li>
      </ul>
  </div>
</div>
<script>
(function($) {
  var fa = {
      CONNECTION_STATUS: _userdata.session_logged_in ? 'online' : 'offline',
      L_FRIENDS: 'Amigos',
      L_LOGIN_LOGOUT: _userdata.session_logged_in ? 'Sair' : 'Entrar',
      L_NOTIFICATIONS: 'Notificações',
      L_POSTS: 'Posts',
      L_PRIVMSG: 'MPs',
      L_PROFILE: 'Meu perfil',     
      L_REPUTATION: 'Reputação',
      L_USER_ID: 'ID',
      L_USER_POSTS: 'Meu conteúdo',
      L_USER_WATCH_POSTS: 'Conteúdo que sigo',
      L_WELCOME: 'Bem-vindo',
      LOGIN_LOGOUT_ICON: _userdata.session_logged_in ? 'sign-out' : 'sign-in',
      LOGIN_LOGOUT_URL: _userdata.session_logged_in ? '/login?logout' : '/login',     
      USER_AVATAR: _userdata.avatar,
      USER_ID: _userdata.user_id,
      USER_FRIENDS_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id + 'friends' : '/login',
      USER_POSTS: _userdata.user_posts,
      USER_PRIVMSG: _userdata.user_nb_privmsg,
      USER_PROFILE_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id : '/login',
      USER_REPUTATION: _userdata.point_reputation,
      USERNAME: _userdata.username,
  };
 
  var $menu = $('#fa-user-menu');
  var html = $menu.prop('outerHTML');
 
  $.each(fa, function(key, value) {
      html = html.replace(new RegExp('\\{%\\s' + key + '\\s%\\}', 'g'), value);
  });
 
  $menu.prop('outerHTML', html);
}(jQuery));
</script>   
<!-- FA.END fa_user_menu --><div class="wrapper3 clearfix">
  <div id="logo">
<a href="{U_INDEX}" id="pun-logo"><img src="http://i.imgur.com/GixUGSE.png" alt="{L_INDEX}" /></a>
                </div>
                       
        </div></div>
  <div class="wrapper-head">
    <div id="panel-top">
        <p style="text-align: center; color: #f1f1f1;"> Bem-vindo(a) ao Fórum do Brasil PlayUltimate - RPG, sinta-se a vontade para juntar-se a nós.</p>
      <form action="/search" method="post" style="float: right;margin: -25px 15px 0px;">
        <fieldset id="search" style="background: none;">
                          <input name="search_keywords" type="text" id="main_search" name="search_term" class="" size="17" tabindex="100" placeholder="Buscar..." type="text" class="textbox" style="padding-left: 10px;border-radius: 10px;border-color: #23313e;">
            <!--<input value="" type="submit" class="button" style="font: normal normal normal 14px/1 FontAwesome;">-->
            <input type="hidden" name="action" value="do_search">
            <input type="hidden" name="postthread" value="1">
        </fieldset>
      </form>
     
  </div>
</div>
             
                 
                              <div class="wrapper2">
                   
                 
                <div id="socialButtons" class="right  ">
                  <a href="https://www.facebook.com/BrasilPlayUltimate/" title="Visit us on Facebook" class="facebookButton">Facebook</a>
                </div>
                               
                                                  <!-- ::: NAVIGATION BREADCRUMBS ::: -->
                                             
                                      <div id="secondary_navigation" class="clearfix">
                    <ol class="breadcrumb top ipsList_inline left" id="breadcrumb">
                                                <li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb" class="first">
                                                  <a href="/forum" itemprop="url">
                                    <span itemprop="title">Forum</span>
                                </a>
                            </li>
                       
                                            </ol>
                    <ul id="secondary_links" class="ipsList_inline right">
                        <li><a href="/admin">Painel Admin</a></li>
                        <li><a href="/modcp?f=1&tid=c12aa0fde27491dc563946e93da3ad9e">Painel Moderador</a></li>
                        <li><a href="/search?search_id=newposts" accesskey="2">Novidades</a></li>
                   
                    </ul>
                </div>
                                       
                                          </div>
                                       
                                          <!-- END switch_user_logged_in -->
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                          <!-- BEGIN switch_user_logged_out -->
<div id="branding">
 <!-- FA.BEGIN fa_user_menu -->
<div id="fa-user-menu" class="fa-user-menu-{% CONNECTION_STATUS %}">
            <a href="{% LOGIN_LOGOUT_URL %}" class="fa-user-menu-login-logout">
              <i class="fa fa-{% LOGIN_LOGOUT_ICON %}"></i> {% L_LOGIN_LOGOUT %}</a>
              <a href="/register" class="fa-user-menu-register">
              <i class="fa fa-user-plus"></i> Cadastre-se
            </a>
        </div>
         
<script>
(function($) {
  var fa = {
      CONNECTION_STATUS: _userdata.session_logged_in ? 'online' : 'offline',
      L_FRIENDS: 'Amigos',
      L_LOGIN_LOGOUT: _userdata.session_logged_in ? 'Sair' : 'Entrar',
      L_NOTIFICATIONS: 'Notificações',
      L_POSTS: 'Posts',
      L_PRIVMSG: 'MPs',
      L_PROFILE: 'Meu perfil',     
      L_REPUTATION: 'Reputação',
      L_USER_ID: 'ID',
      L_USER_POSTS: 'Meu conteúdo',
      L_USER_WATCH_POSTS: 'Conteúdo que sigo',
      L_WELCOME: 'Bem-vindo',
      LOGIN_LOGOUT_ICON: _userdata.session_logged_in ? 'sign-out' : 'sign-in',
      LOGIN_LOGOUT_URL: _userdata.session_logged_in ? '/login?logout' : '/login',     
      USER_AVATAR: _userdata.avatar,
      USER_ID: _userdata.user_id,
      USER_FRIENDS_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id + 'friends' : '/login',
      USER_POSTS: _userdata.user_posts,
      USER_PRIVMSG: _userdata.user_nb_privmsg,
      USER_PROFILE_URL: _userdata.session_logged_in ? '/u' + _userdata.user_id : '/login',
      USER_REPUTATION: _userdata.point_reputation,
      USERNAME: _userdata.username,
  };
 
  var $menu = $('#fa-user-menu');
  var html = $menu.prop('outerHTML');
 
  $.each(fa, function(key, value) {
      html = html.replace(new RegExp('\\{%\\s' + key + '\\s%\\}', 'g'), value);
  });
 
  $menu.prop('outerHTML', html);
}(jQuery));
</script>   
<!-- FA.END fa_user_menu -->
  <div class="wrapper clearfix">
                <div id="logo">
                  <a href="{U_INDEX}" id="pun-logo"><img src="http://i.imgur.com/GixUGSE.png" alt="{L_INDEX}" /></a>
                </div>
                     
        </div></div>
                              <div class="wrapper-head">
    <div id="panel-top">
        <p style="text-align: center; color: #f1f1f1;"> Bem-vindo(a) ao Fórum do Brasil PlayUltimate - RPG, registre-se para ter total acesso.</p>
      <form action="/search" method="post" style="float: right;margin: -25px 15px 0px;">
        <fieldset id="search" style="background: none;">
                          <input name="search_keywords" type="text" id="main_search" name="search_term" class="" size="17" tabindex="100" placeholder="Buscar..." type="text" class="textbox" style="padding-left: 10px;border-radius: 10px;border-color: #23313e;">
            <!--<input value="" type="submit" class="button" style="font: normal normal normal 14px/1 FontAwesome;">-->
            <input type="hidden" name="action" value="do_search">
            <input type="hidden" name="postthread" value="1">
        </fieldset>
      </form>
     
  </div>
</div>
                 
                  <div class="wrapper2">
                <div id="nav_wrap" class="clearfix">

                    </div>
      </div>         
   
                 
                                                  <!-- ::: NAVIGATION BREADCRUMBS ::: -->
                                              <div id="secondary_navigation" class="clearfix">
                 
                       
                                       
                    <ul id="secondary_links" class="ipsList_inline right">
                   
                   
                    </ul>
                </div> 
                                             
                                             
                                             
                                             
                                             
                                          <!-- END switch_user_logged_out -->
  <a id="top" name="top" accesskey="t"></a>

  <div class="minwidth_IE">
      <div class="layout_IE">
        <div class="container_IE">
            <div class="pun">
              <div id="pun-intro" class="clearfix">
                  <a href="{U_INDEX}" id="pun-logo"><img src="http://i.imgur.com/EljhHzF.png" alt="{L_INDEX}" /></a>

                  <!-- BEGIN switch_h1 -->
                  <div id="pun-title">{switch_h1.MAIN_SITENAME}</div>
                  <!-- END switch_h1 -->

                  <!-- BEGIN switch_desc -->
                  <p id="pun-desc">{switch_desc.SITE_DESCRIPTION}</p>
                  <!-- END switch_desc -->
              </div>
              <div id="pun-head">
                  <div id="pun-navlinks">
                    <ul class="clearfix">
                        <li>{GENERATED_NAV_BAR}</li>
                    </ul>
                  </div>
              </div>

              <!-- 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="{ID_LEFT}">
                                    <!-- BEGIN giefmod_index1 -->
                                    {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                    <!-- END giefmod_index1 -->
                                </div>
                                <div id="main">
                                    <div id="main-content">

<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
             
<!-- #region sign_in_popup -->
<div id="document_modal" class="modal" style="display:none; width: 100%; height: 100%; 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; position: absolute; top: 9%; left: 27%; z-index: 10001" class="popupWrapper">
  <div id="sign_in_popup_inner" class="popupInner" style="width: 600px; max-height: 641px;">
      <div style="" id="inline_login_form">
        <form id="login" method="post" action="/login.forum">
            <h3>Entrar</h3>
            <!-- BEGIN switch_fb_connect -->
            <div class="ipsBox_notice">
              <ul class="ipsList_inline">
                  <li>
                    <a class="ipsButton_secondary" href="/facebook_connect.forum" v="2" scope="{switch_user_login_form_header.switch_fb_connect.L_FB_PERMISSIONS}">
                        <img alt="Facebook" src="https://i69.servimg.com/u/f69/16/62/61/50/facebo10.png"> &nbsp; Use Facebook
                    </a>
                  </li>
              </ul>
            </div>
            <!-- END switch_fb_connect -->
            <br>
            <div class="ipsForm ipsForm_horizontal">
              <fieldset>
                  <ul>
                    <li class="ipsField">
                        <div class="ipsField_content">
                          Precisa de uma conta? <a title="Registre-se agora!" href="/register">Registre-se agora!</a>
                        </div>
                    </li>
                    <li class="ipsField ipsField_primary">
                        <label class="ipsField_title" for="username">Usuário ou E-mail:</label>
                        <div class="ipsField_content">
                          <input type="text" tabindex="0" size="30" name="username" class="input_text" id="ips_username">
                        </div>
                    </li>
                    <li class="ipsField ipsField_primary">
                        <label class="ipsField_title" for="password">Senha</label>
                        <div class="ipsField_content">
                          <input type="password" tabindex="0" size="30" name="password" class="input_text" id="ips_password"><br>
                          <a title="Retrieve password" href="/profile?mode=sendpassword">Esqueci minha senha</a>
                        </div>
                    </li>
                    <li class="ipsField ipsField_checkbox">
                        <input type="checkbox" tabindex="0" class="input_check" value="1" name="autologin" checked="checked" id="autologin">
                        <div class="ipsField_content">
                          <label for="autologin">
                              <strong>Lembrar dados</strong><br>
                              <span class="desc lighter">Não recomendado para computadores públicos</span>
                          </label>
                        </div>
                    </li>
                    <li class="ipsPad_top ipsForm_center desc ipsType_smaller">
                        <a href="{FORUMURLINK}" rel="nofollow">Privacy Policy</a>
                    </li>
                  </ul>
              </fieldset>
              <div class="ipsForm_submit ipsForm_center">
                  <!-- <input type="submit" tabindex="0" value="Entrar" class="ipsButton"> -->
                  <input type="submit" tabindex="0" class="login-submit ipsButton" name="login" value="Entrar"/>
                  <input name="redirect" type="hidden" value="" /><br />
              </div>
            </div>
        </form>
      </div>
  </div>
  <div id="sign_in_popup_close" class="popupClose clickable">
      <img alt="x" src="https://i69.servimg.com/u/f69/16/62/61/50/close_10.png" onclick="sign_in_popup();">
  </div>
</div>
<script type="text/javascript">
  //<![CDATA[
  $(document).ready(function() {
      $('#user_navigation #sign_in').attr('href', '#').attr('onclick', 'sign_in_popup()');
      /*
      $('#user_navigation #sign_in').click(function() {
        sign_in_popup();
      });
      */
  });
  function sign_in_popup() {
      var x = document.getElementById('sign_in_popup_popup');
      if (x.style.display == 'none') {
        jQuery(x).add('#document_modal').fadeIn('slow');
        var r = x.getElementsByTagName('form')[0].redirect;
        r.value = window.location.href;
      } else {
        jQuery(x).add('#document_modal').fadeOut('slow');
      }
  }
  jQuery(function(){if(document.getElementById('logout')) document.getElementById('sign_in_popup_popup').style.display = 'none'; });
  //]]>
</script>
<style type="text/css">
  <!--
  .popupWrapper {background-color: rgba(70, 70, 70, 0.6);border-radius: 4px 4px 4px 4px;box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);padding: 4px;}
  .popupInner {background: none repeat scroll 0 0 #FFFFFF;box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);overflow-x: hidden;overflow-y: auto;width: 500px;}
  .popupInner h3 {background-color: #2C5687;background: url("http://www.autoitbrasil.com/public/style_images/master/maintitle.png") repeat-x scroll center top #2C5687;border-color: #316897;border-style: solid;border-width: 1px 1px 0;box-shadow: 0 1px 0 #528CBC inset;color: #FFFFFF;font-size: 16px;font-weight: 300;padding: 8px 10px 9px;text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);}
  .ipsBox_notice {line-height: 1.6;margin-bottom: 10px;padding: 10px;}
  .ipsBox_notice, .ipsBox_highlight {background: none repeat scroll 0 0 #F4FCFF;border-bottom: 1px solid #CAE9F5;}
  .ipsList_inline > li:last-child {margin-right: 0;}
  .ipsList_inline > li:first-child {margin-left: 0;}
  .ipsList_inline > li {display: inline-block;}
  .ipsForm_horizontal .ipsField {margin-bottom: 15px;}
  .ipsForm_horizontal .ipsField_content, .ipsForm_horizontal .ipsField_submit {margin-left: 200px;}
  .ipsForm_horizontal .ipsField_title {float: left;line-height: 1.8;padding-right: 15px;text-align: right;width: 185px;}
  .ipsField .ipsField_title {font-size: 15px;font-weight: bold;}
  .ipsField_primary input {font-size: 18px;}
  .input_text, .ipsTagBox_wrapper {background: none repeat scroll 0 0 #FFFFFF;border-color: #848484 #C1C1C1 #E1E1E1;border-radius: 2px 2px 2px 2px;border-style: solid;border-width: 1px;padding: 4px;}
  .input_text:focus {border-color: #4E4E4E #7C7C7C #A3A3A3;box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}
  input.inactive, select.inactive, textarea.inactive {color: #C4C4C4;}
  .ipsForm_horizontal .ipsField_checkbox {margin: 0 0 5px 200px;}
  .ipsForm .ipsField_checkbox input {float: left;margin-top: 3px;}
  .ipsForm .ipsField_checkbox .ipsField_content {margin-left: 25px;}
  .desc.lighter, .desc.lighter.blend_links a {color: #A4A4A4;}
  .ipsForm_center {text-align: center;}
  .desc, .desc.blend_links a, p.posted_info {color: #777777;font-size: 12px;}
  .ipsPad_top {padding-top: 9px;}
  .ipsType_smaller, .ipsType_smaller a {font-size: 11px !important;}
  .ipsForm_submit {background-color: #CCCCCC;background: -moz-linear-gradient(center top , #E4E4E4 0%, #CCCCCC 100%) repeat-x scroll 0 0 transparent !important;border-top: 1px solid #CCCCCC;margin-top: 25px;padding: 5px 10px;}
  .popupClose {position: absolute;right: 16px;top: 12px;}
  .clickable {cursor: pointer;}
  .topic_buttons li.important a, .topic_buttons li.important span, .ipsButton .important, .topic_buttons li a, .topic_buttons li span, .ipsButton{
      -moz-border-bottom-colors: none;-moz-border-left-colors: none;-moz-border-right-colors: none;-moz-border-top-colors: none;background: url("http://www.autoitbrasil.com/public/style_images/master/topic_button.png") repeat-x scroll center top #212121;
      border-color: #212121;border-image: none;border-radius: 3px 3px 3px 3px;border-style: solid;border-width: 1px 1px 0;box-shadow: 0 1px 0 0 #5C5C5C inset, 0 2px 3px rgba(0, 0, 0, 0.2);color: #FFFFFF;cursor: pointer;display: inline-block;
      font: 300 12px/30px Helvetica,Arial,sans-serif;height: 30px;min-width: 125px;padding: 0 10px;text-align: center;text-shadow: 0 -1px 0 #191919;
  }
  .ipsButton_secondary {
      background-color: #DBDBDB;background: -moz-linear-gradient(center top , #F6F6F6 0%, #E5E5E5 100%) repeat-x scroll 0 0 transparent !important;border: 1px solid #DBDBDB;border-radius: 3px 3px 3px 3px;
      box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 0 rgba(0, 0, 0, 0.3);color: #616161;display: inline-block;font-size: 12px;height: 22px;line-height: 22px;padding: 0 10px;transition: all 0.2s ease-in-out 0s;white-space: nowrap;
  }
  -->
</style>
<!-- #endregion sign_in_popup -->
           
                                <style>
                                 
@charset 'UTF-8';
#cssmenu ul,
#cssmenu li,
#cssmenu span,
#cssmenu a {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenu {
color: #878787;
display: block;
height: 37px;
line-height: 37px;
outline: none;
padding: 0 15px;
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu a {
display: inline-block;
padding: 0 28px;
color: #878787;
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
line-height: 52px;
-webkit-box-shadow: inset rgba(0,0,0,0.05) 0 0 0 1px;
background: #efefef;
box-shadow: inset rgba(0,0,0,0.05) 0 0 0 1px;
color: #878787;
display: block;
height: 37px;
line-height: 37px;
outline: none;
padding: 0 15px;
}

#cssmenu ul {
  list-style: none;
  box-shadow: inset 0 1px 0 whitesmoke;
  -moz-box-shadow: inset 0 1px 0 whitesmoke;
  -webkit-box-shadow: inset 0 1px 0 whitesmoke;
}
#cssmenu > ul {
  float: left;
}
#cssmenu > ul > li {
  float: left;
}

#cssmenu > ul > li.active a,
#cssmenu > ul > li:hover > a {
background-color: #51aada;
}
#cssmenu .has-sub {
  z-index: 1;
}
#cssmenu .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub ul {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: none;
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
}
#cssmenu .has-sub ul li a {
background: #51aada;
border-bottom: 1px solid #51aada;
box-shadow: inset 0 1px 0 #51aada;
-moz-box-shadow: inset 0 1px 0 #51aada;
-webkit-box-shadow: inset 0 1px 0 #51aada;
color: white;
display: block;
line-height: 326%;
}
#cssmenu .has-sub ul li:hover a {
background-color: #0d6ea3;
}
#cssmenu .has-sub .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}
#cssmenu .has-sub .has-sub ul li a {
  background: #0d6ea3;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
#cssmenu .has-sub .has-sub ul li a:hover {
  background: #0d6ea3;
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
}
                                  .dropdown-content {
    display: none!important;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 153px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    top: 40px!important;
    z-index: 999;
    text-shadow: none!important;
}
div#header li a {font-size:10px!important;}
.dropdown-content a {
    color: #666!important;
    padding: 0px 16px!important;
    text-decoration: none;
        display:inline-block!important;
font-size:8px!important;
margin-left: -20px;
        border-bottom:1px solid #ddd!important;
    float: none!important;
}
#myDropDown {margin-left:-386px;width:103%;}
.show {
    display: block!important;
}
</style>
while

while
Hiper Membro

Membro desde : 24/04/2016
Mensagens : 3263
Pontos : 4761

http://www.ajuda.forumeiros.com https://www.facebook.com/profile.php?id=100012157981279

Ir para o topo Ir para baixo

Tópico resolvido Re: Efeito hover no Menu

Mensagem por iScroll 15.03.17 12:26

Resultou mas ficou assim: https://imgur.com/a/dJDWs

Eu gostaria que ele ficasse tipo por cima do banner e grande tipo o dessa imagem mesmo: https://i.imgur.com/uP4UFFT.png
iScroll

iScroll
Super Membro

Membro desde : 08/03/2015
Mensagens : 1701
Pontos : 2311

http://ultimatelife.forumeiros.com

Ir para o topo Ir para baixo

Tópico resolvido Re: Efeito hover no Menu

Mensagem por while 16.03.17 17:13

Menu - Efeito hover no Menu Symbol10 Questão marcada como Resolvida ou o Autor solicitou que ela fosse arquivada.

Tópico marcado como Resolvido e movido para "Questões resolvidas".
while

while
Hiper Membro

Membro desde : 24/04/2016
Mensagens : 3263
Pontos : 4761

http://www.ajuda.forumeiros.com https://www.facebook.com/profile.php?id=100012157981279

Ir para o topo Ir para baixo

Ver o tópico anterior Ver o tópico seguinte Ir para o topo

- Tópicos semelhantes

Permissões neste sub-fórum
Não podes responder a tópicos