Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o tema • Voltar para a ficha do tema
Últimos assuntos personalizados
3 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Últimos assuntos personalizados
Detalhes da questão
Endereço do fórum: http://brasilperfectnew.forumeiros.com
Versão do fórum: ModernBB
Descrição
Como add essa informação embaixo de cada topico no menu de ultimos assuntos?
Re: Últimos assuntos personalizados
Olá @Victor Monteiro,
Essas informações só estão disponíveis em um script personalizado dos "últimos assuntos", leia: Questão resolvida.
Cordialmente,
pedxz.
Tópico movido de 'Questões sobre a aparência do fórum' para 'Questões sobre códigos'
Essas informações só estão disponíveis em um script personalizado dos "últimos assuntos", leia: Questão resolvida.
Cordialmente,
pedxz.
Tópico movido de 'Questões sobre a aparência do fórum' para 'Questões sobre códigos'
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Últimos assuntos personalizados
Isto exatamente significa o quê?Victor Monteiro escreveu:La se trata de outro problema...
Tenha atenção não use nenhum tipo de formatação, seja cor ou alinhamento!
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Últimos assuntos personalizados
Bem, fiz o tutorial la, mas ficou bugado no meu.
Alias eu não quero avatar nos ultimos assuntos, eu so quero aquelas informações, Topico iniciado por fulano na area tal...
Alias eu não quero avatar nos ultimos assuntos, eu so quero aquelas informações, Topico iniciado por fulano na area tal...
Re: Últimos assuntos personalizados
No Seguimento deste tópico: Questão Resolvida , use o código, e quer que remova o avatar?
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Últimos assuntos personalizados
Não vi nenhum bug, pode dizer onde se encontra? Agradecia
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Últimos assuntos personalizados
Tome cuidado com a linguagem imprópria para um bom convívio entre ajudante e o Senhor!
Mude o seu script para:
Mude o seu script para:
- Código:
$(function () {
$('.module.main:contains("Últimos assuntos")').attr('style', 'height: 280px;overflow: scroll;overflow-x: hidden;');
});
$(function() {
$('head').append(
'<style type="text/css">' +
'.recentTopics {' +
' font-family: helvetica, arial, sans-serif !important;' +
' line-height: 15px;' +
' padding: 0;' +
'}' +
'.recentTopics div.h3 {' +
'background-color: #750404;' +
'color: white;' +
'margin-bottom: -5px;'+
'border-bottom: none;' +
'border-radius: 3px 3px 0px 0px;' +
'padding: 23px 18px;' +
'}' +
'.mod-recent-row .mod-recent-info {' +
' border-bottom: 0!important;'+
' margin: none!important;'+
'padding: 0!important;'+
'}'+
'.recentTopics ul {' +
' padding-left: 0 !important;' +
'}' +
'.mini_photo {' +
' margin-right: 5px;' +
'}' +
'li.recentPost {' +
' background-color: #fafafa;'+
' min-height: 70px;' +
' padding: 1em 1em 0.5em 1em;' +
' list-style-type: none;' +
' border-bottom: 1px solid rgba(38, 49, 55, 0.08);' +
'}' +
'.recentPost a[href^="/t"] {' +
' font-size: 13.8px;' +
' text-decoration: none;' +
' font-weight: bold;' +
'}' +
'.recentInline {' +
' min-width: 30%;' +
' font-size: 12px;' +
' float: right;' +
'}' +
'.small_links {' +
' display: table;' +
' margin-top: 10px;' +
'}' +
'.local {' +
' font-size: 0;' +
'}' +
'.local a:after {' +
' content: " → ";' +
'}' +
'.local a:last-child:after {' +
' content: "";' +
'}' +
'.small_links, .small_links a {' +
' color: #a4a4a4 !important;' +
' font-size: 12px !important;' +
' text-decoration: none !important;' +
'}' +
'.creator_post:before {' +
' content: "Tópico iniciado por ";' +
'}' +
'span.mod-recent-info {' +
'clear: both;' +
'display: block;' +
'float: right;' +
'line-height: 20px;' +
'width: 30%;' +
'}' +
'.creator_post:after {' +
' content: ", Em: ";' +
'}' +
'.recentTopics {' +
' margin: 15px 0;' +
'}' +
' #right {' +
' position: relative;' +
' top: -354px;' +
'}' +
'</style>'
);
var jModuleRecentPosts = $('.module:contains("Últimos assuntos")');
jModuleRecentPosts
.remove() // Clonando widget de últimos assuntos
.prependTo('#wrapper') // Inserindo no main-content
.addClass('recentTopics') // Adicionando nova classe
.removeClass('module'); // Removendo classe existente
$('.recentTopics').each(function() {
$(this).html(
$(this).html()
.replace(/\»/g, '')
.replace(/\<a href="\/t(.*?)\-/g,'<li class="recentPost"><a href="/t$1-')
.replace(/\<\/a\><br\>/g, '</a><div class="recentInline">')
.replace(/\<a href="\/u([0-9])"\>(.*?)<\/a\>/g, '<a href="/u$1">$2</a><br>')
).find('li').wrapAll('<ul></ul>');
$('a[href^="/u"]', this).each(function() {
var jLinkUser = $(this).attr('href');
$(this).before(
'<a href="' + jLinkUser + '" class="user_photo lastpost-avatar" style="background: none!important">' +
' <img src="https://2img.net/u/2617/31/90/74/avatars/1-40.png" alt="no_photo" class="mini_photo" />' +
'</a>'
);
var jImg = $(this).prev().find('img'),
jUser = sessionStorage.getItem(jLinkUser);
if(jUser) {
jImg.attr('src', jUser);
} else {
$.ajax({
url: jLinkUser + "?change_version=punbb",
type: 'GET',
success: function(data) {
var jImage = $('#profile-advanced-right .module:first img:first', data).attr('src');
jImg.attr('src', jImage);
sessionStorage.setItem(jLinkUser, jImage);
},
error: function(err)
{
console.log("AJAX error in request (Last posts)");
}
});
}
});
$('a[href^="/t"]', this).each(function() {
var jThis = $(this),
jLinkTpc = jThis.attr('href').split('#')[0];
$.ajax({
url: jLinkTpc + "?change_version=punbb",
type: 'GET',
success: function(recent) {
var jCreator = '',
jLocal = $('.crumbs:first a.nav', recent).wrapAll('<div></div>').parent().html(),
jPaging = $('.paging', recent)[0];
jThis.parents('.recentPost').append(
'<div class="small_links">' +
' <span class="creator_post">Carregando...</span>' +
' <span class="local">' + jLocal + '</span>' +
'</div>'
).find('a[href*="change_version"]').each(function() {
var jHref = $(this).attr('href').split('?')[0];
$(this).attr('href', jHref);
});
if(jPaging) {
jCreator = $('a:contains("1")', jPaging).attr('href');
jThis.parents('.recentPost').find('.creator_post').load(jCreator + ' .username:first', function() {
$(this).text($(this).text());
});
} else {
jCreator = $('.username:first', recent).text();
jThis.parents('.recentPost').find('.creator_post').text(jCreator);
}
},
error: function(err)
{
console.log("AJAX error in request (Last posts)");
}
});
});
});
});
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Últimos assuntos personalizados
Olá Victor!
Adicione à sua folha de estilos (CSS):
Não se esqueça de salvar. ( )
De seguida troque o script para este:
Até mais.
Adicione à sua folha de estilos (CSS):
- Código:
.recentPost .mod-recent-author a.user_photo.lastpost-avatar {
top: -12px;
}
span.local a.nav span span {
font-size: 12px !important;
}
Não se esqueça de salvar. ( )
De seguida troque o script para este:
- Código:
$(function () {
$('.module.main:contains("Últimos assuntos")').attr('style', 'height: 280px;overflow: scroll;overflow-x: hidden;');
});
$(function() {
$('head').append(
'<style type="text/css">' +
'.recentTopics {' +
' font-family: helvetica, arial, sans-serif !important;' +
' line-height: 15px;' +
' padding: 0;' +
'}' +
'.recentTopics div.h3 {' +
'background-color: #750404;' +
'color: white;' +
'margin-bottom: -5px;'+
'border-bottom: none;' +
'border-radius: 3px 3px 0px 0px;' +
'padding: 23px 18px;' +
'}' +
'.mod-recent-row .mod-recent-info {' +
' border-bottom: 0!important;'+
' margin: none!important;'+
'padding: 0!important;'+
'}'+
'.recentTopics ul {' +
' padding-left: 0 !important;' +
'}' +
'.mini_photo {' +
' margin-right: 5px;' +
'}' +
'li.recentPost {' +
' background-color: #fafafa;'+
' min-height: 70px;' +
' padding: 1em 1em 0.5em 1em;' +
' list-style-type: none;' +
' border-bottom: 1px solid rgba(38, 49, 55, 0.08);' +
'}' +
'.recentPost a[href^="/t"] {' +
' font-size: 13.8px;' +
' text-decoration: none;' +
' font-weight: bold;' +
'}' +
'.recentInline {' +
' min-width: 30%;' +
' font-size: 12px;' +
' float: right;' +
'}' +
'.small_links {' +
' display: table;' +
' margin-top: 10px;' +
'}' +
'.local {' +
' font-size: 0;' +
'}' +
'.local a:after {' +
' content: " → ";' +
'}' +
'.local a:last-child:after {' +
' content: "";' +
'}' +
'.small_links, .small_links a {' +
' color: #a4a4a4 !important;' +
' font-size: 12px !important;' +
' text-decoration: none !important;' +
'}' +
'.creator_post:before {' +
' content: "Tópico iniciado por ";' +
'}' +
'span.mod-recent-info {' +
'clear: both;' +
'display: block;' +
'float: right;' +
'line-height: 20px;' +
'width: 30%;' +
'}' +
'.creator_post:after {' +
' content: ", Em: ";' +
'}' +
'.recentTopics {' +
' margin: 15px 0;' +
'}' +
' #right {' +
' position: relative;' +
' top: -354px;' +
'}' +
'</style>'
);
var jModuleRecentPosts = $('.module:contains("Últimos assuntos")');
jModuleRecentPosts
.remove() // Clonando widget de últimos assuntos
.insertAfter('.pun-social') // Inserindo no main-content
.addClass('recentTopics') // Adicionando nova classe
.removeClass('module'); // Removendo classe existente
$('.recentTopics').each(function() {
$(this).html(
$(this).html()
.replace(/\»/g, '')
.replace(/\<a href="\/t(.*?)\-/g,'<li class="recentPost"><a href="/t$1-')
.replace(/\<\/a\><br\>/g, '</a><div class="recentInline">')
.replace(/\<a href="\/u([0-9])"\>(.*?)<\/a\>/g, '<a href="/u$1">$2</a><br>')
).find('li').wrapAll('<ul></ul>');
$('a[href^="/u"]', this).each(function() {
var jLinkUser = $(this).attr('href');
$(this).before(
'<a href="' + jLinkUser + '" class="user_photo lastpost-avatar" style="background: none!important">' +
' <img src="https://2img.net/u/2617/31/90/74/avatars/1-40.png" alt="no_photo" class="mini_photo" />' +
'</a>'
);
var jImg = $(this).prev().find('img'),
jUser = sessionStorage.getItem(jLinkUser);
if(jUser) {
jImg.attr('src', jUser);
} else {
$.ajax({
url: jLinkUser + "?change_version=punbb",
type: 'GET',
success: function(data) {
var jImage = $('#profile-advanced-right .module:first img:first', data).attr('src');
jImg.attr('src', jImage);
sessionStorage.setItem(jLinkUser, jImage);
},
error: function(err)
{
console.log("AJAX error in request (Last posts)");
}
});
}
});
$('a[href^="/t"]', this).each(function() {
var jThis = $(this),
jLinkTpc = jThis.attr('href').split('#')[0];
$.ajax({
url: jLinkTpc + "?change_version=punbb",
type: 'GET',
success: function(recent) {
var jCreator = '',
jLocal = $('.crumbs:first a.nav', recent).wrapAll('<div></div>').parent().html(),
jPaging = $('.paging', recent)[0];
jThis.parents('.recentPost').append(
'<div class="small_links">' +
' <span class="creator_post">Carregando...</span>' +
' <span class="local">' + jLocal + '</span>' +
'</div>'
).find('a[href*="change_version"]').each(function() {
var jHref = $(this).attr('href').split('?')[0];
$(this).attr('href', jHref);
});
if(jPaging) {
jCreator = $('a:contains("1")', jPaging).attr('href');
jThis.parents('.recentPost').find('.creator_post').load(jCreator + ' .username:first', function() {
$(this).text($(this).text());
});
} else {
jCreator = $('.username:first', recent).text();
jThis.parents('.recentPost').find('.creator_post').text(jCreator);
}
},
error: function(err)
{
console.log("AJAX error in request (Last posts)");
}
});
});
});
});
Até mais.
Re: Últimos assuntos personalizados
Olá @Victor Monteiro,
Adiciona mais este pequeno código ao CSS:
Até mais.
Adiciona mais este pequeno código ao CSS:
- Código:
.recentTopics .h3 {
text-align: center;
}
Até mais.
Re: Últimos assuntos personalizados
Victor Monteiro escreveu:Up, e tbm a barra de scrool sumiu
Atenção!Você não pode postar mensagens consecutivas ou UP's antes de se completarem 24 horas desde a sua última mensagem em um tópico. Por este motivo, pedimos que leia as regras do Setor de Suporte e as regras do Fórum dos Fóruns para não cometer novos erros. |
Re: Últimos assuntos personalizados
Olá!
Nos forneça a sua folha de estilos inteira, para fazer as alterações!
Até mais.
Nos forneça a sua folha de estilos inteira, para fazer as alterações!
Até mais.
Re: Últimos assuntos personalizados
- Código:
/******STAFF ONLINE**********/
.monAva img {
height: 40px;
width: 40px;
margin-right: 5px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #d5d1c8;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
padding: 1px;
}
.monAva img:hover {
border: 1px solid black;
}
.myStaff a {
display:inline-block;
vertical-align:top;
margin-top:.75em;
}
/*******FIM STAFF ONLINE********/
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ) {
background-color: rgba(141,202,255,0.44);
border: 1px solid #c5c2c2;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
}
/*Neon nick by brenet*/
/*Fundador*/
[style*="#8455C2"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #8455C2
}
/*Resp.Forum*/
[style*="#232424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #232424
}
/*Scripter*/
[style*="01451F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #01451F
}
/*Dono*/
[style*="FF2600"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #FF2600
}
/*Gerente*/
[style*="F06000"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #F06000
}
/*Master*/
[style*="#662424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #662424
}
/*Adm*/
[style*="#1070E6"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #1070E6
}
/*Helper*/
[style*="#00FF6F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #00FF6F
}
/*Correçao tamanho avatar*/
.postprofile-avatar img {
border: 3px solid #FFF;
border-radius: 5px!important;
box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.3);
height: auto!important;
width: auto!important;
}
/* HEADER_MOD - begin */
#site-desc {
text-align: center !important;
position: sticky !important;
margin-top: 75px !important;
}
div#site-title h1 {
text-transform: uppercase;
-moz-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
-ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
transition: transform 0.5s ease, opacity 0.5s ease;
display: inline-block;
font-size: 1.75em;
opacity: 1;
padding: 0.35em 0em;
position: relative;
z-index: 1;
}
div#site-title h1:after, div#site-title h1:before {
-moz-transition: width 0.85s ease;
-webkit-transition: width 0.85s ease;
-ms-transition: width 0.85s ease;
transition: width 0.85s ease;
-moz-transition-delay: 0.25s;
-webkit-transition-delay: 0.25s;
-ms-transition-delay: 0.25s;
transition-delay: 0.25s;
background: #fff;
content: '';
display: block;
height: 2px;
position: absolute;
width: 100%;
}
div#site-desc > p {
letter-spacing: 0.225em;
text-transform: uppercase;
}
.is-sticky#headerbar-top {
background-color: #21b2a6 !important;
}
/* HEADER_MOD end */
/* WRAP_BODY begin */
.module .h3 {
background-color: #505393 !important;
}
/* WRAP_BODY end */
.headerbar {
background: transparent;
}
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: 11px;
}
/*span[style*="#8455C2"] {
background: url(https://i.imgur.com/z4YM84G.gif);
text-shadow: 2px 0px 11px #8455C2;
}
span[style*="#ff2701"] {
background: url(https://i.imgur.com/4PxhCyQ.gif);
text-shadow: 2px 0px 11px #ff2701;
}
span[style*="#1070E6"] {
background: url(https://i.imgur.com/n0TdJKj.gif);
text-shadow: 2px 0px 11px #1070E6;
}*/
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: 5px;
}
ul.navbar.navlinks li {
margin: 10px auto;
}
ul.navbar.navlinks {
background-color: #750404!important;
height: 53px;
margin-top: 13px;
}
.is-sticky#headerbar-top {
background-color: transparent;
padding: 0;
top: -5px;
}
a#logo:after {
content: "";
clear: both;
display: table;
}
#logo {
display: inline-block;
float: none;
}
.postprofile-avatar img {
border-radius: 0px!important;
}
.table-title,
.table-title h2,
ul.topiclist dd.dterm h2,
ul.topiclist dt h2 {
font-weight: 700;
}
.module .mod-recent-row {
overflow: auto;
max-height: 12pc;
}
.module .h3 {
background-color: #750404 !important;
background-image: none !important;
color: #ffffff;
text-shadow: 0 0 2px #000000;
}
.postmain {
background: white;
}
.module{-moz-border-radius:7px;
-webkit-border-radius:7px;
background:url(https://i.servimg.com/u/f88/14/28/28/25/111.png);
background-color:#EDE8E8;
background-repeat:repeat-x;
border:1px solid #000000;
border-radius:7px;
margin:3px}
.module .h3{border-bottom:0px}
.sub-header-path .nav span span[style="font-size: 20px;"] {
font-size: 1.3rem!important;
}
.pun-social {
padding: 2.7em;
width: 99%;
height: auto;
margin: 20px auto 0 auto;
background: #750404;
color: black;
position: relative;
}
.pun-social form input {
width: 200px;
padding: 10px 0 10px 15px!important;
font-size: 16px!important;
border: 0 none!important;
height: 30px;
color: #213b4c!important;
outline: none!important;
background: #eceff1!important;
box-sizing: border-box!important;
transition: all 0.15s;
line-height: 58px;
border-radius: 6px 0 0 6px;
}
.pun-social form button {
position: absolute;
border: 0 none!important;
width: 30px;
padding: 0!important;
text-align: center!important;
height: 30px;
cursor: pointer;
background-color: #eceff1;
border-radius: 0 6px 6px 0;
}
.pun-social .pun-samp {
float: right;
position: absolute;
margin-left: 67%;
margin-top: -25px;
}
.pun-social {
height: 5px !important;
padding-top: 10px;
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ):before {
content:url('https://i.imgur.com/Kf2yjDZ.png');
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ).gensmall {
background: none !important;
border: none !important;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
min-width: 210px;
}
.pun-social {
border: 1px solid black;
}
td[colspan="3"] .module .h3 {
text-align: center;
}
.mod-recent-row .mod-recent-info {
border-bottom: 1px solid black;
padding: 2px;
margin: 3px;
padding-left: 17px;
}
.mod-recent-row a.mod-recent-title.fa-tagged-link {
margin-left: 25px;
}
.module .mod-recent-row {
margin-left: -25px;
}
td[colspan="3"] .module .mod-recent-row {
max-height: 20pc;
}
.recentPost .mod-recent-author a.user_photo.lastpost-avatar {
top: -12px;
}
span.local a.nav span span {
font-size: 12px !important;
}
.recentTopics .h3 {
text-align: center;
}
/*Fundador*/
.gensmall[style*="8455C2"]::before,
.block .gensmall > [style*="8455C2"]::before,
[style="color:#8455C2"] strong::before {
content: '\f06c ';
font-family: 'fontawesome';
}
/*Programador*/
.gensmall[style*="01451F"]::before,
.block .gensmall > [style*="01451F"]::before,
[style="color:#01451F"] strong::before {
content: '\f121 ';
font-family: 'fontawesome';
}
/*Resp. F*/
.gensmall[style*="232424"]::before,
.block .gensmall > [style*="232424"]::before,
[style="color:#232424"] strong::before {
content: '\f085 ';
font-family: 'fontawesome';
}
/*Dono*/
.gensmall[style*="FF2600"]::before,
.block .gensmall > [style*="FF2600"]::before,
[style="color:#FF2600"] strong::before {
content: '\f0d0 ';
font-family: 'fontawesome';
}
/*Master*/
.gensmall[style*="662424"]::before,
.block .gensmall > [style*="662424"]::before,
[style="color:#662424"] strong::before {
content: '\f0f4 ';
font-family: 'fontawesome';
}
/*Aux. F*/
.gensmall[style*="A3AFB3"]::before,
.block .gensmall > [style*="A3AFB3"]::before,
[style="color:#A3AFB3"] strong::before {
content: '\f013 ';
font-family: 'fontawesome';
}
Re: Últimos assuntos personalizados
Olá!
Troque por este:
Até mais.
Troque por este:
- Código:
/******STAFF ONLINE**********/
.monAva img {
height: 40px;
width: 40px;
margin-right: 5px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #d5d1c8;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
padding: 1px;
}
.monAva img:hover {
border: 1px solid black;
}
.myStaff a {
display:inline-block;
vertical-align:top;
margin-top:.75em;
}
/*******FIM STAFF ONLINE********/
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ) {
background-color: rgba(141,202,255,0.44);
border: 1px solid #c5c2c2;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
}
/*Neon nick by brenet*/
/*Fundador*/
[style*="#8455C2"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #8455C2
}
/*Resp.Forum*/
[style*="#232424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #232424
}
/*Scripter*/
[style*="01451F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #01451F
}
/*Dono*/
[style*="FF2600"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #FF2600
}
/*Gerente*/
[style*="F06000"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #F06000
}
/*Master*/
[style*="#662424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #662424
}
/*Adm*/
[style*="#1070E6"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #1070E6
}
/*Helper*/
[style*="#00FF6F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #00FF6F
}
/*Correçao tamanho avatar*/
.postprofile-avatar img {
border: 3px solid #FFF;
border-radius: 5px!important;
box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.3);
height: auto!important;
width: auto!important;
}
/* HEADER_MOD - begin */
#site-desc {
text-align: center !important;
position: sticky !important;
margin-top: 75px !important;
}
div#site-title h1 {
text-transform: uppercase;
-moz-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
-ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
transition: transform 0.5s ease, opacity 0.5s ease;
display: inline-block;
font-size: 1.75em;
opacity: 1;
padding: 0.35em 0em;
position: relative;
z-index: 1;
}
div#site-title h1:after, div#site-title h1:before {
-moz-transition: width 0.85s ease;
-webkit-transition: width 0.85s ease;
-ms-transition: width 0.85s ease;
transition: width 0.85s ease;
-moz-transition-delay: 0.25s;
-webkit-transition-delay: 0.25s;
-ms-transition-delay: 0.25s;
transition-delay: 0.25s;
background: #fff;
content: '';
display: block;
height: 2px;
position: absolute;
width: 100%;
}
div#site-desc > p {
letter-spacing: 0.225em;
text-transform: uppercase;
}
.is-sticky#headerbar-top {
background-color: #21b2a6 !important;
}
/* HEADER_MOD end */
/* WRAP_BODY begin */
.module .h3 {
background-color: #505393 !important;
}
/* WRAP_BODY end */
.headerbar {
background: transparent;
}
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: 11px;
}
/*span[style*="#8455C2"] {
background: url(https://i.imgur.com/z4YM84G.gif);
text-shadow: 2px 0px 11px #8455C2;
}
span[style*="#ff2701"] {
background: url(https://i.imgur.com/4PxhCyQ.gif);
text-shadow: 2px 0px 11px #ff2701;
}
span[style*="#1070E6"] {
background: url(https://i.imgur.com/n0TdJKj.gif);
text-shadow: 2px 0px 11px #1070E6;
}*/
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: 5px;
}
ul.navbar.navlinks li {
margin: 10px auto;
}
ul.navbar.navlinks {
background-color: #750404!important;
height: 53px;
margin-top: 13px;
}
.is-sticky#headerbar-top {
background-color: transparent;
padding: 0;
top: -5px;
}
a#logo:after {
content: "";
clear: both;
display: table;
}
#logo {
display: inline-block;
float: none;
}
.postprofile-avatar img {
border-radius: 0px!important;
}
.table-title,
.table-title h2,
ul.topiclist dd.dterm h2,
ul.topiclist dt h2 {
font-weight: 700;
}
.module .mod-recent-row {
overflow: auto;
max-height: 12pc;
}
.module .h3 {
background-color: #750404 !important;
background-image: none !important;
color: #ffffff;
text-shadow: 0 0 2px #000000;
}
.postmain {
background: white;
}
.module{-moz-border-radius:7px;
-webkit-border-radius:7px;
background:url(https://i.servimg.com/u/f88/14/28/28/25/111.png);
background-color:#EDE8E8;
background-repeat:repeat-x;
border:1px solid #000000;
border-radius:7px;
margin:3px}
.module .h3{border-bottom:0px}
.sub-header-path .nav span span[style="font-size: 20px;"] {
font-size: 1.3rem!important;
}
.pun-social {
padding: 2.7em;
width: 99%;
height: auto;
margin: 20px auto 0 auto;
background: #750404;
color: black;
position: relative;
}
.pun-social form input {
width: 200px;
padding: 10px 0 10px 15px!important;
font-size: 16px!important;
border: 0 none!important;
height: 30px;
color: #213b4c!important;
outline: none!important;
background: #eceff1!important;
box-sizing: border-box!important;
transition: all 0.15s;
line-height: 58px;
border-radius: 6px 0 0 6px;
}
.pun-social form button {
position: absolute;
border: 0 none!important;
width: 30px;
padding: 0!important;
text-align: center!important;
height: 30px;
cursor: pointer;
background-color: #eceff1;
border-radius: 0 6px 6px 0;
}
.pun-social .pun-samp {
float: right;
position: absolute;
margin-left: 67%;
margin-top: -25px;
}
.pun-social {
height: 5px !important;
padding-top: 10px;
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ):before {
content:url('https://i.imgur.com/Kf2yjDZ.png');
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ).gensmall {
background: none !important;
border: none !important;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
min-width: 210px;
}
.pun-social {
border: 1px solid black;
}
td[colspan="3"] .module .h3 {
text-align: center;
}
.mod-recent-row .mod-recent-info {
border-bottom: 1px solid black;
padding: 2px;
margin: 3px;
padding-left: 17px;
}
.module .mod-recent-row {
margin-left: -25px;
}
td[colspan="3"] .module .mod-recent-row {
max-height: 20pc;
}
.recentPost .mod-recent-author a.user_photo.lastpost-avatar {
top: -6px;
}
span.local a.nav span span {
font-size: 12px !important;
}
.recentTopics .h3 {
text-align: center;
}
/*Fundador*/
.gensmall[style*="8455C2"]::before,
.block .gensmall > [style*="8455C2"]::before,
[style="color:#8455C2"] strong::before {
content: '\f06c ';
font-family: 'fontawesome';
}
/*Programador*/
.gensmall[style*="01451F"]::before,
.block .gensmall > [style*="01451F"]::before,
[style="color:#01451F"] strong::before {
content: '\f121 ';
font-family: 'fontawesome';
}
/*Resp. F*/
.gensmall[style*="232424"]::before,
.block .gensmall > [style*="232424"]::before,
[style="color:#232424"] strong::before {
content: '\f085 ';
font-family: 'fontawesome';
}
/*Dono*/
.gensmall[style*="FF2600"]::before,
.block .gensmall > [style*="FF2600"]::before,
[style="color:#FF2600"] strong::before {
content: '\f0d0 ';
font-family: 'fontawesome';
}
/*Master*/
.gensmall[style*="662424"]::before,
.block .gensmall > [style*="662424"]::before,
[style="color:#662424"] strong::before {
content: '\f0f4 ';
font-family: 'fontawesome';
}
/*Aux. F*/
.gensmall[style*="A3AFB3"]::before,
.block .gensmall > [style*="A3AFB3"]::before,
[style="color:#A3AFB3"] strong::before {
content: '\f013 ';
font-family: 'fontawesome';
}
Até mais.
Re: Últimos assuntos personalizados
Não resultou em nada
Codigo da minha folha
Codigo da minha folha
- Código:
/******STAFF ONLINE**********/
.monAva img {
height: 40px;
width: 40px;
margin-right: 5px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #d5d1c8;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
padding: 1px;
}
.monAva img:hover {
border: 1px solid black;
}
.myStaff a {
display:inline-block;
vertical-align:top;
margin-top:.75em;
}
/*******FIM STAFF ONLINE********/
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ) {
background-color: rgba(141,202,255,0.44);
border: 1px solid #c5c2c2;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
}
/*Neon nick by brenet*/
/*Fundador*/
[style*="#8455C2"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #8455C2
}
/*Resp.Forum*/
[style*="#232424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #232424
}
/*Scripter*/
[style*="01451F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #01451F
}
/*Dono*/
[style*="FF2600"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #FF2600
}
/*Gerente*/
[style*="F06000"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #F06000
}
/*Master*/
[style*="#662424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #662424
}
/*Adm*/
[style*="#1070E6"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #1070E6
}
/*Helper*/
[style*="#00FF6F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #00FF6F
}
/*Correçao tamanho avatar*/
.postprofile-avatar img {
border: 3px solid #FFF;
border-radius: 5px!important;
box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.3);
height: auto!important;
width: auto!important;
}
/* HEADER_MOD - begin */
#site-desc {
text-align: center !important;
position: sticky !important;
margin-top: 75px !important;
}
div#site-title h1 {
text-transform: uppercase;
-moz-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
-ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
transition: transform 0.5s ease, opacity 0.5s ease;
display: inline-block;
font-size: 1.75em;
opacity: 1;
padding: 0.35em 0em;
position: relative;
z-index: 1;
}
div#site-title h1:after, div#site-title h1:before {
-moz-transition: width 0.85s ease;
-webkit-transition: width 0.85s ease;
-ms-transition: width 0.85s ease;
transition: width 0.85s ease;
-moz-transition-delay: 0.25s;
-webkit-transition-delay: 0.25s;
-ms-transition-delay: 0.25s;
transition-delay: 0.25s;
background: #fff;
content: '';
display: block;
height: 2px;
position: absolute;
width: 100%;
}
div#site-desc > p {
letter-spacing: 0.225em;
text-transform: uppercase;
}
.is-sticky#headerbar-top {
background-color: #21b2a6 !important;
}
/* HEADER_MOD end */
/* WRAP_BODY begin */
.module .h3 {
background-color: #505393 !important;
}
/* WRAP_BODY end */
.headerbar {
background: transparent;
}
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: 11px;
}
/*span[style*="#8455C2"] {
background: url(https://i.imgur.com/z4YM84G.gif);
text-shadow: 2px 0px 11px #8455C2;
}
span[style*="#ff2701"] {
background: url(https://i.imgur.com/4PxhCyQ.gif);
text-shadow: 2px 0px 11px #ff2701;
}
span[style*="#1070E6"] {
background: url(https://i.imgur.com/n0TdJKj.gif);
text-shadow: 2px 0px 11px #1070E6;
}*/
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: -20px;
}
ul.navbar.navlinks li {
margin: 10px auto;
}
ul.navbar.navlinks {
background-color: #750404!important;
height: 53px;
margin-top: 13px;
}
.is-sticky#headerbar-top {
background-color: transparent;
padding: 0;
top: -5px;
}
a#logo:after {
content: "";
clear: both;
display: table;
}
#logo {
display: inline-block;
float: none;
}
.postprofile-avatar img {
border-radius: 0px!important;
}
.table-title,
.table-title h2,
ul.topiclist dd.dterm h2,
ul.topiclist dt h2 {
font-weight: 700;
}
.module .mod-recent-row {
overflow: auto;
max-height: 12pc;
}
.module .h3 {
background-color: #750404 !important;
background-image: none !important;
color: #ffffff;
text-shadow: 0 0 2px #000000;
}
.postmain {
background: white;
}
.module{-moz-border-radius:7px;
-webkit-border-radius:7px;
background:url(https://i.servimg.com/u/f88/14/28/28/25/111.png);
background-color:#EDE8E8;
background-repeat:repeat-x;
border:1px solid #000000;
border-radius:7px;
margin:3px}
.module .h3{border-bottom:0px}
.sub-header-path .nav span span[style="font-size: 20px;"] {
font-size: 1.3rem!important;
}
.pun-social {
padding: 2.7em;
width: 99%;
height: auto;
margin: 20px auto 0 auto;
background: #750404;
color: black;
position: relative;
}
.pun-social form input {
width: 200px;
padding: 10px 0 10px 15px!important;
font-size: 16px!important;
border: 0 none!important;
height: 30px;
color: #213b4c!important;
outline: none!important;
background: #eceff1!important;
box-sizing: border-box!important;
transition: all 0.15s;
line-height: 58px;
border-radius: 6px 0 0 6px;
}
.pun-social form button {
position: absolute;
border: 0 none!important;
width: 30px;
padding: 0!important;
text-align: center!important;
height: 30px;
cursor: pointer;
background-color: #eceff1;
border-radius: 0 6px 6px 0;
}
.pun-social .pun-samp {
float: right;
position: absolute;
margin-left: 67%;
margin-top: -25px;
}
.pun-social {
height: 5px !important;
padding-top: 10px;
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ):before {
content:url('https://i.imgur.com/Kf2yjDZ.png');
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ).gensmall {
background: none !important;
border: none !important;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
min-width: 210px;
}
.pun-social {
border: 1px solid black;
}
td[colspan="3"] .module .h3 {
text-align: center;
}
.mod-recent-row .mod-recent-info {
border-bottom: 1px solid black;
padding: 2px;
margin: 3px;
padding-left: 17px;
}
.module .mod-recent-row {
margin-left: -25px;
}
td[colspan="3"] .module .mod-recent-row {
max-height: 20pc;
}
.recentPost .mod-recent-author a.user_photo.lastpost-avatar {
top: -6px;
}
span.local a.nav span span {
font-size: 12px !important;
}
.recentTopics .h3 {
text-align: center;
}
/*Fundador*/
.gensmall[style*="8455C2"]::before,
.block .gensmall > [style*="8455C2"]::before,
[style="color:#8455C2"] strong::before {
content: '\f06c ';
font-family: 'fontawesome';
}
/*Programador*/
.gensmall[style*="01451F"]::before,
.block .gensmall > [style*="01451F"]::before,
[style="color:#01451F"] strong::before {
content: '\f121 ';
font-family: 'fontawesome';
}
/*Resp. F*/
.gensmall[style*="232424"]::before,
.block .gensmall > [style*="232424"]::before,
[style="color:#232424"] strong::before {
content: '\f085 ';
font-family: 'fontawesome';
}
/*Dono*/
.gensmall[style*="FF2600"]::before,
.block .gensmall > [style*="FF2600"]::before,
[style="color:#FF2600"] strong::before {
content: '\f0d0 ';
font-family: 'fontawesome';
}
/*Master*/
.gensmall[style*="662424"]::before,
.block .gensmall > [style*="662424"]::before,
[style="color:#662424"] strong::before {
content: '\f0f4 ';
font-family: 'fontawesome';
}
/*Aux. F*/
.gensmall[style*="A3AFB3"]::before,
.block .gensmall > [style*="A3AFB3"]::before,
[style="color:#A3AFB3"] strong::before {
content: '\f013 ';
font-family: 'fontawesome';
}
/*Adm*/
.gensmall[style*="1070E6"]::before,
.block .gensmall > [style*="1070E6"]::before,
[style="color:#1070E6"] strong::before {
content: '\f06d ';
font-family: 'fontawesome';
}
/*Gerente*/
.gensmall[style*="F06000"]::before,
.block .gensmall > [style*="F06000"]::before,
[style="color:#F06000"] strong::before {
content: '\f02e ';
font-family: 'fontawesome';
}
/*Helper*/
.gensmall[style*="00FF6F"]::before,
.block .gensmall > [style*="00FF6F"]::before,
[style="color:#00FF6F"] strong::before {
content: '\f08d ';
font-family: 'fontawesome';
}
/*Designer*/
.gensmall[style*="F0DC00"]::before,
.block .gensmall > [style*="F0DC00"]::before,
[style="color:#F0DC00"] strong::before {
content: '\f1fc ';
font-family: 'fontawesome';
}
/*Resp. Ts*/
.gensmall[style*="04C7BD"]::before,
.block .gensmall > [style*="04C7BD"]::before,
[style="color:#04C7BD"] strong::before {
content: '\f130 ';
font-family: 'fontawesome';
}
/*Adm. Ts*/
.gensmall[style*="3A9B9E"]::before,
.block .gensmall > [style*="3A9B9E"]::before,
[style="color:#3A9B9E"] strong::before {
content: '\f025 ';
font-family: 'fontawesome';
}
/*Lider*/
.gensmall[style*="C78B8B"]::before,
.block .gensmall > [style*="C78B8B"]::before,
[style="color:#C78B8B"] strong::before {
content: '\f02d ';
font-family: 'fontawesome';
}
form[action^="/profile"] dd {
float: right;
width: 80%;
}
Re: Últimos assuntos personalizados
Olá,
Essa folha não tem os códigos que eu adicionei, troque a folha pela a que eu forneci e deixe ela ativa.
Até.
Essa folha não tem os códigos que eu adicionei, troque a folha pela a que eu forneci e deixe ela ativa.
Até.
Re: Últimos assuntos personalizados
poderia realizar as alterações nessa outra? pois essa ultima esta mais atualizada
Re: Últimos assuntos personalizados
Olá!
Troque por este:
Até mais.
Troque por este:
- Código:
/******STAFF ONLINE**********/
.monAva img {
height: 40px;
width: 40px;
margin-right: 5px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #d5d1c8;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
padding: 1px;
}
.monAva img:hover {
border: 1px solid black;
}
.myStaff a {
display:inline-block;
vertical-align:top;
margin-top:.75em;
}
/*******FIM STAFF ONLINE********/
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ) {
background-color: rgba(141,202,255,0.44);
border: 1px solid #c5c2c2;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
}
/*Neon nick by brenet*/
/*Fundador*/
[style*="#8455C2"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #8455C2
}
/*Resp.Forum*/
[style*="#232424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #232424
}
/*Scripter*/
[style*="01451F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #01451F
}
/*Dono*/
[style*="FF2600"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #FF2600
}
/*Gerente*/
[style*="F06000"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #F06000
}
/*Master*/
[style*="#662424"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #662424
}
/*Adm*/
[style*="#1070E6"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #1070E6
}
/*Helper*/
[style*="#00FF6F"] {
background: url(http://brasil-nl.com.br/forum/public/style_images/splatts/brilho.gif);
text-shadow: 1px 1px 10px #00FF6F
}
/*Correçao tamanho avatar*/
.postprofile-avatar img {
border: 3px solid #FFF;
border-radius: 5px!important;
box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.3);
height: auto!important;
width: auto!important;
}
/* HEADER_MOD - begin */
#site-desc {
text-align: center !important;
position: sticky !important;
margin-top: 75px !important;
}
div#site-title h1 {
text-transform: uppercase;
-moz-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
-ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
transition: transform 0.5s ease, opacity 0.5s ease;
display: inline-block;
font-size: 1.75em;
opacity: 1;
padding: 0.35em 0em;
position: relative;
z-index: 1;
}
div#site-title h1:after, div#site-title h1:before {
-moz-transition: width 0.85s ease;
-webkit-transition: width 0.85s ease;
-ms-transition: width 0.85s ease;
transition: width 0.85s ease;
-moz-transition-delay: 0.25s;
-webkit-transition-delay: 0.25s;
-ms-transition-delay: 0.25s;
transition-delay: 0.25s;
background: #fff;
content: '';
display: block;
height: 2px;
position: absolute;
width: 100%;
}
div#site-desc > p {
letter-spacing: 0.225em;
text-transform: uppercase;
}
.is-sticky#headerbar-top {
background-color: #21b2a6 !important;
}
/* HEADER_MOD end */
/* WRAP_BODY begin */
.module .h3 {
background-color: #505393 !important;
}
/* WRAP_BODY end */
.headerbar {
background: transparent;
}
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: 11px;
}
/*span[style*="#8455C2"] {
background: url(https://i.imgur.com/z4YM84G.gif);
text-shadow: 2px 0px 11px #8455C2;
}
span[style*="#ff2701"] {
background: url(https://i.imgur.com/4PxhCyQ.gif);
text-shadow: 2px 0px 11px #ff2701;
}
span[style*="#1070E6"] {
background: url(https://i.imgur.com/n0TdJKj.gif);
text-shadow: 2px 0px 11px #1070E6;
}*/
#headerbar-top .wrap {
padding: 0;
min-width: 80%!important;
margin-top: -20px;
}
ul.navbar.navlinks li {
margin: 10px auto;
}
ul.navbar.navlinks {
background-color: #750404!important;
height: 53px;
margin-top: 13px;
}
.is-sticky#headerbar-top {
background-color: transparent;
padding: 0;
top: -5px;
}
a#logo:after {
content: "";
clear: both;
display: table;
}
#logo {
display: inline-block;
float: none;
}
.postprofile-avatar img {
border-radius: 0px!important;
}
.table-title,
.table-title h2,
ul.topiclist dd.dterm h2,
ul.topiclist dt h2 {
font-weight: 700;
}
.recentPost span.mod-recent-info {
float: none;
}
.module .mod-recent-row {
overflow: auto;
max-height: 12pc;
}
.module .h3 {
background-color: #750404 !important;
background-image: none !important;
color: #ffffff;
text-shadow: 0 0 2px #000000;
}
.postmain {
background: white;
}
.module{-moz-border-radius:7px;
-webkit-border-radius:7px;
background:url(https://i.servimg.com/u/f88/14/28/28/25/111.png);
background-color:#EDE8E8;
background-repeat:repeat-x;
border:1px solid #000000;
border-radius:7px;
margin:3px}
.module .h3{border-bottom:0px}
.sub-header-path .nav span span[style="font-size: 20px;"] {
font-size: 1.3rem!important;
}
.pun-social {
padding: 2.7em;
width: 99%;
height: auto;
margin: 20px auto 0 auto;
background: #750404;
color: black;
position: relative;
}
.pun-social form input {
width: 200px;
padding: 10px 0 10px 15px!important;
font-size: 16px!important;
border: 0 none!important;
height: 30px;
color: #213b4c!important;
outline: none!important;
background: #eceff1!important;
box-sizing: border-box!important;
transition: all 0.15s;
line-height: 58px;
border-radius: 6px 0 0 6px;
}
.pun-social form button {
position: absolute;
border: 0 none!important;
width: 30px;
padding: 0!important;
text-align: center!important;
height: 30px;
cursor: pointer;
background-color: #eceff1;
border-radius: 0 6px 6px 0;
}
.pun-social .pun-samp {
float: right;
position: absolute;
margin-left: 67%;
margin-top: -25px;
}
.pun-social {
height: 5px !important;
padding-top: 10px;
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ):before {
content:url('https://i.imgur.com/Kf2yjDZ.png');
}
.topiclist.forums li.row dl.icon dd.dterm > div :not(.hierarchy):not(.forumtitle):not( strong ).gensmall {
background: none !important;
border: none !important;
color: #385469;
display: inline-block;
margin: 2px;
padding: 4px;
min-width: 210px;
}
.pun-social {
border: 1px solid black;
}
td[colspan="3"] .module .h3 {
text-align: center;
}
.mod-recent-row .mod-recent-info {
border-bottom: 1px solid black;
padding: 2px;
margin: 3px;
padding-left: 17px;
}
td[colspan="3"] .module .mod-recent-row {
max-height: 20pc;
}
.recentPost .mod-recent-author a.user_photo.lastpost-avatar {
top: -6px;
}
span.local a.nav span span {
font-size: 12px !important;
}
.recentTopics .h3 {
text-align: center;
}
/*Fundador*/
.gensmall[style*="8455C2"]::before,
.block .gensmall > [style*="8455C2"]::before,
[style="color:#8455C2"] strong::before {
content: '\f06c ';
font-family: 'fontawesome';
}
/*Programador*/
.gensmall[style*="01451F"]::before,
.block .gensmall > [style*="01451F"]::before,
[style="color:#01451F"] strong::before {
content: '\f121 ';
font-family: 'fontawesome';
}
/*Resp. F*/
.gensmall[style*="232424"]::before,
.block .gensmall > [style*="232424"]::before,
[style="color:#232424"] strong::before {
content: '\f085 ';
font-family: 'fontawesome';
}
/*Dono*/
.gensmall[style*="FF2600"]::before,
.block .gensmall > [style*="FF2600"]::before,
[style="color:#FF2600"] strong::before {
content: '\f0d0 ';
font-family: 'fontawesome';
}
/*Master*/
.gensmall[style*="662424"]::before,
.block .gensmall > [style*="662424"]::before,
[style="color:#662424"] strong::before {
content: '\f0f4 ';
font-family: 'fontawesome';
}
/*Aux. F*/
.gensmall[style*="A3AFB3"]::before,
.block .gensmall > [style*="A3AFB3"]::before,
[style="color:#A3AFB3"] strong::before {
content: '\f013 ';
font-family: 'fontawesome';
}
/*Adm*/
.gensmall[style*="1070E6"]::before,
.block .gensmall > [style*="1070E6"]::before,
[style="color:#1070E6"] strong::before {
content: '\f06d ';
font-family: 'fontawesome';
}
/*Gerente*/
.gensmall[style*="F06000"]::before,
.block .gensmall > [style*="F06000"]::before,
[style="color:#F06000"] strong::before {
content: '\f02e ';
font-family: 'fontawesome';
}
/*Helper*/
.gensmall[style*="00FF6F"]::before,
.block .gensmall > [style*="00FF6F"]::before,
[style="color:#00FF6F"] strong::before {
content: '\f08d ';
font-family: 'fontawesome';
}
/*Designer*/
.gensmall[style*="F0DC00"]::before,
.block .gensmall > [style*="F0DC00"]::before,
[style="color:#F0DC00"] strong::before {
content: '\f1fc ';
font-family: 'fontawesome';
}
/*Resp. Ts*/
.gensmall[style*="04C7BD"]::before,
.block .gensmall > [style*="04C7BD"]::before,
[style="color:#04C7BD"] strong::before {
content: '\f130 ';
font-family: 'fontawesome';
}
/*Adm. Ts*/
.gensmall[style*="3A9B9E"]::before,
.block .gensmall > [style*="3A9B9E"]::before,
[style="color:#3A9B9E"] strong::before {
content: '\f025 ';
font-family: 'fontawesome';
}
/*Lider*/
.gensmall[style*="C78B8B"]::before,
.block .gensmall > [style*="C78B8B"]::before,
[style="color:#C78B8B"] strong::before {
content: '\f02d ';
font-family: 'fontawesome';
}
form[action^="/profile"] dd {
float: right;
width: 80%;
}
Até mais.
Re: Últimos assuntos personalizados
Olá!
Quantos tópicos quer que sejam exibidos antes de a pessoa scrollar?
Quantos tópicos quer que sejam exibidos antes de a pessoa scrollar?
Re: Últimos assuntos personalizados
Olá!
Adicione à sua folha de estilos:
Até mais.
Adicione à sua folha de estilos:
- Código:
.recentTopics .mod-recent-row {
overflow-y: scroll;
max-height: 31pc;
}
Até mais.
Re: Últimos assuntos personalizados
Tópico resolvidoMovido para "Questões resolvidas". |
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Tópicos semelhantes
» Últimos assuntos personalizados
» Últimos Assuntos - Personalizados
» Últimos assuntos personalizados
» Últimos Assuntos personalizados
» Ultimos assuntos personalizados
» Últimos Assuntos - Personalizados
» Últimos assuntos personalizados
» Últimos Assuntos personalizados
» Ultimos assuntos personalizados
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos