Ícones não aparecem no fórum

2 participantes

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

Tópico resolvido Ícones não aparecem no fórum

Mensagem por Flames 27.07.17 0:01

Detalhes da questão


Endereço do fórum: http://seriesbra.forumeiros.com/
Versão do fórum: PunBB

Descrição


Olá,

No meu fórum, os ícones das categorias/fóruns e tópicos não estão aparecendo ao lado do título. Creio que seja algum código errado no template, já que ele é editado. Poderiam ajudar? Veja:

Ícones não aparecem no fórum Pg1w1F1EQ3GYm5aG-VNUBQ

Ícones não aparecem no fórum FlgFZMTLSIWw2dnZvH0EZA

Gostaria que os ícones aparecessem. Exemplo:
Ícones não aparecem no fórum BlTiOQq4SMGrhatJC-u52w


Última edição por Flames em 27.07.17 2:48, editado 1 vez(es)
Flames

Flames
**

Membro desde : 05/10/2011
Mensagens : 50
Pontos : 78

http://jornamice.com.br.tc

Ir para o topo Ir para baixo

Tópico resolvido Re: Ícones não aparecem no fórum

Mensagem por Harleen 27.07.17 0:18

Oi de novo Feliz

há um código em sua folha CSS que está ocultando os ícone, procure e remova
Código:
.pun tbody.statused span.status {
    display: none;
    position: absolute;
}

Resultado http://prntscr.com/g0qq9y

Depois altere o ícone.
Harleen

Harleen
Super Membro

Membro desde : 09/07/2012
Mensagens : 1779
Pontos : 2373

https://antenadogames.forumeiros.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Ícones não aparecem no fórum

Mensagem por Flames 27.07.17 1:09

Resultou, mas agora teve um problema de posicionamento, como eu arrumo? O ícone que eu vou por é grande, desse tamanho do atual mesmo.

Ícones não aparecem no fórum CIt0E63pTaK5IzFCMf8AjA


Meu index_box, caso precisar:

Código:
  <div class="pun-crumbs">
          <p class="crumbs"><a href="{U_INDEX}">{L_INDEX}</a><strong>{NAV_CAT_DESC}</strong></p>
        </div>
        <div class="main">
        <!-- BEGIN catrow -->
          <!-- BEGIN tablehead -->
              <div class="main-head">
                <div class="page-title">{catrow.tablehead.L_FORUM}</div>
              </div>
              <div class="main-content">
                <table cellspacing="0" class="table">
                    <tbody class="statused">
          <!-- END tablehead -->
       
          <!-- BEGIN forumrow -->
                      <tr>
                                                        <td class="tc_icon">
                            <span class="status">
                                <img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
                            </span>
                                                        </td>
                          <td class="tc_forum" style="padding-right: {catrow.forumrow.INC_LEVEL_RIGHT};">
                                                                <h{catrow.forumrow.LEVEL} class="hierarchy"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumtitle">{catrow.forumrow.FORUM_NAME}</a></h{catrow.forumrow.LEVEL}>
                            <br />
                            {catrow.forumrow.FORUM_DESC}
                            <!-- BEGIN switch_moderators_links -->
                            <br />
                            {catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
                            <!-- END switch_moderators_links -->
                            {catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
                            <strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}
                          </td>
                                                  <td class="tc3"><strong>{catrow.forumrow.TOPICS}</strong> tópicos<br /><strong>{catrow.forumrow.POSTS}</strong> respostas</td>
                          <td class="tcr">
                                                <!-- BEGIN ads -->
                    <span class="AD_LastPA">
                                <span class="lastpost-avatar"><img src="{catrow.forumrow.ads.IMG}" alt="{catrow.forumrow.ads.TITLE}" /></span>
                                <span class="AD_LastInfos">
                                    <b><a href="{catrow.forumrow.ads.LINK}">{catrow.forumrow.ads.TITLE}</a></b><br />
                                    {catrow.forumrow.ads.DATE}<br />
                                    {catrow.forumrow.ads.LOCATION}
                                </span>
                    </span>
                            <!-- END ads -->
                            <!-- BEGIN avatar -->
                            <span class="lastpost-avatar">{catrow.forumrow.avatar.LAST_POST_AVATAR}</span>
                            <!-- END avatar -->
                            <span>
                            <!-- BEGIN switch_topic_title -->
                            <a href="{catrow.forumrow.U_LATEST_TOPIC}" title="{catrow.forumrow.LATEST_TOPIC_TITLE}">{catrow.forumrow.LATEST_TOPIC_NAME}</a><br />
                            <!-- END switch_topic_title -->
                            {catrow.forumrow.USER_LAST_POST}
                            </span>
                          </td>
                      </tr>
          <!-- END forumrow -->
       
          <!-- BEGIN tablefoot -->
                    </tbody>
                </table>
              </div>
          <!-- END tablefoot -->
        <!-- END catrow -->
        </div>
       
        <!-- BEGIN switch_on_index -->
        <div class="main-box clearfix">
          <ul>
              <li><a href="{U_TODAY_ACTIVE}">{L_TODAY_ACTIVE}</a></li>
              <li><a href="{U_TODAY_POSTERS}">{L_TODAY_POSTERS}</a></li>
              <li><a href="{U_OVERALL_POSTERS}">{L_OVERALL_POSTERS}</a></li>
          </ul>
          <!-- BEGIN switch_delete_cookies -->
          <p class="right">
              <a href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a>
          </p>
          <!-- END switch_delete_cookies -->
        </div>
        <!-- END switch_on_index -->
Flames

Flames
**

Membro desde : 05/10/2011
Mensagens : 50
Pontos : 78

http://jornamice.com.br.tc

Ir para o topo Ir para baixo

Tópico resolvido Re: Ícones não aparecem no fórum

Mensagem por Harleen 27.07.17 1:23

Olá, precisarei também da sua folha CSS, assim irei resolver o problema desse tópico também
https://ajuda.forumeiros.com/t109555-avatar-nos-ultimos-assuntos#769491

Estarei aguardando...
Harleen

Harleen
Super Membro

Membro desde : 09/07/2012
Mensagens : 1779
Pontos : 2373

https://antenadogames.forumeiros.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Ícones não aparecem no fórum

Mensagem por Flames 27.07.17 1:30

Sobre o tópico https://ajuda.forumeiros.com/t109555-avatar-nos-ultimos-assuntos#769491 consegui resolver, obrigado!

Seguindo este, aqui está o CSS:

Código:
body {
background: url('http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/bg_tile.gif') repeat scroll 0% 0% #FAFAFA;
font: 11px "Segoe ui","Segoe ui",Helvetica,Arial,sans-serif;
}

html, body {
background: url('http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/bg_tile.gif') repeat scroll 0% 0% #FAFAFA;
color: #5A5A5A;
}

#pun-intro {
  display: none;
}

#pun-navlinks {
  display: none;
}

.pun .paged-foot, .pun .paged-head {
background: none;
border: none;
padding: 0;
}

#pun-about #qjump {
display: none;
}

#pun-about {
text-align: right;
font-size: 10px;
}

#pun-announcement {
border-style: 0 px solid;
border-width: 0px;
padding: 1em;
background: white;
}

.k1b4d58ea {
display: none!important;
background: none!important;
border: none!important;
}

.pun {
    margin-bottom: 10px;
    background: none repeat scroll 0% 0% #FFF;
    padding: 10px;
    line-height: 120%;
    border: 1px solid #DADADA;
    margin-top: 10px;
    width: 1178px;
    text-align: left!important;
}

.pun .main-content {
border: 1px solid #fff;
}

thead {
display: none;
}

fieldset {
-webkit-margin-start: 2px;
-webkit-margin-end: 2px;
-webkit-padding-before: 0.35em;
-webkit-padding-start: 0.75em;
-webkit-padding-end: 0.75em;
-webkit-padding-after: 0.625em;
border: 0px;
border-image: initial;
}

