<?php
<td class="thead" colspan="5">
<?php
<td class="thead_{$forum['fid']}" colspan="5">
<?php
.thead_1 {
background: #026CB1 url(images/thead_bg.gif) top left repeat-x;
color: #ffffff;
}
.thead_1 a:link {
color: #ffffff;
text-decoration: none;
}
.thead_1 a:visited {
color: #ffffff;
text-decoration: none;
}
.thead_1 a:hover, .thead_1 a:active {
color: #ffffff;
text-decoration: underline;
}
(14 May, 2012, 8:28 pm)Cluster escribió: 3- Ahora aquí va el truco y la explicación (para que entiendan lo que hace): Cada class="" llama a un atributo desde la hoja de estilo (global, showthread y etc .css) como es en este caso thead, la variable {$forum['fid']} es remplazada por el "FID" de cada foro/categoría... lo que quedaría ya reproducido como: thead_1, thead_2 y etc.
Pero, donde se consigue dicho FID?.
S tu vas a tu panel de admin y clickeas una categoría para editarla, en tu barra de direcciones encontraras esto
Bien si todo entendido hasta aqui, seguimos con el final del tutorial.
4- Teniendo en cuenta el FID de la categoría, hay que agregar a tu global.css si el FID es el 1 por ejemplo. (OJO: este solo es un ejemplo, para editar el color y etc ya te corresponde a ti, el ejemplo es del estilo default de MyBB)
Código PHP:<?php
.thead_1 {
background: #026CB1 url(images/thead_bg.gif) top left repeat-x;
color: #ffffff;
}
.thead_1 a:link {
color: #ffffff;
text-decoration: none;
}
.thead_1 a:visited {
color: #ffffff;
text-decoration: none;
}
.thead_1 a:hover, .thead_1 a:active {
color: #ffffff;
text-decoration: underline;
}
<?php
.thead_1 {
background: #026CB1 url(images/thead_bg.gif) top left repeat-x;
color: #ffffff;
}
.thead_1 a:link {
color: #ffffff;
text-decoration: none;
}
.thead_1 a:visited {
color: #ffffff;
text-decoration: none;
}
.thead_1 a:hover, .thead_1 a:active {
color: #ffffff;
text-decoration: underline;
}
(15 May, 2012, 5:17 pm)Cluster escribió: el prefijo numerico sera del FID de tu categoria.... si tus categorias son por ejemplo: 10,51,84,30 tendras que agregar 3 nuevos class a tu hoja de estilos por cada FIDListo Gracias
.thead_10
.thead_51
.thead_84
.thead_30
(15 May, 2012, 6:13 pm)Cluster escribió:Código PHP:<?php
background: #026CB1 url(images/thead_bg.gif) top left repeat-x;
<?php
.thead_1 {
text-shadow: 0.1em 0.1em 0.2em black;
background: ##FFFFFF;
background: -moz-linear-gradient(top, #0372A9 0%, #02608F 44%, #00496D 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0372A9), color-stop(44%,#028F0B), color-stop(100%,#6d0019));
background: -webkit-linear-gradient(top, #0372A9 0%,#02608F 44%,#00496D 100%);
background: -o-linear-gradient(top, #0372A9 0%,#02608F 44%,#00496D 100%);
background: -ms-linear-gradient(top, #0372A9 0%,#02608F 44%,#00496D 100%);
background: linear-gradient(top, #0372A9 0%,#02608F 44%,#00496D 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03A903', endColorstr='#006D0D',GradientType=0 );
border-bottom: 1px solid #1d2b34;
color: #FFFFFF;
font-weight: bold;
padding: 8px;
text-shadow: 0.1em 0.1em #333333;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;