Menu overall header

2 participantes

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

  • 0

Tópico resolvido Menu overall header

Mensagem por GustavoDM11 23.06.19 17:13

Detalhes da questão


Endereço do fórum: http://killingracingcrew.forumbrasil.net/
Versão do fórum: PunBB

Descrição


Boa Tarde, Eu Gostaria de saber se tem como vcs tirarem essa parte que fala sobre best Web: segue a imagem abaixo:
https://i.servimg.com/u/f70/19/64/11/14/img_2010.jpg

aqui esta meu overall header:
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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
   jQuery().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 -->
         $(window).load(function() {            
            Ticker.start({
               height : {switch_ticker.HEIGHT},
               spacing : {switch_ticker.SPACING},
               speed : {switch_ticker.SPEED},
               direction : '{switch_ticker.DIRECTION}',
               pause : {switch_ticker.STOP_TIME}
            });
         });
      <!-- END switch_ticker -->
   });

   <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>

<body>
   <!-- BEGIN hitskin_preview -->
   <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
         <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
         </p>
      </div>
   </div>
   <!-- END hitskin_preview -->

   <!-- BEGIN switch_login_popup -->
   <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
   <span class="logo"><h1>BestWeb by While</h1></span>
   <div class="header-left">
      <div class="ajuda">
         <img src="https://i.servimg.com/u/f86/19/47/50/35/1ylr9g10.png" />
      </div>       
   </div>
<header class="header">
   <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a> 
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>             
   </ul>
   <div class="userbar">
       
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
<div id="logo" class="sub-header"></div>
   <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">
                  

                  <!-- 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="{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">
                                    
<!-- BEGIN html_validation -->
                                    </div>
                                 </div>
                              </div>
                           </div>
                        </div>
                     </div>
                  </div>
               </div>
            </div>
         </div>
      </div>
   </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 80%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
    background: #393439;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}

.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: #424142;
    z-index: -1;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    background: url('https://i.imgur.com/YZKzlPi.png');
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 0 0 0 auto;
    width: 80%;
    float: right;
    padding: 0px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 23.06.19 23:03

Olá,

Isso é uma imagem Clique aqui, para substitui-la ou retirá-la, procure o código abaixo em sua Folha de estilo CSS, ou somente adicione no fim.

Código:
.sub-header {
    background: url(URL - DA IMAGEM);
}

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 24.06.19 11:24

Não resultou, aquelas imagens estão localizadas no meu overall Header, Eu Gostaria que tirasse as duas da Best Web!
Desde já agradeço aguardo....
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 24.06.19 11:35

Olá,

Substitua o seu template pelo código abaixo

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {           
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"><h1></h1></span>
  <div class="header-left">
      <div class="ajuda">
        <img src="https://i.servimg.com/u/f86/19/47/50/35/1ylr9g10.png" />
      </div>     
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>           
  </ul>
  <div class="userbar">
     
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
<div id="logo" class="sub-header"></div>
  <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">
                 
 
                  <!-- 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="{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">
                                   
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 80%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
    background: #393439;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: #424142;
    z-index: -1;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 0 0 0 auto;
    width: 80%;
    float: right;
    padding: 0px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 24.06.19 21:42

Removeu só uma aquela que está do lado com o fundo Cinza escuro e aquele pássaro quero que remova também! Segue o print abaixo:

https://i.servimg.com/u/f70/19/64/11/14/_2019010.jpg

Tudo está localizado no Overall!
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 24.06.19 21:50

Olá,

Substitua por esse

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {         
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"><h1></h1></span>
  <div class="header-left">
      <div class="ajuda">
        <img src="https://i.servimg.com/u/f86/19/47/50/35/1ylr9g10.png" />
      </div>   
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>         
  </ul>
  <div class="userbar">
   
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
<div id="logo" class="sub-header"></div>
  <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">
               
 
                  <!-- 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="{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">
                                 
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 80%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
    background: #393439;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: #424142;
    z-index: -1;
display: none;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 0 0 0 auto;
    width: 80%;
    float: right;
    padding: 0px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 25.06.19 0:10

Tirou,mais ficou bugado do mesmo jeito,na area onde ta as opçoes INICIO, etc... ainda esta bugado e nao saiu tudo meu forum ta todo pro lado ainda, queira dar uma olhada fazendo favor!

Desde ja agradeço!
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 25.06.19 0:25

Olá,

Substitua por esse

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {       
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"><h1></h1></span>
  <div class="header-left">
      <div class="ajuda">
        <img src="https://i.servimg.com/u/f86/19/47/50/35/1ylr9g10.png" />
      </div> 
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>       
  </ul>
  <div class="userbar">
 
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
<div id="logo" class="sub-header"></div>
  <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">
             
 
                  <!-- 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="{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">
                               
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 100%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
    background: #393439;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: #424142;
    z-index: -1;
display: none;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: auto;
    width: 80%;
    padding: 10px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 25.06.19 0:54

Não resultou,Bugou mais ainda, queira dar uma olhada em meu forum pra ver como ficou!

Aguardo respostas
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 25.06.19 14:05

Olá,

Substitua o seu template por esse

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {           
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"><h1>BestWeb by While</h1></span>
  <div class="header-left">
      <div class="ajuda">
       
      </div>     
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>           
  </ul>
  <div class="userbar">
     
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
<div id="logo" class="sub-header"></div>
  <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">
                 
 
                  <!-- 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="{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">
                                   
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 80%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
    background: #393439;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: #424142;
    z-index: -1;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 0 0 0 auto;
    width: 80%;
    float: right;
    padding: 0px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 25.06.19 19:14

Voltou denovo aquela parte escura do lado esquerdo, gostaria que removesse toda aquela perte de cinza escuro!

Desde ja agradeço, aguardo respostas...
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 25.06.19 19:20

Olá,

Substitua o seu template por esse

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {         
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"></span>
  <div class="header-left">
      <div class="ajuda">
     
      </div>   
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>         
  </ul>
  <div class="userbar">
   
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
<div id="logo" class="sub-header"></div>
  <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">
               
 
                  <!-- 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="{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">
                                 
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 80%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
    background: #393439;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: transparent!important;
    z-index: -1;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 0 0 0 auto;
    width: 80%;
    float: right;
    padding: 0px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 25.06.19 19:43

Removeu uma parte mas olha como meu forum esta pro lado ainda, gostario que corrigisse, e la em cima perto do Menu, INICIAR , MEMBRO, etc... Tem uma parte escura poderia remover tambem!

Aguardo respostas...
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 25.06.19 19:52

Olá,

Substitua o seu template por esse

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {       
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"></span>
  <div class="header-left">
      <div class="ajuda">
   
      </div> 
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>       
  </ul>
  <div class="userbar">
 
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
  <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">
             
 
                  <!-- 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="{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">
                               
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 100%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
    background: #393439;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
    line-height: 25px;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: transparent!important;
    z-index: -1;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 44px;
    width: 80%;
    float: right;
    padding: 0px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

E se o problema persistir, teria como retirar o fórum da manutenção?

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 25.06.19 20:08

Pronto amigo, retirei da manutenção, queira dar uma olhada, bugou denovo o menu e ainda continua uma parte em cinza escuro!

Aguardo respostas
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 25.06.19 20:14

Olá,

Substitua o seu template por esse

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {     
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"></span>
  <div class="header-left">
      <div class="ajuda">
 
      </div>
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>     
  </ul>
  <div class="userbar">
 
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
  <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">
           
 
                  <!-- 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="{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">
                             
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 100%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
        background: transparent!important;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
    line-height: 25px;
}
.header ul {
    width: 80%!important;
}
#page-body {
    margin: 0 auto!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: transparent!important;
    z-index: -1;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 44px;
    width: 80%;
    float: none;
    padding: 10px!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 25.06.19 20:21

A parte cinza acabou, ta Certinho, mas o forum foi todo pro lado Esquerdo poderia centraliza-lo por favor!

Desde já agradeço
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 25.06.19 20:30

Olá,

Substitua por esse

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 rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="http://l-lin.github.io/font-awesome-animation/dist/font-awesome-animation.min.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[
  jQuery().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 -->
        $(window).load(function() {   
            Ticker.start({
              height : {switch_ticker.HEIGHT},
              spacing : {switch_ticker.SPACING},
              speed : {switch_ticker.SPEED},
              direction : '{switch_ticker.DIRECTION}',
              pause : {switch_ticker.STOP_TIME}
            });
        });
      <!-- END switch_ticker -->
  });
 
  <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = 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 -->
</head>
 
<body>
  <!-- BEGIN hitskin_preview -->
  <div id="hitskin_preview" style="display: block;">
      <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
        <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
        </p>
      </div>
  </div>
  <!-- END hitskin_preview -->
 
  <!-- BEGIN switch_login_popup -->
  <div id="login_popup" class="module main" style="z-index: 10000 !important;">
      <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 -->
  <span class="logo"></span>
  <div class="header-left">
      <div class="ajuda">
 
      </div>
  </div>
<header class="header">
  <ul class="navbar">
          <a href="/forum"><li><i class="fa fa-home fa-fw"></i> Início</li></a>
  <a href="/memberlist"><li><i class="fa fa-users fa-fw"></i> Membros</li></a>
    <!-- BEGIN switch_user_logged_out -->
            <a href="/login" title="Entrar"><li><i class="fa fa-share"></i> Entrar</li>  </a><a href="/register" title="Cadastre-se"><li><i class="fa fa-pencil-square-o"></i> Registrar-se</li></a>
<!-- END switch_user_logged_out -->
                <!-- BEGIN switch_user_logged_in -->
        <a href="/profile?mode=editprofile"><li><i class="fa fa-user fa-fw"></i> Perfil</li></a>
          <a href="./privmsg?folder=inbox"><li><i class="fa fa-envelope"></i> Mensagens Privadas</li></a>
      <a href="/login?logout"><li><i class="fa fa-reply"></i>Sair</li></a>   
  </ul>
  <div class="userbar">
 
<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;" ><img src="https://i.imgur.com/w2M0KsY.png" alt="" /></a><div id="myDropDown" class="dropdown-content">
            <a href="/profile?mode=editprofile">Informações</a>
            <a href="/profile?mode=editprofile&page_profil=preferences">Preferencias</a>
            <a href="/profile?mode=editprofile&page_profil=signature">Assinatura</a>
            <a href="/profile?mode=editprofile&page_profil=avatars">Avatar</a>
            <a href="/profile?mode=editprofile&page_profil=friendsfoes">Amigos e ignorados</a>
            <a href="/profile?mode=editprofile&page_profil=notifications">Notificações</a>
            </div>  </li> </ul></div>
<span style="font-size: 1.2em;"  id="avatar"></span>
<script type="text/javascript">
//<![CDATA[
    jQuery(function () {
        jQuery('#avatar').html('<center>' + _userdata["avatar"] + '</center>');
    });
//]]>
</script>
  <!-- END switch_user_logged_in -->
    </div>
  </header>
  <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">
         
 
                  <!-- 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="{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">
                           
<!-- BEGIN html_validation -->
                                    </div>
                                </div>
                              </div>
                          </div>
                        </div>
                    </div>
                  </div>
              </div>
            </div>
        </div>
      </div>
  </div>
</body>
</html>
<!-- END html_validation -->
<style>
  .navbar, .navbar ul, .userbar{
  list-style:none;
}
.header {
    border-bottom: 3px solid #3091C1;
    height: 64px;
    line-height: 64px;
    background: #DFE0DF;
    width: 100%;
    margin: 0 0 0 auto;
}
.logo {
    float: left;
        background: transparent!important;
    width: 20%;
    height: 67px;
    color: white;
    line-height: 64px;
    text-align: center;
}
.navbar li {
  display:inline-block;
  padding:10px;
  color:#848484;
}
 
.navbar li > a {
  padding:10px;
  color:#848484;
  height: 64px;
  display: block;
}
.logo {float: left;}
.navbar{float: left;
  -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    -webkit-transition: color .2s ease;
    background-color: transparent;
    color: #848484;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 13px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin-left: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
  }
.userbar{float: right;}
.navbar li:hover {
    background: #3091C1;
    padding:10px;
  color:#fff!important;
    line-height: 25px;
}
.header ul {
    width: 80%!important;
}
#page-body {
    margin: 0 auto!important;
}
.header-left {
    width: 20%;
    float: left;
    height: 100%;
    position: fixed;
    background: transparent!important;
    z-index: -1;
}
.ajuda img {
    width: 100%;
    margin: 35px 0;
}
 #avatar > center > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #B3B3B3;
    margin: 5px 10px;
    padding: 2px;
    background: white;
}
.sub-header {
    float: right;
    width: 80%;
    height: 132px;
}
.pun {
    background: #F2F2F2;
    line-height: 130%;
    margin: 0 auto;
    width: auto;
    float: none;
    padding: 10px!important;
    align-content: center!important;
}
.main .main-head {
    background-color: #424142;
    color: #fff;
    padding: 15px;
    text-shadow: none;
    margin: 15px -1px 0;
}
  #pun-intro {display:none;}
        div#pun-head {display:none;}
  ::-webkit-scrollbar-track {
    background: #101010!important;
}
::-webkit-scrollbar-thumb {
    border-bottom: 1px solid #101010!important;
    border-top: 1px solid #101010!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb {
    background-color: #1b9bff!important;
}
::-webkit-scrollbar {
    height: 17px!important;
    width: 17px!important;
}
#avatar > center > img {float:right!important;}
          #drop_link img {
    margin-top: 49px!important;
    margin-left:-30px;
    position:absolute;
}
.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;
}
  .dropdown-content:before {
                    content: url("https://i.servimg.com/u/f18/18/21/41/30/arrow11.png");
    position: absolute;
    right: 10%;
    top: -10px;
        }
.show {
    display: block!important;
}
#myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
        #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
</style>

Até mais!
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Menu overall header

Mensagem por GustavoDM11 25.06.19 20:35

Perfeito, pode fechar e marcar como resolvido, obrigado pela Ajuda desculpa o incomodo! Muito feliz Boa Tarde
GustavoDM11

GustavoDM11
****

Membro desde : 14/02/2017
Mensagens : 380
Pontos : 534

https://ajuda.forumeiros.com/register?agreed=true&step=2

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Menu overall header

Mensagem por Roevs 25.06.19 20:36

Questão resolvida

Esta questão foi dada como resolvida pelo seu autor, e por esse motivo será marcada como resolvida e movida para o arquivo de questões resolvidas desta área.
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

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