.main .main-foot, .paged-foot {
display: none;
}

#sc-container, .sc-width {
width: 1178px;
min-width: 960px;
margin: 0 auto;
}


/*help button*/
.pun .main-head a.exthelp, .pun .main-head a.exthelp:link, .pun .main-head a.exthelp:visited {
display:none;
}

/*logged_in - Logado!*/

#user_navigation .ipsList_inline li {
margin: 0;
}

#user_navigation.logged_in {
height: 26px;
padding: 6px 0 4px;
line-height: 25px;
}
#user_link_dd, .dropdownIndicator {
background: url(http://www.tibiaking.com/forum/public/style_images/gris/header_dropdown.png) no-repeat right;
display: inline-block;
height: 5px;
margin: 1px 0 1px 1px;
width: 9px;
}
#inbox_link, #notify_link {
height: 15px;
padding: 11px 24px 8px 12px;
position: relative;
vertical-align: middle;
width: 18px;
}
#inbox_link {
background: url(http://www.tibiaking.com/forum/public/style_images/gris/icon_inbox.png) no-repeat top;
}
#notify_link {
background: url(http://www.tibiaking.com/forum/public/style_images/gris/icon_notify.png) no-repeat top;
margin-right: 11px;
}
.ipsHasNotifications {
-moz-border-radius: 2px;
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
-webkit-border-radius: 2px;
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
background: #cf2020;
border-radius: 2px;
box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
color: #fff!important;
font-size: 9px;
height: 12px;
left: -5px;
line-height: 12px;
padding: 0 4px;
position: absolute;
text-align: center;
top: 4px;
}
#user_link {
  margin-right: 15px;
}

/*color-picker*/

.custom_theme {
    border-radius: 3px 0px 0px 3px;
    background: url('http: //www.bslrpg.com/forum/public/style_images/animehaven_v3/color_picker/color_picker.png') no-repeat scroll 50% 50% rgba(0, 0, 0, 0.3);
    cursor: pointer;
    width: 29px;
    height: 38px;
    margin-left: 1px;
    float: right;
    margin-top: 36px;
}

.custom_theme #colorpicker {
    border: 0px none !important;
    background: none repeat scroll 0% 0% transparent !important;
    text-indent: -999px !important;
    height: 36px;
    font-size: 0px;
    width: 37px;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    opacity: 0;
    display: block;
}

/*categoria*/
.main .main-head {
    background: #CD0000;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 300;
    color: #FFF;
    box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.1), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0px 1px 2px #000;
    border-bottom: 3px solid #8B1A1A;
    border-radius: 3px;
}
#main{margin-right: 10px;}

.table .tc_icon {
    padding: 10px 5px !important;
    vertical-align: middle;
    width: 30px;
}

.pun table.table td.tc3 {
    text-align: right;
    width: 15%;
}

.main .main-content {
padding: 4px;
background: none repeat scroll 0px 0px #F3F3F3;
border: 1px solid #E6E6E6;
margin-bottom: 10px;
}

.pun tbody.statused td.tcl {
  background: white;
}

.pun tbody.statused td.tcr {
  background: white;
  border-left: 0px;
}

.pun table.table td {
background-color: #FFFFFF!important;
border-color: #ddd;
border-style: solid none none none;
border-width: 1px;
line-height: 130%;
padding: .6em 0 .7em;
}

.pun .main table td.tc2, .pun .main table td.tc3 {
  border-right: none;
  border-left: none;
}

.pun fieldset, .pun img {
vertical-align: middle;
}

.main .main-head .page-title {
    font-size: 12px;
    font-weight: 400;
    color: #fff !important;
}

.left{
float:left;
}

.clear{
clear: both;
}

#sc-container{
width: 1178px;
min-width: 960px;
margin: 0 auto;
}

/*userbar*/

#sc-topbar {
background: #CD0000;
padding: 0;
text-align: right;
height: 36px;
position: relative;
z-index: 999;
width: 100%;
top: 0;
left: 0;
box-shadow: rgba(0, 0, 0, 0.5) 0px -1px 10px;
}

#sc-navigation {
display: inline;
height: 36px;
}

#community_app_menu>li {
margin: 0;
position:relative;
}

.ipsList_inline>li:first-child {
margin-left: 0;
}

.ipsList_inline>li {
display: inline-block;
margin: 0 3px;
}

#logo {
display: inline;
}

ol, ul {
list-style: none;
}

#logo a.textLogo {
color: #fff;
height: 36px;
line-height: 32px;
padding: 0 0;
font-weight: bold;
font-size: 16px;
font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
text-decoration: none;
display: block;
text-transform: uppercase;
padding-left: 6px;
padding-right: 6px;
}

#logo a:hover {
color: #C42323;
}


#community_app_menu>li.active>a {
margin-top: 0;
text-shadow: none;
border-bottom: 3px solid #C42323;
}

#community_app_menu>li>a {
color: #FFFFFF;
background: transparent;
display: block;
padding: 0px 14px 0px;
height: 33px;
line-height: 36px;
font-size: 11px;
font-weight: bold;
font-family: "Segoe ui",sans-serif;
text-transform: uppercase;
}

#user_navigation.not_logged_in {
height: 26px;
padding: 6px 0 4px;
line-height: 25px;
}

#user_navigation {
color: #FFFFFF;
font-size: 11px;
line-height: 30px;
}

#user_navigation .ipsList_inline li {
margin: 0;
}

#user_navigation a {
color: #FFFFFF;
font-weight: bold;
}

#user_navigation #register_link {
background: white;
padding: 0px 8px;
height: 30px;
}
.pun a,.pun a:visited {
color: #225985;
text-decoration: none;
}

.pun a:hover{color: #C42323;}
/*branding*/

#sc-branding {
    background: url('http://oficialseries.com/wp-content/themes/seriesbrasil/images/bg.png') repeat scroll 0% 0% / 74% auto #383838;
    border-bottom: 1px solid #343434;
    min-height: 110px;
    box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.5) inset;
}

#sc-bottombar {
    background: none repeat scroll 0% 0% #000;
    padding: 0px;
    text-align: right;
    height: 36px;
    width: 100%;
}

#sc-sec-navigation {
    background: none repeat scroll 0% 0% #FFF;
    border-bottom: 1px solid #DADADA;
    overflow: hidden;
    line-height: 37px;
    clear: both;
}

.breadcrumb {
    color: #777;
    font-size: 11px;
}

.breadcrumb li:first-child {
    margin-left: 0px;
}

#sc-sec-navigation #breadcrumb li:first-of-type a {
    margin-left: 0px;
    background: none repeat scroll 0% 0% transparent;
    padding-left: 0px;
}
#sc-sec-navigation #breadcrumb li a {
    padding-left: 12px;
    margin-left: -15px;
    outline: medium none;
    text-decoration: none;
}
#sc-sec-navigation a {
    color: #757575;
    line-height: 37px;
    height: 37px;
}
.breadcrumb a {
    color: #777;
}

#sc-sec-navigation #breadcrumb li:first-of-type a span {
    padding-left: 12px;
    border-radius: 3px 0px 0px 3px;
}

#sc-sec-navigation-icons li {
    padding: 0px 4px;
}

.ipsList_inline > li:first-child {
    margin-left: 0px;
}
.ipsList_inline > li {
    display: inline-block;
    margin: 0px 3px;
}

#sc-sec-navigation-icons li img {
    width: 16px;
    height: 16px;
}

#search {
background: rgba(0, 0, 0, 0.3);
margin: 36px 0;
padding: 5px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-moz-border-top-right-radius: 3px;
-moz-border-bottom-right-radius: 3px;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
margin: 0;
padding: 0;
}

fieldset, img {
border: 0;
}

.hide {
display: none;
}

label {
cursor: default;
}

#adv_search {
width: 16px;
height: 16px;
background: url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/advanced_search.png") no-repeat right 50%;
text-indent: -3000em;
display: none;
margin: 6px 0 4px 4px;
}

#search_wrap {
position: relative;
background: rgba(0, 0, 0, 0.40);
display: block;
padding: 0 26px 0 4px;
height: 26px;
line-height: 25px;
-moz-border-radius: 2px 2px 2px 2px;
-webkit-border-top-left-radius: 2px;
-webkit-border-top-right-radius: 2px;
-webkit-border-bottom-right-radius: 2px;
-webkit-border-bottom-left-radius: 2px;
border-radius: 2px 2px 2px 2px;
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(0,0,0,0.13);
width: 230px;
}

#main_search {
font-size: 12px;
border: 0;
padding: 0;
background: transparent;
width: 150px;
outline: 0;
color: #C42323;
font-style: italic;
line-height: 26px;
}

#search_options {
font-size: 10px;
height: 28px;
line-height: 25px;
margin: 0px -2px 3px 0;
padding: 0 6px;
display: inline-block;
float: right;
max-width: 80px;
text-overflow: ellipsis;
overflow: hidden;
text-align: right;
}

.clickable {
cursor: pointer;
}

.ipbmenu_content, .ipb_autocomplete {
font-size: 12px;
min-width: 85px;
z-index: 999;
}

#search_options_menucontent {
min-width: 100px;
white-space: nowrap;
text-align: left;
}

#search_options_menucontent li {
border-bottom: 0;
}

.ipbmenu_content li:first-child {
padding-top: 0px;
}

#search_options_menucontent input {
margin-right: 10px;
}

img, .input_check, .input_radio {
vertical-align: middle;
}

.custom_theme {
-moz-border-radius: 0px 3px 3px 0px;
-webkit-border-top-left-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
border-radius: 3px 0px 0px 3px;
background: rgba(0, 0, 0, 0.30) url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/color_picker/color_picker.png") no-repeat 50% 50%;
cursor: pointer;
width: 29px;
height: 38px;
margin-left: 1px;
float: right;
margin-top: 36px;
}

.custom_theme #colorpicker {
border: 0 !important;
background: none transparent!important;
text-indent: -999px!important;
height: 36px;
font-size: 0;
width: 37px;
padding: 0;
margin: 0;
cursor: pointer;
opacity: 0;
display: block;
}


.submit_input, .clickable {
background: #770F0F url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/search_icon.png") no-repeat 50%!important;
text-indent: -3000em!important;
padding: 0!important;
border: 0!important;
display: block!important;
width: 26px!important;
height: 26px!important;
position: absolute!important;
right: 0!important;
top: 0!important;
bottom: 0!important;
-moz-border-radius: 0 2px 2px 0!important;
-webkit-border-top-right-radius: 2px!important;
-webkit-border-bottom-right-radius: 2px!important;
border-radius: 0 2px 2px 0!important;
-webkit-box-shadow: inset 0px 1px 0 rgba(255, 255, 255, 0.2)!important;
-moz-box-shadow: inset 0px 1px 0 rgba(255, 255, 255, 0.2)!important;
box-shadow: inset 0px 1px 0 rgba(255,255,255,0.2)!important;
}


.right {
float: right;
}

/*Link*/
a {text-decoration:none;}
ul{list-style:none;}

.right {
float: right;
}



/*lastpost*/
#avatar-lastpost img {
height: 30px;
width: 30px;
padding: 1px;
border: 1px solid #D5D5D5;
background: white;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
margin-top:13px;
margin-right:11px;
}

#avatar-lastpost img:hover{
border-color: #A1A1A1;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

td.tcr span a:empty:before {
content: "Sem Post's Para Visualizar";
cursor: default;
pointer-events: none;
text-align: center;
word-wrap: break-word;
margin: 1px 0px 4px 53px;
color: #a4a4a4;
font-style: italic;
}
/*rodape*/

#pun-about {
font-size: 10px;
text-align: left;
padding: 2px 10px;
background: rgb(236, 236, 236);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
border-radius: 5px;
float: left;
}

#onlinelist {
background-color: #F3F3F3;
padding: 10px;
color: rgb(155, 155, 155);
border: 1px solid rgb(214, 214, 214);
}

#onlinechat {
display: none;
}

#sc-footer {
float: left;
margin: 10px 0px 0px 0px;
width: 100%;
background: #FFF url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/brand_1.png");
border-top: 1px solid #DADADA;
}

.sc-footer-col {
width: 13.5%;
font-size: 11px;
min-width: 125px;
display: inline-block;
vertical-align: top;
line-height: 22px;
padding: 15px 0 18px 0;
}

#sc-footer a {
color: #5A5A5A;
}

#footer_utilities {
font-size: 11px;
width: 100%;
padding: 30px 0px 39px 0px;
border-top: #DADADA solid 1px;
background: #FAFAFA url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/brand_1.png");
}

#footer_utilities .ipsList_inline>li>a {
margin-right: 0px;
padding: 4px 10px;
}

#copyright {
color: #848484;
text-align: right;
}

#backtotop:hover {
color: #fff;
opacity: 1;
}

#backtotop {
width: 24px;
height: 24px;
line-height: 20px!important;
left: 50%;
margin-left: -12px;
position: absolute;
display: inline-block;
background: #bdbdbd;
text-align: center;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-radius: 16px;
opacity: 0.4;
outline: 0;
}

/*user*/
.pun .user-ident .username {
display: block;
font-size: 1.3em;
font-weight: 400!important;
margin-top: 5px;
padding: 8px!important;
position: relative;
text-align: center;
text-decoration: none;
}

/*post*/
.post h3 {
background: #F8F8F8;
border-bottom: 1px solid #E6E6E6;
border-top: 1px solid #E6E6E6;
padding: 0 10px;
height: 36px;
line-height: 36px;
font-weight: normal;
font-size: 15px;
margin-top: -3px;
}
span.post_id {
margin-left: 4px;
}
.post_date {
padding: 0 0 10px 0;
font-size: 12px;
color: #a4a4a4;
}
.desc.blend_links a {
font: normal 12px helvetica, arial, sans-serif;
color: #777777;
}
.post_id a img.small {
max-height: 12px;
margin-left: 3px;
margin-top: -2px;
opacity: 0.5;
}
.post_online {display: inline-block;}
.pun .post .user {
margin-left: -16em;
margin-top: -0.9em;
}
.pun .post {background: white;}
.pun .postmain {
background-color: white;
border-left: 0px;
margin-left: 14em;
}
.pun .post .user {
width: 165px;
font-size: 12px;
text-align: center;
line-height: 150%;
margin-left: -160px;
margin-top: -0.6em;
}

.pun .post-entry {
font-size: 12px;
line-height: 1.6;
padding: 20px;
word-wrap: break-word;
}

.pun .user .user-ident .user-basic-info {
font-size: 11px;
color: #a4a4a4;
text-align: center;
font-weight: normal;
}

.postfoot {
border-top: 0px;
margin-left: -14em;
}

.sig-content {
clear: right;
color: #a4a4a4;
font-size: 0.9em;
border-top: 1px dashed #e4e4e4;
padding: 10px 0;
margin: 6px 0 4px;
position: relative;
}

.user-basic-info a img {
padding: 1px;
border: 1px solid #d5d5d5;
background: #fff;
max-height: 300px;
padding: 1px;
max-width: 165px;
margin-left: 10px;
}

.exthelp{display:none;}
/*botoes*/

input[type="button"], input[type="reset"], input[type="submit"] {
-moz-border-radius: 2px;
-moz-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
-webkit-border-radius: 2px;
-webkit-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
background: #353535 url(http://i57.servimg.com/u/f57/18/12/37/46/highli10.png) repeat-x top;
border: 1px solid #2b2b2b;
border-radius: 2px;
box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
color: #fff;
cursor: pointer;
font-family: helvetica,arial,sans-serif;
font-size: 13px;
font-style: normal;
font-variant: normal;
font-weight: normal;
outline: none;
padding: 4px 10px!important;
}


/*box*/
.titlebox {
background: #F9F9F9;
border: 1px solid #E9EDEE;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
padding: 10px;
overflow: hidden;
}
.titlebox dd {display: block;}
.titlebox dava {float: left;}
.ipsBox_withphoto {float: left; margin-left: 10px;}
.ipsType_pagetitle {color: #323232; display: block; font-family: Helvetica,Arial,sans-serif; font-size: 26px; font-style: normal; font-variant: normal; font-weight: 300; line-height: 1.4; outline-style: none; overflow: hidden; text-align: left; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; width: 650px;}
.ipsType_pagetitle a {font-size: 23px; z-index: 999;}
.desc.lighter.blend_links {color: #777; float: left; font-size: 11px;}
.socialetopic {float: right; position: relative;}
.titlebox dava a img {-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1); -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); background: white; border: 1px solid #D5D5D5; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); float: left; height: 50px!important; padding: 1px; width: 50px!important;}
.titlebox dava a img:hover {
border-color: #A1A1A1;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

/*quick avatar*/
#quick-avatar {
    float: left;
    padding: 11px;
}
#quick-avatar img {
margin-top: 50px;
width: 50px;
height: 50px;
padding: 1px;
border: 1px solid #D5D5D5;
background: white;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
#quick-avatar img:hover {
  border-color: #A1A1A1;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.mini_ava img {
width: 30px;
float: left;
padding: 1px;
border: 1px solid #d5d5d5;
background: #fff;
height: 30px;
}

.widgets{
background: #262626;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
font-size: 11px;
font-weight: bold;
padding: 8px;
}

#fontwidget{
color: white;
font-size: 11px;
font-weight: bold;
tahoma,helvetica,arial,sans-serif;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
margin-left:18px;
}

#pun-visit, .main-box {
display: none;
border: none;
font-size: 10px;
margin: 0 0 1em;
padding: .6em 1em;
}

/*widget*/

.module .main-head {
    border: 1px solid #CFCFCF;
    padding: 10px;
    background: none repeat scroll 0px 0px #FFF;
    font: 11px arial,sans-serif;
    color: #757575;
    padding: 9px 10px;
    background: none repeat scroll 0% 0% #ECECEC;
    text-shadow: 0px 1px 0px #FFF;
    box-shadow: 0px 1px 0px #F9F9F9 inset;
    border-bottom: 3px solid #C42323;
}

.module .main-content{background:#fff}

.module.main {
    margin: 0px;
    margin-bottom: 10px !important;
}

#ajax_loading {
    background: -moz-linear-gradient(center top , #95C715 0%, #7BA60D 100%) repeat scroll 0% 0% transparent;
    border: 1px solid #7BA60D;
    color: #FFF;
    text-align: center;
    padding: 5px 0px 8px;
    width: 8%;
    top: 0px;
    left: 46%;
    border-radius: 0px 0px 5px 5px;
    z-index: 999;
    position: fixed;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2), 0px -1px 0px rgba(255, 255, 255, 0.2) inset;
}
/*tollbar-forumeiros by bs e victor*/
#fa_toolbar{background-color:#CD0000; border-bottom:7px solid #CD0000;border-top:1px solid #333;box-shadow:0 1px black, 0 2px 1px rgba(0,0,0,.4);font-family:'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;font-style:normal}#fa_toolbar a{text-decoration:none!important}#fa_search #fa_textarea{-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2) inset;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2) inset;background-color:#8B0000;background-image:url(http://i78.servimg.com/u/f78/17/96/03/52/search10.png);background-position:4px center;background-repeat:no-repeat;border:1px solid #8B0000;border-radius:0!important;box-shadow:0 2px 4px rgba(0,0,0,0.2) inset;color:#979DA7}#fa_right{margin-right:50px}#fa_right a.rightHeaderLink:first-child,#fa_right.welcome #fa_menu #fa_welcome,#fa_welcome{background:-moz-linear-gradient(#CD0000,#232B2B);background-attachment:scroll;background-image:-webkit-linear-gradient(#CD0000,#CD0000);border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:0 1px 0 #CD0000 inset;color:#f0f0f0!important;padding:0 5px;text-shadow:1px 1px #8B0000}#fa_menulist,#notif_list{-moz-border-radius:0 0 6px 6px;-moz-box-shadow:0 5px 7px rgba(0,0,0,0.4);-webkit-box-shadow:0 5px 7px rgba(0,0,0,0.4);background:-moz-linear-gradient(#FFFFFF,#EDEDED);background-image:-webkit-linear-gradient(#FFFFFF,#EDEDED);border-radius:0 0 6px 6px;box-shadow:0 5px 7px rgba(0,0,0,0.4)}#fa_hide,#fa_magnifier,#fa_share,#fa_toolbar_hidden{display:none!important}
.mini_ava img {
-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
background: #fff;
border: 1px solid #D5D5D5;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
height: 36px;
margin: 0 5px;
padding: 1px;
width: 36px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
float: right;
}
html body span.fa-topic-tag {
  display: inline!important;
  padding: 1px 5px!important;
}
.vote {
float: right;
width: 30px;
height: 70px;
margin-left: 4px;
}
 
/*******CURTIR NO POST********/
  #rep_post .reput_vote {
  background-color: #daedfb;
  color: #666;
  -khtml-user-select: none;
  -moz-transition: all,0.15s;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-transition: all,0.15s;
  -webkit-touch-callout: none;
  -webkit-transition: all,0.15s;
  -webkit-user-select: none;
  background: #f0f0f0 url(http://i18.servimg.com/u/f18/18/21/41/30/plus10.png) no-repeat 6px center;
  background-size: 12px;
  clear: both;
  color: #666;
  cursor: pointer;
  display: table;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  margin: 5px;
  padding: 3px 5px 3px 25px;
  text-align: right;
  transition: all,0.15s;
}
.reput_vote.zero {
  background-color: #6a6a6a;
}
 
 
  .BS_like:hover {
  background-color: #daedfb;
  color: #666;
}
.BS_like {
  -khtml-user-select: none;
  -moz-transition: all,0.15s;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-transition: all,0.15s;
  -webkit-touch-callout: none;
  -webkit-transition: all,0.15s;
  -webkit-user-select: none;
  background: #f0f0f0 url(http://i18.servimg.com/u/f18/18/21/41/30/plus10.png) no-repeat 6px center;
  background-size: 12px;
  clear: both;
  color: #666;
  cursor: pointer;
  display: table;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  margin: 5px;
  padding: 3px 5px 3px 25px;
  text-align: right;
  transition: all,0.15s;
  user-select: none;
}
 
.BS_like:before {
  content: "Curtir";
}
 
  #rep_post .bs_inline {
  list-style: none;
}
 
  .BS_like:hover {
  background-color: #daedfb;
  color: #666;
}
 
  #rep_post {white-space: nowrap;margin: 6px 4px;float: right;}
#rep_post .bs_inline {list-style: none;}
#rep_post .bs_inline > li {display: inline-block;margin: 0 3px;}
#rep_post .bs_inline > li:first-child {margin-left: 0;}
#rep_post .bs_inline img {display: none;}
#rep_post span img {cursor: pointer;}
 
 
.reput_vote.positive {background-color: #8db13e;}
.reput_vote.zero {background-color: #6a6a6a;}
 
#rep_post .reput_vote:before {
  content: "Curtidas ";
}
/***********FIM CURTIR************/
.postmain {
  position: relative;
}
 
div#rep_post {
  position: absolute;
  bottom: 40px;
  right: 0;
}
Flames

Flames
**

Membro desde : 05/10/2011
Mensagens : 50
Pontos : 78

http://jornamice.com.br.tc

Ir para o topo Ir para baixo

Tópico resolvido Re: Ícones não aparecem no fórum

Mensagem por Harleen 27.07.17 2:02

Troque o CSS por esse, já incluí as alteração indicadas nos tópicos
Código:
body {
    background: url('http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/bg_tile.gif') repeat scroll 0% 0% #FAFAFA;
    font: 11px "Segoe ui","Segoe ui",Helvetica,Arial,sans-serif;
    }

    html, body {
    background: url('http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/bg_tile.gif') repeat scroll 0% 0% #FAFAFA;
    color: #5A5A5A;
    }

    #pun-intro {
      display: none;
    }

    #pun-navlinks {
      display: none;
    }

    .pun .paged-foot, .pun .paged-head {
    background: none;
    border: none;
    padding: 0;
    }

    #pun-about #qjump {
    display: none;
    }

    #pun-about {
    text-align: right;
    font-size: 10px;
    }

    #pun-announcement {
    border-style: 0 px solid;
    border-width: 0px;
    padding: 1em;
    background: white;
    }

    .k1b4d58ea {
    display: none!important;
    background: none!important;
    border: none!important;
    }

    .pun {
        margin-bottom: 10px;
        background: none repeat scroll 0% 0% #FFF;
        padding: 10px;
        line-height: 120%;
        border: 1px solid #DADADA;
        margin-top: 10px;
        width: 1178px;
        text-align: left!important;
    }

    .pun .main-content {
    border: 1px solid #fff;
    }

    thead {
    display: none;
    }
        .lastpost-avatar img {
            margin-left: 14px;
        }
a.forumtitle { margin-left: 15px !important;}
    fieldset {
    -webkit-margin-start: 2px;
    -webkit-margin-end: 2px;
    -webkit-padding-before: 0.35em;
    -webkit-padding-start: 0.75em;
    -webkit-padding-end: 0.75em;
    -webkit-padding-after: 0.625em;
    border: 0px;
    border-image: initial;
    }

    .main .main-foot, .paged-foot {
    display: none;
    }

    #sc-container, .sc-width {
    width: 1178px;
    min-width: 960px;
    margin: 0 auto;
    }
span.status {
    margin-left: -40px !important;
}

    /*help button*/
    .pun .main-head a.exthelp, .pun .main-head a.exthelp:link, .pun .main-head a.exthelp:visited {
    display:none;
    }

    /*logged_in - Logado!*/

    #user_navigation .ipsList_inline li {
    margin: 0;
    }

    #user_navigation.logged_in {
    height: 26px;
    padding: 6px 0 4px;
    line-height: 25px;
    }
    #user_link_dd, .dropdownIndicator {
    background: url(http://www.tibiaking.com/forum/public/style_images/gris/header_dropdown.png) no-repeat right;
    display: inline-block;
    height: 5px;
    margin: 1px 0 1px 1px;
    width: 9px;
    }
    #inbox_link, #notify_link {
    height: 15px;
    padding: 11px 24px 8px 12px;
    position: relative;
    vertical-align: middle;
    width: 18px;
    }
    #inbox_link {
    background: url(http://www.tibiaking.com/forum/public/style_images/gris/icon_inbox.png) no-repeat top;
    }
    #notify_link {
    background: url(http://www.tibiaking.com/forum/public/style_images/gris/icon_notify.png) no-repeat top;
    margin-right: 11px;
    }
    .ipsHasNotifications {
    -moz-border-radius: 2px;
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
    -webkit-border-radius: 2px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
    background: #cf2020;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
    color: #fff!important;
    font-size: 9px;
    height: 12px;
    left: -5px;
    line-height: 12px;
    padding: 0 4px;
    position: absolute;
    text-align: center;
    top: 4px;
    }
    #user_link {
      margin-right: 15px;
    }

    /*color-picker*/

    .custom_theme {
        border-radius: 3px 0px 0px 3px;
        background: url('http: //www.bslrpg.com/forum/public/style_images/animehaven_v3/color_picker/color_picker.png') no-repeat scroll 50% 50% rgba(0, 0, 0, 0.3);
        cursor: pointer;
        width: 29px;
        height: 38px;
        margin-left: 1px;
        float: right;
        margin-top: 36px;
    }

    .custom_theme #colorpicker {
        border: 0px none !important;
        background: none repeat scroll 0% 0% transparent !important;
        text-indent: -999px !important;
        height: 36px;
        font-size: 0px;
        width: 37px;
        padding: 0px;
        margin: 0px;
        cursor: pointer;
        opacity: 0;
        display: block;
    }

    /*categoria*/
    .main .main-head {
        background: #CD0000;
        padding: 9px 12px;
        font-size: 12px;
        font-weight: 300;
        color: #FFF;
        box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.1), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
        text-shadow: 0px 1px 2px #000;
        border-bottom: 3px solid #8B1A1A;
        border-radius: 3px;
    }
    #main{margin-right: 10px;}

    .table .tc_icon {
        padding: 10px 5px !important;
        vertical-align: middle;
        width: 30px;
    }

    .pun table.table td.tc3 {
        text-align: right;
        width: 15%;
    }

    .main .main-content {
    padding: 4px;
    background: none repeat scroll 0px 0px #F3F3F3;
    border: 1px solid #E6E6E6;
    margin-bottom: 10px;
    }

    .pun tbody.statused td.tcl {
      background: white;
    }

    .pun tbody.statused td.tcr {
      background: white;
      border-left: 0px;
    }

    .pun table.table td {
    background-color: #FFFFFF!important;
    border-color: #ddd;
    border-style: solid none none none;
    border-width: 1px;
    line-height: 130%;
    padding: .6em 0 .7em;
    }

    .pun .main table td.tc2, .pun .main table td.tc3 {
      border-right: none;
      border-left: none;
    }

    .pun fieldset, .pun img {
    margin-top: -4px;
    vertical-align: middle;
    }

    .main .main-head .page-title {
        font-size: 12px;
        font-weight: 400;
        color: #fff !important;
    }

    .left{
    float:left;
    }

    .clear{
    clear: both;
    }

    #sc-container{
    width: 1178px;
    min-width: 960px;
    margin: 0 auto;
    }

    /*userbar*/

    #sc-topbar {
    background: #CD0000;
    padding: 0;
    text-align: right;
    height: 36px;
    position: relative;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.5) 0px -1px 10px;
    }

    #sc-navigation {
    display: inline;
    height: 36px;
    }

    #community_app_menu>li {
    margin: 0;
    position:relative;
    }

    .ipsList_inline>li:first-child {
    margin-left: 0;
    }

    .ipsList_inline>li {
    display: inline-block;
    margin: 0 3px;
    }

    #logo {
    display: inline;
    }

    ol, ul {
    list-style: none;
    }

    #logo a.textLogo {
    color: #fff;
    height: 36px;
    line-height: 32px;
    padding: 0 0;
    font-weight: bold;
    font-size: 16px;
    font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    padding-left: 6px;
    padding-right: 6px;
    }

    #logo a:hover {
    color: #C42323;
    }


    #community_app_menu>li.active>a {
    margin-top: 0;
    text-shadow: none;
    border-bottom: 3px solid #C42323;
    }

    #community_app_menu>li>a {
    color: #FFFFFF;
    background: transparent;
    display: block;
    padding: 0px 14px 0px;
    height: 33px;
    line-height: 36px;
    font-size: 11px;
    font-weight: bold;
    font-family: "Segoe ui",sans-serif;
    text-transform: uppercase;
    }

    #user_navigation.not_logged_in {
    height: 26px;
    padding: 6px 0 4px;
    line-height: 25px;
    }

    #user_navigation {
    color: #FFFFFF;
    font-size: 11px;
    line-height: 30px;
    }

    #user_navigation .ipsList_inline li {
    margin: 0;
    }

    #user_navigation a {
    color: #FFFFFF;
    font-weight: bold;
    }

    #user_navigation #register_link {
    background: white;
    padding: 0px 8px;
    height: 30px;
    }
    .pun a,.pun a:visited {
    color: #225985;
    text-decoration: none;
    }

    .pun a:hover{color: #C42323;}
    /*branding*/

    #sc-branding {
        background: url('http://oficialseries.com/wp-content/themes/seriesbrasil/images/bg.png') repeat scroll 0% 0% / 74% auto #383838;
        border-bottom: 1px solid #343434;
        min-height: 110px;
        box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.5) inset;
    }

    #sc-bottombar {
        background: none repeat scroll 0% 0% #000;
        padding: 0px;
        text-align: right;
        height: 36px;
        width: 100%;
    }

    #sc-sec-navigation {
        background: none repeat scroll 0% 0% #FFF;
        border-bottom: 1px solid #DADADA;
        overflow: hidden;
        line-height: 37px;
        clear: both;
    }

    .breadcrumb {
        color: #777;
        font-size: 11px;
    }

    .breadcrumb li:first-child {
        margin-left: 0px;
    }

    #sc-sec-navigation #breadcrumb li:first-of-type a {
        margin-left: 0px;
        background: none repeat scroll 0% 0% transparent;
        padding-left: 0px;
    }
    #sc-sec-navigation #breadcrumb li a {
        padding-left: 12px;
        margin-left: -15px;
        outline: medium none;
        text-decoration: none;
    }
    #sc-sec-navigation a {
        color: #757575;
        line-height: 37px;
        height: 37px;
    }
    .breadcrumb a {
        color: #777;
    }

    #sc-sec-navigation #breadcrumb li:first-of-type a span {
        padding-left: 12px;
        border-radius: 3px 0px 0px 3px;
    }

    #sc-sec-navigation-icons li {
        padding: 0px 4px;
    }

    .ipsList_inline > li:first-child {
        margin-left: 0px;
    }
    .ipsList_inline > li {
        display: inline-block;
        margin: 0px 3px;
    }

    #sc-sec-navigation-icons li img {
        width: 16px;
        height: 16px;
    }

    #search {
    background: rgba(0, 0, 0, 0.3);
    margin: 36px 0;
    padding: 5px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-top-right-radius: 3px;
    -moz-border-bottom-right-radius: 3px;
    }

    body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
    }

    fieldset, img {
    border: 0;
    }

    .hide {
    display: none;
    }

    label {
    cursor: default;
    }

    #adv_search {
    width: 16px;
    height: 16px;
    background: url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/advanced_search.png") no-repeat right 50%;
    text-indent: -3000em;
    display: none;
    margin: 6px 0 4px 4px;
    }

    #search_wrap {
    position: relative;
    background: rgba(0, 0, 0, 0.40);
    display: block;
    padding: 0 26px 0 4px;
    height: 26px;
    line-height: 25px;
    -moz-border-radius: 2px 2px 2px 2px;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-radius: 2px 2px 2px 2px;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0,0,0,0.13);
    width: 230px;
    }

    #main_search {
    font-size: 12px;
    border: 0;
    padding: 0;
    background: transparent;
    width: 150px;
    outline: 0;
    color: #C42323;
    font-style: italic;
    line-height: 26px;
    }

    #search_options {
    font-size: 10px;
    height: 28px;
    line-height: 25px;
    margin: 0px -2px 3px 0;
    padding: 0 6px;
    display: inline-block;
    float: right;
    max-width: 80px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: right;
    }

    .clickable {
    cursor: pointer;
    }

    .ipbmenu_content, .ipb_autocomplete {
    font-size: 12px;
    min-width: 85px;
    z-index: 999;
    }

    #search_options_menucontent {
    min-width: 100px;
    white-space: nowrap;
    text-align: left;
    }

    #search_options_menucontent li {
    border-bottom: 0;
    }

    .ipbmenu_content li:first-child {
    padding-top: 0px;
    }

    #search_options_menucontent input {
    margin-right: 10px;
    }

    img, .input_check, .input_radio {
    vertical-align: middle;
    }

    .custom_theme {
    -moz-border-radius: 0px 3px 3px 0px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-radius: 3px 0px 0px 3px;
    background: rgba(0, 0, 0, 0.30) url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/color_picker/color_picker.png") no-repeat 50% 50%;
    cursor: pointer;
    width: 29px;
    height: 38px;
    margin-left: 1px;
    float: right;
    margin-top: 36px;
    }

    .custom_theme #colorpicker {
    border: 0 !important;
    background: none transparent!important;
    text-indent: -999px!important;
    height: 36px;
    font-size: 0;
    width: 37px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    display: block;
    }


    .submit_input, .clickable {
    background: #770F0F url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/search_icon.png") no-repeat 50%!important;
    text-indent: -3000em!important;
    padding: 0!important;
    border: 0!important;
    display: block!important;
    width: 26px!important;
    height: 26px!important;
    position: absolute!important;
    right: 0!important;
    top: 0!important;
    bottom: 0!important;
    -moz-border-radius: 0 2px 2px 0!important;
    -webkit-border-top-right-radius: 2px!important;
    -webkit-border-bottom-right-radius: 2px!important;
    border-radius: 0 2px 2px 0!important;
    -webkit-box-shadow: inset 0px 1px 0 rgba(255, 255, 255, 0.2)!important;
    -moz-box-shadow: inset 0px 1px 0 rgba(255, 255, 255, 0.2)!important;
    box-shadow: inset 0px 1px 0 rgba(255,255,255,0.2)!important;
    }


    .right {
    float: right;
    }

    /*Link*/
    a {text-decoration:none;}
    ul{list-style:none;}

    .right {
    float: right;
    }



    /*lastpost*/
    #avatar-lastpost img {
    height: 30px;
    width: 30px;
    padding: 1px;
    border: 1px solid #D5D5D5;
    background: white;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    margin-top:13px;
    margin-right:11px;
    }

    #avatar-lastpost img:hover{
    border-color: #A1A1A1;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }

    td.tcr span a:empty:before {
    content: "Sem Post's Para Visualizar";
    cursor: default;
    pointer-events: none;
    text-align: center;
    word-wrap: break-word;
    margin: 1px 0px 4px 53px;
    color: #a4a4a4;
    font-style: italic;
    }
    /*rodape*/

    #pun-about {
    font-size: 10px;
    text-align: left;
    padding: 2px 10px;
    background: rgb(236, 236, 236);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
    border-radius: 5px;
    float: left;
    }

    #onlinelist {
    background-color: #F3F3F3;
    padding: 10px;
    color: rgb(155, 155, 155);
    border: 1px solid rgb(214, 214, 214);
    }

    #onlinechat {
    display: none;
    }

    #sc-footer {
    float: left;
    margin: 10px 0px 0px 0px;
    width: 100%;
    background: #FFF url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/brand_1.png");
    border-top: 1px solid #DADADA;
    }

    .sc-footer-col {
    width: 13.5%;
    font-size: 11px;
    min-width: 125px;
    display: inline-block;
    vertical-align: top;
    line-height: 22px;
    padding: 15px 0 18px 0;
    }

    #sc-footer a {
    color: #5A5A5A;
    }

    #footer_utilities {
    font-size: 11px;
    width: 100%;
    padding: 30px 0px 39px 0px;
    border-top: #DADADA solid 1px;
    background: #FAFAFA url("http://www.bslrpg.com/forum/public/style_images/animehaven_v3/custom/img/brand_1.png");
    }

    #footer_utilities .ipsList_inline>li>a {
    margin-right: 0px;
    padding: 4px 10px;
    }

    #copyright {
    color: #848484;
    text-align: right;
    }

    #backtotop:hover {
    color: #fff;
    opacity: 1;
    }

    #backtotop {
    width: 24px;
    height: 24px;
    line-height: 20px!important;
    left: 50%;
    margin-left: -12px;
    position: absolute;
    display: inline-block;
    background: #bdbdbd;
    text-align: center;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    opacity: 0.4;
    outline: 0;
    }

    /*user*/
    .pun .user-ident .username {
    display: block;
    font-size: 1.3em;
    font-weight: 400!important;
    margin-top: 5px;
    padding: 8px!important;
    position: relative;
    text-align: center;
    text-decoration: none;
    }

    /*post*/
    .post h3 {
    background: #F8F8F8;
    border-bottom: 1px solid #E6E6E6;
    border-top: 1px solid #E6E6E6;
    padding: 0 10px;
    height: 36px;
    line-height: 36px;
    font-weight: normal;
    font-size: 15px;
    margin-top: -3px;
    }
    span.post_id {
    margin-left: 4px;
    }
    .post_date {
    padding: 0 0 10px 0;
    font-size: 12px;
    color: #a4a4a4;
    }
    .desc.blend_links a {
    font: normal 12px helvetica, arial, sans-serif;
    color: #777777;
    }
    .post_id a img.small {
    max-height: 12px;
    margin-left: 3px;
    margin-top: -2px;
    opacity: 0.5;
    }
    .post_online {display: inline-block;}
    .pun .post .user {
    margin-left: -16em;
    margin-top: -0.9em;
    }
    .pun .post {background: white;}
    .pun .postmain {
    background-color: white;
    border-left: 0px;
    margin-left: 14em;
    }
    .pun .post .user {
    width: 165px;
    font-size: 12px;
    text-align: center;
    line-height: 150%;
    margin-left: -160px;
    margin-top: -0.6em;
    }

    .pun .post-entry {
    font-size: 12px;
    line-height: 1.6;
    padding: 20px;
    word-wrap: break-word;
    }

    .pun .user .user-ident .user-basic-info {
    font-size: 11px;
    color: #a4a4a4;
    text-align: center;
    font-weight: normal;
    }

    .postfoot {
    border-top: 0px;
    margin-left: -14em;
    }

    .sig-content {
    clear: right;
    color: #a4a4a4;
    font-size: 0.9em;
    border-top: 1px dashed #e4e4e4;
    padding: 10px 0;
    margin: 6px 0 4px;
    position: relative;
    }

    .user-basic-info a img {
    padding: 1px;
    border: 1px solid #d5d5d5;
    background: #fff;
    max-height: 300px;
    padding: 1px;
    max-width: 165px;
    margin-left: 10px;
    }

    .exthelp{display:none;}
    /*botoes*/

    input[type="button"], input[type="reset"], input[type="submit"] {
    -moz-border-radius: 2px;
    -moz-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
    -webkit-border-radius: 2px;
    -webkit-box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
    background: #353535 url(http://i57.servimg.com/u/f57/18/12/37/46/highli10.png) repeat-x top;
    border: 1px solid #2b2b2b;
    border-radius: 2px;
    box-shadow: rgba(0,0,0,0.43) 0 1px 3px;
    color: #fff;
    cursor: pointer;
    font-family: helvetica,arial,sans-serif;
    font-size: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    outline: none;
    padding: 4px 10px!important;
    }


    /*box*/
    .titlebox {
    background: #F9F9F9;
    border: 1px solid #E9EDEE;
    color: #768089;
    text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
    -moz-box-shadow: inset #b3bac1 0px 1px 3px;
    box-shadow: inset #B3BAC1 0px 1px 3px;
    padding: 10px;
    overflow: hidden;
    }
    .titlebox dd {display: block;}
    .titlebox dava {float: left;}
    .ipsBox_withphoto {float: left; margin-left: 10px;}
    .ipsType_pagetitle {color: #323232; display: block; font-family: Helvetica,Arial,sans-serif; font-size: 26px; font-style: normal; font-variant: normal; font-weight: 300; line-height: 1.4; outline-style: none; overflow: hidden; text-align: left; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; width: 650px;}
    .ipsType_pagetitle a {font-size: 23px; z-index: 999;}
    .desc.lighter.blend_links {color: #777; float: left; font-size: 11px;}
    .socialetopic {float: right; position: relative;}
    .titlebox dava a img {-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1); -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); background: white; border: 1px solid #D5D5D5; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); float: left; height: 50px!important; padding: 1px; width: 50px!important;}
    .titlebox dava a img:hover {
    border-color: #A1A1A1;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }

    /*quick avatar*/
    #quick-avatar {
        float: left;
        padding: 11px;
    }
    #quick-avatar img {
    margin-top: 50px;
    width: 50px;
    height: 50px;
    padding: 1px;
    border: 1px solid #D5D5D5;
    background: white;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }
    #quick-avatar img:hover {
      border-color: #A1A1A1;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }

    .mini_ava img {
    width: 30px;
    float: left;
    padding: 1px;
    border: 1px solid #d5d5d5;
    background: #fff;
    height: 30px;
    }

    .widgets{
    background: #262626;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset black 0px 1px 3px;
    -moz-box-shadow: inset #000 0px 1px 3px;
    box-shadow: inset black 0px 1px 3px;
    font-size: 11px;
    font-weight: bold;
    padding: 8px;
    }

    #fontwidget{
    color: white;
    font-size: 11px;
    font-weight: bold;
    tahoma,helvetica,arial,sans-serif;
    text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
    margin-left:18px;
    }

    #pun-visit, .main-box {
    display: none;
    border: none;
    font-size: 10px;
    margin: 0 0 1em;
    padding: .6em 1em;
    }

    /*widget*/

    .module .main-head {
        border: 1px solid #CFCFCF;
        padding: 10px;
        background: none repeat scroll 0px 0px #FFF;
        font: 11px arial,sans-serif;
        color: #757575;
        padding: 9px 10px;
        background: none repeat scroll 0% 0% #ECECEC;
        text-shadow: 0px 1px 0px #FFF;
        box-shadow: 0px 1px 0px #F9F9F9 inset;
        border-bottom: 3px solid #C42323;
    }

    .module .main-content{background:#fff}

    .module.main {
        margin: 0px;
        margin-bottom: 10px !important;
    }

    #ajax_loading {
        background: -moz-linear-gradient(center top , #95C715 0%, #7BA60D 100%) repeat scroll 0% 0% transparent;
        border: 1px solid #7BA60D;
        color: #FFF;
        text-align: center;
        padding: 5px 0px 8px;
        width: 8%;
        top: 0px;
        left: 46%;
        border-radius: 0px 0px 5px 5px;
        z-index: 999;
        position: fixed;
        box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2), 0px -1px 0px rgba(255, 255, 255, 0.2) inset;
    }
    /*tollbar-forumeiros by bs e victor*/
    #fa_toolbar{background-color:#CD0000; border-bottom:7px solid #CD0000;border-top:1px solid #333;box-shadow:0 1px black, 0 2px 1px rgba(0,0,0,.4);font-family:'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;font-style:normal}#fa_toolbar a{text-decoration:none!important}#fa_search #fa_textarea{-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2) inset;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2) inset;background-color:#8B0000;background-image:url(http://i78.servimg.com/u/f78/17/96/03/52/search10.png);background-position:4px center;background-repeat:no-repeat;border:1px solid #8B0000;border-radius:0!important;box-shadow:0 2px 4px rgba(0,0,0,0.2) inset;color:#979DA7}#fa_right{margin-right:50px}#fa_right a.rightHeaderLink:first-child,#fa_right.welcome #fa_menu #fa_welcome,#fa_welcome{background:-moz-linear-gradient(#CD0000,#232B2B);background-attachment:scroll;background-image:-webkit-linear-gradient(#CD0000,#CD0000);border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:0 1px 0 #CD0000 inset;color:#f0f0f0!important;padding:0 5px;text-shadow:1px 1px #8B0000}#fa_menulist,#notif_list{-moz-border-radius:0 0 6px 6px;-moz-box-shadow:0 5px 7px rgba(0,0,0,0.4);-webkit-box-shadow:0 5px 7px rgba(0,0,0,0.4);background:-moz-linear-gradient(#FFFFFF,#EDEDED);background-image:-webkit-linear-gradient(#FFFFFF,#EDEDED);border-radius:0 0 6px 6px;box-shadow:0 5px 7px rgba(0,0,0,0.4)}#fa_hide,#fa_magnifier,#fa_share,#fa_toolbar_hidden{display:none!important}
    .mini_ava img {
    -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    background: #fff;
    border: 1px solid #D5D5D5;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    height: 36px;
    margin: 0 5px;
    padding: 1px;
    width: 36px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    float: right;
    }
    html body span.fa-topic-tag {
      display: inline!important;
      padding: 1px 5px!important;
    }
    .vote {
    float: right;
    width: 30px;
    height: 70px;
    margin-left: 4px;
    }
   
    /*******CURTIR NO POST********/
      #rep_post .reput_vote {
      background-color: #daedfb;
      color: #666;
      -khtml-user-select: none;
      -moz-transition: all,0.15s;
      -moz-user-select: none;
      -ms-user-select: none;
      -o-transition: all,0.15s;
      -webkit-touch-callout: none;
      -webkit-transition: all,0.15s;
      -webkit-user-select: none;
      background: #f0f0f0 url(http://i18.servimg.com/u/f18/18/21/41/30/plus10.png) no-repeat 6px center;
      background-size: 12px;
      clear: both;
      color: #666;
      cursor: pointer;
      display: table;
      font-size: 11px;
      font-weight: 400;
      line-height: 18px;
      margin: 5px;
      padding: 3px 5px 3px 25px;
      text-align: right;
      transition: all,0.15s;
    }
    .reput_vote.zero {
      background-color: #6a6a6a;
    }
   
   
      .BS_like:hover {
      background-color: #daedfb;
      color: #666;
    }
    .BS_like {
      -khtml-user-select: none;
      -moz-transition: all,0.15s;
      -moz-user-select: none;
      -ms-user-select: none;
      -o-transition: all,0.15s;
      -webkit-touch-callout: none;
      -webkit-transition: all,0.15s;
      -webkit-user-select: none;
      background: #f0f0f0 url(http://i18.servimg.com/u/f18/18/21/41/30/plus10.png) no-repeat 6px center;
      background-size: 12px;
      clear: both;
      color: #666;
      cursor: pointer;
      display: table;
      font-size: 11px;
      font-weight: 400;
      line-height: 18px;
      margin: 5px;
      padding: 3px 5px 3px 25px;
      text-align: right;
      transition: all,0.15s;
      user-select: none;
    }
   
    .BS_like:before {
      content: "Curtir";
    }
   
      #rep_post .bs_inline {
      list-style: none;
    }
   
      .BS_like:hover {
      background-color: #daedfb;
      color: #666;
    }
   
      #rep_post {white-space: nowrap;margin: 6px 4px;float: right;}
    #rep_post .bs_inline {list-style: none;}
    #rep_post .bs_inline > li {display: inline-block;margin: 0 3px;}
    #rep_post .bs_inline > li:first-child {margin-left: 0;}
    #rep_post .bs_inline img {display: none;}
    #rep_post span img {cursor: pointer;}
   
   
    .reput_vote.positive {background-color: #8db13e;}
    .reput_vote.zero {background-color: #6a6a6a;}
   
    #rep_post .reput_vote:before {
      content: "Curtidas ";
    }
    /***********FIM CURTIR************/
    .postmain {
      position: relative;
    }
   
    div#rep_post {
      position: absolute;
      bottom: 40px;
      right: 0;
    }

E o Index_Box
Código:
<div class="pun-crumbs">
   <p class="crumbs"><a href="{U_INDEX}"><span>{L_INDEX}</span></a><strong>{NAV_CAT_DESC}</strong></p>
</div>
<div class="main">
<!-- BEGIN catrow -->
   <!-- BEGIN tablehead -->
      <div class="main-head">
         <div class="page-title">{catrow.tablehead.L_FORUM}</div>
      </div>
      <div class="main-content">
         <table cellspacing="0" class="table">
            <thead>
               <tr>
                  <th class="tcl">{L_FORUM}</th>
                  <th class="tc2">{L_TOPICS}</th>
                  <th class="tc3">{L_POSTS}</th>
                  <th class="tcr">{L_LASTPOST}</th>
               </tr>
            </thead>
            <tbody class="statused">
   <!-- END tablehead -->

   <!-- BEGIN forumrow -->
               <tr>
                  <td class="tcl" style="padding-right: {catrow.forumrow.INC_LEVEL_RIGHT}; padding-left: {catrow.forumrow.INC_LEVEL_LEFT};">
                     <span class="status" style="margin-right: -{catrow.forumrow.INC_WIDTH_ICON}; margin-left: -{catrow.forumrow.INC_WIDTH_ICON};">
                        <img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
                     </span>
                     <h{catrow.forumrow.LEVEL} class="hierarchy"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumtitle">{catrow.forumrow.FORUM_NAME}</a></h{catrow.forumrow.LEVEL}>
                     <br />
                     {catrow.forumrow.FORUM_DESC}
                     <!-- BEGIN switch_moderators_links -->
                     <br />
                     {catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
                     <!-- END switch_moderators_links -->
                     {catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
                     <strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}
                  </td>
                                                <td class="tc3"><strong>{catrow.forumrow.TOPICS}</strong> tópicos<br /><strong>{catrow.forumrow.POSTS}</strong> respostas</td>
                  <td class="tcr">
                            <!-- BEGIN ads -->
                     <span class="AD_LastPA">
                                <span class="lastpost-avatar"><img src="{catrow.forumrow.ads.IMG}" alt="{catrow.forumrow.ads.TITLE}" /></span>
                                <span class="AD_LastInfos">
                                    <b><a href="{catrow.forumrow.ads.LINK}">{catrow.forumrow.ads.TITLE}</a></b><br />
                                    {catrow.forumrow.ads.DATE}<br />
                                    {catrow.forumrow.ads.LOCATION}
                                </span>
                     </span>
                            <!-- END ads -->
                            <!-- BEGIN avatar -->
                            <span class="lastpost-avatar">{catrow.forumrow.avatar.LAST_POST_AVATAR}</span>
                            <!-- END avatar -->

                     <span>
                     <!-- BEGIN switch_topic_title -->
                     <a href="{catrow.forumrow.U_LATEST_TOPIC}" title="{catrow.forumrow.LATEST_TOPIC_TITLE}">{catrow.forumrow.LATEST_TOPIC_NAME}</a><br />
                     <!-- END switch_topic_title -->
                     {catrow.forumrow.USER_LAST_POST}
                     </span>
                  </td>
               </tr>
   <!-- END forumrow -->

   <!-- BEGIN tablefoot -->
            </tbody>
         </table>
      </div>
   <!-- END tablefoot -->
<!-- END catrow -->
</div>

<!-- BEGIN switch_on_index -->
<div class="main-box clearfix">
   <ul>
      <li><a href="{U_TODAY_ACTIVE}">{L_TODAY_ACTIVE}</a></li>
      <li><a href="{U_TODAY_POSTERS}">{L_TODAY_POSTERS}</a></li>
      <li><a href="{U_OVERALL_POSTERS}">{L_OVERALL_POSTERS}</a></li>
   </ul>
   <!-- BEGIN switch_delete_cookies -->
   <p class="right">
      <a href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}" rel="nofollow">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a>
   </p>
   <!-- END switch_delete_cookies -->
</div>
<!-- END switch_on_index -->

Deverá ficar assim
Com tópicos http://prntscr.com/g0roa8
Sem tópicos http://prntscr.com/g0rogy

Até mais
Harleen

Harleen
Super Membro

Membro desde : 09/07/2012
Mensagens : 1779
Pontos : 2373

https://antenadogames.forumeiros.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Ícones não aparecem no fórum

Mensagem por Harleen 27.07.17 6:49

Questão marcada como Resolvida ou o Autor solicitou que ela fosse arquivada.
Tópico marcado como Resolvido e movido para Questões resolvidas.
Harleen

Harleen
Super Membro

Membro desde : 09/07/2012
Mensagens : 1779
Pontos : 2373

https://antenadogames.forumeiros.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