Recordad que para pedir soporte alguno, debéis facilitar los datos de soporte oportunos por favor, mirad aquí y leer las Normas generales del foro, esto nos servirá de ayuda para dar el mejor soporte..

Gracias.

La Administración de phpBB España.

3.0.x Actualizaciones de estilo [para la version 3.0.10]Tema Solucionado

Dudas sobre estilos phpBB 3.0.x
Colaboraciones gráficas paquetes de rangos aquí y botones aquí.
Cerrado
Avatar de Usuario
nextgen
Ex Staff
Mensajes: 1726
Registrado: 25 Jul 2009, 03:16
Género:
Edad: 40

3.0.x Actualizaciones de estilo [para la version 3.0.10]  Tema Solucionado

#1

Mensaje por nextgen »

Es política del equipo de Estilos en aprobar los estilos de phpBB 3.0 sólo si son compatibles con la última versión de phpBB 3.0.

A continuación se presentan cambios en la plantilla (basadas en el estilo por defecto prosilver) del cual tendrá que hacer los cambios a los archivos, plantillas y más, si eres diseñador de algún estilo, o si eres un usuario que sólo quiere hacer los cambios por ti mismo. Si está utilizando el estilo por defecto phpBB para tu foro y no has hecho ninguna modificacion en la plantilla, esto no te afecta.

----- [Archivos a cambiar para 3.0.10 a partir de 3.0.9] --------------------------
phpBB 3.0.9 corrige errores de estilo en varios archivos existentes. Los autores de estilo puede haber notado y corregido muchos de los errores en su propio estilo antes de esta actualización, pero las correcciones y adiciones a continuación son necesarias para todas las presentaciones de nuevos estilos para nuestra base de datos(Titania)

Ten en cuenta que la versión completa de los archivos modificados (incluidos los de subsilver2) se puede descargar en la página de descargas phpBB.

Archivos del Prosilver afectados.

styles/prosilver/template/editor.js
styles/prosilver/template/forum_fn.js
styles/prosilver/template/jumpbox.html
styles/prosilver/template/mcp_approve.html
styles/prosilver/template/mcp_front.html
styles/prosilver/template/mcp_notes_user.html
styles/prosilver/template/mcp_post.html
styles/prosilver/template/memberlist_body.html
styles/prosilver/template/memberlist_view.html
styles/prosilver/template/message_body.html
styles/prosilver/template/overall_header.html
styles/prosilver/template/posting_buttons.html
styles/prosilver/template/ucp_groups_manage.html
styles/prosilver/template/ucp_pm_viewmessage_print.html
styles/prosilver/template/viewtopic_body.html
styles/prosilver/theme/bidi.css
styles/prosilver/theme/buttons.css
styles/prosilver/theme/common.css
styles/prosilver/theme/content.css
styles/prosilver/theme/cp.css
styles/prosilver/theme/forms.css
styles/prosilver/theme/links.css
styles/prosilver/theme/print.css
styles/prosilver/theme/stylesheet.css
styles/prosilver/theme/tweaks.css


Edición de los archivos Javascript

Código: Seleccionar todo

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/editor.js

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 149
       }
       if (spaces)
       {
          text = ' ' + text + ' ';
       }

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 154
       
       if (!isNaN(textarea.selectionStart))

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #

       // Since IE9, IE also has textarea.selectionStart, but it still needs to be treated the old way.
       // Therefore we simply add a !is_ie here until IE fixes the text-selection completely.
       if (!isNaN(textarea.selectionStart) && !is_ie)

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 216
       if (window.getSelection)
       {
          theSelection = window.getSelection().toString();
       }
       else if (document.getSelection)

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
       // IE9 must use the document.selection method but has the *.getSelection so we just force no IE
       if (window.getSelection && !is_ie)
       {
          theSelection = window.getSelection().toString();
       }
       else if (document.getSelection && !is_ie)

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/forum_fn.js

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 198
    function selectCode(a)
    {
       // Get ID of code block
       var e = a.parentNode.parentNode.getElementsByTagName('CODE')[0];


    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 203
       // Not IE

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
       // Not IE and IE9+
Edición de las plantillas:

Código: Seleccionar todo

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/jumpbox.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 8
       <form method="post" id="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(document.jumpbox.f.value == -1){return false;}">

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
       <form method="post" id="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(this.f.value == -1){return false;}">

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/mcp_approve.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 6
          <!-- IF ADDITIONAL_MSG --><p>{ADDITIONAL_MSG}</p><!-- ENDIF -->

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
          <!-- IF ADDITIONAL_MSG --><p class="error">{ADDITIONAL_MSG}</p><!-- ENDIF -->

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/mcp_front.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 26
             <!-- BEGIN unapproved -->
             <li class="row<!-- IF unapproved.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
                <dl>
                   <dt>
                      <a href="{unapproved.U_POST_DETAILS}" class="topictitle">{unapproved.SUBJECT}</a> {unapproved.ATTACH_ICON_IMG}<br />

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 31
                      <!-- IF report.PAGINATION --><strong class="pagination"><span>{report.PAGINATION}</span></strong><!-- ENDIF -->

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    # Just remove/delete the lines (replacing with an empty line)


    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/mcp_notes_user.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 76
          <!-- IF S_CLEAR_ALLOWED --><td width="5%" align="center"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
          <!-- IF S_CLEAR_ALLOWED --><td style="width: 5%; text-align: center;"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/mcp_post.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 72
             <form method="post" id="mcp_approve" action="{U_APPROVE_ACTION}">

             <p class="rules">
                <input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" /> &nbsp;
                <input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" />

    #
    #-----[ AFTER, ADD ]---------------------------------------------
    #
                <!-- IF not S_FIRST_POST --><input type="hidden" name="mode" value="unapproved_posts" /><!-- ENDIF -->

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/memberlist_body.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 32
                <strong style="font-size: 0.95em;"><a href="{S_MODE_ACTION}&first_char=">{L_ALL}</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=a#memberlist">A</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=b#memberlist">B</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=c#memberlist">C</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=d#memberlist">D</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=e#memberlist">E</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=f#memberlist">F</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=g#memberlist">G</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=h#memberlist">H</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=i#memberlist">I</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=j#memberlist">J</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=k#memberlist">K</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=l#memberlist">L</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=m#memberlist">M</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=n#memberlist">N</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=o#memberlist">O</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=p#memberlist">P</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=q#memberlist">Q</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=r#memberlist">R</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=s#memberlist">S</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=t#memberlist">T</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=u#memberlist">U</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=v#memberlist">V</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=w#memberlist">W</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=x#memberlist">X</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=y#memberlist">Y</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=z#memberlist">Z</a>&nbsp;
                <a href="{S_MODE_ACTION}&first_char=other">#</a></strong>

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
                <strong style="font-size: 0.95em;">
                <!-- BEGIN first_char -->
                   <a href="{first_char.U_SORT}">{first_char.DESC}</a>&nbsp;
                <!-- END first_char -->
                </strong>

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/memberlist_view.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 26
          <!-- IF AGE --><dt>{L_AGE}:</dt> <dd>{AGE}</dd><!-- ENDIF -->

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
          <!-- IF AGE !== '' --><dt>{L_AGE}:</dt> <dd>{AGE}</dd><!-- ENDIF -->

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 87
                <dt>{L_ACTIVE_IN_FORUM}:</dt> <dd><!-- IF ACTIVE_FORUM --><strong><a href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></strong><br />({ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>
                <dt>{L_ACTIVE_IN_TOPIC}:</dt> <dd><!-- IF ACTIVE_TOPIC --><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
                <dt>{L_ACTIVE_IN_FORUM}:</dt> <dd><!-- IF ACTIVE_FORUM != '' --><strong><a href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></strong><br />({ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>
                <dt>{L_ACTIVE_IN_TOPIC}:</dt> <dd><!-- IF ACTIVE_TOPIC != '' --><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/message_body.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    <!-- INCLUDE overall_header.html -->

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    <!-- IF S_SIMPLE_MESSAGE -->
       <!-- INCLUDE simple_header.html -->
    <!-- ELSE -->
       <!-- INCLUDE overall_header.html -->
    <!-- ENDIF -->

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 10
       <p>{MESSAGE_TEXT}</p>
       <!-- IF SCRIPT_NAME == "search" and not S_BOARD_DISABLED and not S_NO_SEARCH and L_RETURN_TO_SEARCH_ADV --><p><a href="{U_SEARCH}" class="{S_CONTENT_FLOW_BEGIN}">{L_RETURN_TO_SEARCH_ADV}</a></p><!-- ENDIF -->
       <span class="corners-bottom"><span></span></span></div>
    </div>


    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 15
    <!-- INCLUDE overall_footer.html -->
    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    <!-- IF S_SIMPLE_MESSAGE -->
       <!-- INCLUDE simple_footer.html -->
    <!-- ELSE -->
       <!-- INCLUDE overall_footer.html -->
    <!-- ENDIF -->

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/overall_header.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 66
       {
          for (var i = 0; i < onload_functions.length; i++)
          {
             eval(onload_functions[i]);
          }

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 71
       }

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
       };

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 74
       {
          for (var i = 0; i < onunload_functions.length; i++)
          {
             eval(onunload_functions[i]);
          }

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 79
       }

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
       };

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/posting_buttons.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 23
          p: '{LA_BBCODE_P_HELP}',
          w: '{LA_BBCODE_W_HELP}',
          a: '{LA_BBCODE_A_HELP}',
          s: '{LA_BBCODE_S_HELP}',
          f: '{LA_BBCODE_F_HELP}',

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 28
          e: '{LA_BBCODE_E_HELP}',

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
          y: '{LA_BBCODE_Y_HELP}',

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 77
       <input type="button" class="button2" accesskey="y" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
       <input type="button" class="button2" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/ucp_groups_manage.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 141
          <tr>
             <td class="bg1" colspan="5">{L_GROUPS_NO_MEMBERS}</td>

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
          <table class="table1" cellspacing="1">
          <thead>
          <tr>
             <th class="name">{L_MEMBERS}</th>
          </tr>
          </thead>
          <tbody>
          <tr>
             <td class="bg1">{L_GROUPS_NO_MEMBERS}</td>

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/ucp_pm_viewmessage_print.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
    <meta http-equiv="content-style-type" content="text/css" />
    <meta http-equiv="content-language" content="{S_USER_LANG}" />
    <title>{SITENAME} :: {PAGE_TITLE}</title>

    <style type="text/css">
    /* <![CDATA[ */
    body {
       font-family: Verdana,serif;
       font-size: 10pt;
    }

    td {
       font-family: Verdana,serif;
       font-size: 10pt;
       line-height: 150%;
    }

    .code, .quote {
       font-size: smaller;
       border: black solid 1px;
    }

    .forum {
       font-family: Arial,Helvetica,sans-serif;
       font-weight: bold;
       font-size: 18pt;
    }

    .topic {
       font-family: Arial,Helvetica,sans-serif;
       font-size: 14pt;
       font-weight: bold;
    }

    .gensmall {
       font-size: 8pt;
    }

    hr {
       color: #888888;
       height: 3px;
       border-style: solid;
    }

    hr.sep   {
       color: #AAAAAA;
       height: 1px;
       border-style: dashed;
    }
    /* ]]> */
    </style>

    </head>
    <body>

    <table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">
    <tr>
       <td colspan="2" align="center"><span class="forum">{SITENAME}</span><br /><span class="gensmall">{L_PRIVATE_MESSAGING}</a></span></td>
    </tr>
    <tr>
       <td colspan="2"><br /></td>
    </tr>
    <tr>
       <td><span class="topic">{SUBJECT}</span><br /></td>
       <td align="right" valign="bottom"><span class="gensmall">{PAGE_NUMBER}</span></td>
    </tr>
    </table>

    <hr width="85%" />

    <table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">
    <tr>
       <td width="10%" nowrap="nowrap">{L_PM_FROM}:&nbsp;</td>
       <td><strong>{MESSAGE_AUTHOR}</strong> [ {SENT_DATE} ]</td>
    </tr>

    <!-- IF S_TO_RECIPIENT -->
       <tr>
          <td width="10%" nowrap="nowrap">{L_TO}:</td>
          <td>
          <!-- BEGIN to_recipient -->
             <span<!-- IF to_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->>{to_recipient.NAME}</span>&nbsp;
          <!-- END to_recipient -->
          </td>
       </tr>
    <!-- ENDIF -->

    <!-- IF S_BCC_RECIPIENT -->
       <tr>
          <td width="10%" nowrap="nowrap">{L_BCC}:</td>
          <td>
          <!-- BEGIN bcc_recipient -->
             <!-- IF bcc_recipient.COLOUR --><span style="color:{bcc_recipient.COLOUR}"><!-- ELSE --><span<!-- IF bcc_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->><!-- ENDIF -->{bcc_recipient.NAME}</span>&nbsp;
          <!-- END bcc_recipient -->
          </td>
       </tr>
    <!-- ENDIF -->
    <tr>
       <td colspan="2"><hr class="sep" />{MESSAGE}</td>
    </tr>
    </table>

    <hr width="85%" />

    <table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">
    <tr>
       <td><span class="gensmall">{PAGE_NUMBER}</span></td>
       <td align="{S_CONTENT_FLOW_END}"><span class="gensmall">{S_TIMEZONE}</span></td>
    </tr>
    <tr>
       <td colspan="2" align="center"><span class="gensmall">Powered by phpBB&reg; Forum Software &copy; phpBB Group<br />http://www.phpbb.com/</span></td>
    </tr>
    </table>

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #

    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
    <meta http-equiv="content-style-type" content="text/css" />
    <meta http-equiv="content-language" content="{S_USER_LANG}" />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="resource-type" content="document" />
    <meta name="distribution" content="global" />
    <meta name="keywords" content="" />
    <meta name="description" content="" />
    <meta name="robots" content="noindex" />
    {META}
    <title>{SITENAME} &bull; {PAGE_TITLE}</title>

    <link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" />
    </head>

    <body id="phpbb">
    <div id="wrap">
       <a id="top" name="top" accesskey="t"></a>

       <div id="page-header">
          <h1>{SITENAME}</h1>
          <p>{SITE_DESCRIPTION}<br /><a href="{U_FORUM}">{U_FORUM}</a></p>

          <h2>{TOPIC_TITLE}</h2>
          <p><a href="{U_TOPIC}">{U_TOPIC}</a></p>
       </div>

       <div id="page-body">
          <div class="page-number">{PAGE_NUMBER}</div>
             <div class="post">
                <h3>{SUBJECT}</h3>
                <div class="date">{L_SENT_AT} <strong>{SENT_DATE}</strong></div>
                <div class="author">{L_PM_FROM} <strong>{MESSAGE_AUTHOR}</strong></div>
                <!-- IF S_TO_RECIPIENT -->
                   <div class="author">{L_TO} <strong><!-- BEGIN to_recipient -->{to_recipient.NAME}&nbsp;<!-- END to_recipient --></strong></div>
                <!-- ENDIF -->
                <!-- IF S_BCC_RECIPIENT -->
                   <div class="author">{L_BCC} <strong><!-- BEGIN bcc_recipient -->{bcc_recipient.NAME}&nbsp;<!-- END bcc_recipient --></strong></div>
                <!-- ENDIF -->
                <hr />
                <div class="content">{MESSAGE}</div>
             </div>
             <hr />
       </div>

       <div id="page-footer">
          <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
          <div class="copyright">Powered by phpBB&reg; Forum Software &copy; phpBB Group<br />http://www.phpbb.com/</div>
       </div>
    </div>

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/template/viewtopic_body.html

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 2
    <!-- IF MODERATORS or U_MCP -->
       <p>
          <!-- IF MODERATORS -->
             <strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS}
          <!-- ENDIF -->

       </p>

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    <!-- IF MODERATORS -->
    <p>
       <strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS}
    </p>
Ediciones del CSS:

Código: Seleccionar todo

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/bidi.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver RTL definitions

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* RTL definitions

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 517
    }

    /**
    * cp.css
    */

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 522
    /* proSilver Control Panel Styles

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Control Panel Styles

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/buttons.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver Button Styles

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Button Styles

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/common.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* General proSilver Markup Styles

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* General Markup Styles

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/content.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver Content Styles

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Content Styles

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/cp.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver Control Panel Styles

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Control Panel Styles

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/forms.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver Form Styles

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Form Styles

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 24
       cursor: pointer;
       vertical-align: middle;
       border: 1px solid #666666;
       padding: 1px;
       background-color: #FAFAFA;

    #
    #-----[ AFTER, ADD ]---------------------------------------------
    #
       font-size: 1em;

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/links.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver Link Styles

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Link Styles

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/print.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver Print Style Sheet
    -------------------------------------------------
       Author: subBlue  ( http://www.subBlue.com/ )
       Version: 25 August 2004

       Copyright 2004 phpBB Group
    -------------------------------------------------*/

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Print Style Sheet
    ---------------------------------------- */

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/stylesheet.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /*  phpBB 3.0 Style Sheet
        --------------------------------------------------------------
       Style name:      proSilver
       Based on style:   proSilver (this is the default phpBB 3 style)
       Original author:   subBlue ( http://www.subBlue.com/ )
       Modified by:      
       
       Copyright 2006 phpBB Group ( http://www.phpbb.com/ )

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /*  phpBB3 Style Sheet
        --------------------------------------------------------------
       Style name:         prosilver (the default phpBB 3.0.x style)
       Based on style:      
       Original author:   Tom Beddard ( http://www.subblue.com/ )
       Modified by:      phpBB Group ( http://www.phpbb.com/ )

    #
    #-----[ OPEN ]---------------------------------------------
    #
    styles/prosilver/theme/tweaks.css

    #
    #-----[ FIND ]---------------------------------------------
    # Around Line 1
    /* proSilver Style Sheet Tweaks

    #
    #-----[ REPLACE WITH ]---------------------------------------------
    #
    /* Style Sheet Tweaks

    #
    #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
    #
    # EoM
----- [Archivos a cambiar para 3.0.9 a partir de 3.0.8] --------------------------
phpBB 3.0.9 corrige errores de estilo en varios archivos existentes. Los autores de estilo puede haber notado y corregido muchos de los errores en su propio estilo antes de esta actualización, pero las correcciones y adiciones a continuación son necesarias para todas las presentaciones de nuevos estilos para nuestra base de datos(Titania)

Ten en cuenta que la versión completa de los archivos modificados (incluidos los de subsilver2) se puede descargar en la página de descargas phpBB.

styles/prosilver/template/attachment.html
styles/prosilver/template/login_body.html
styles/prosilver/template/mcp_post.html
styles/prosilver/template/mcp_topic.html
styles/prosilver/template/memberlist_im.html
styles/prosilver/template/memberlist_search.html
styles/prosilver/template/overall_footer.html
styles/prosilver/template/overall_header.html
styles/prosilver/template/posting_buttons.html
styles/prosilver/template/posting_smilies.html
styles/prosilver/template/simple_footer.html
styles/prosilver/template/simple_header.html
styles/prosilver/template/template.cfg
styles/prosilver/template/ucp_groups_manage.html
styles/prosilver/template/ucp_pm_viewmessage_print.html
styles/prosilver/template/viewforum_body.html
styles/prosilver/template/viewtopic_body.html
styles/prosilver/template/viewtopic_print.html
styles/prosilver/theme/colours.css
styles/prosilver/theme/cp.css
styles/prosilver/theme/forms.css
styles/prosilver/theme/links.css
styles/prosilver/theme/print.css
styles/prosilver/theme/theme.cfg
styles/prosilver/theme/tweaks.css
styles/prosilver/style.cfg


Edición en Plantillas:

Código: Seleccionar todo

Abrir: styles/prosilver/template/attachment.html

#-----[ Buscar ]---------------------------------------------

<object id="qtstream_{_file.ATTACH_ID}" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0" width="0" height="16">

#-----[ Reemplazar por ]---------------------------------------------

			<object id="qtstream_{_file.ATTACH_ID}" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0" width="320" height="285">

#-----[ Buscar ]---------------------------------------------

				<embed name="qtstream_{_file.ATTACH_ID}" src="{_file.U_DOWNLOAD_LINK}" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" width="0" height="16" type="video/quicktime" autoplay="false"></embed>

#-----[ Reemplazar Por ]---------------------------------------------

				<embed name="qtstream_{_file.ATTACH_ID}" src="{_file.U_DOWNLOAD_LINK}" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" width="320" height="285" type="video/quicktime" autoplay="false"></embed>

#---------------------------------------------

Abrir styles/prosilver/template/login_body.html

#-----[ Buscar ]---------------------------------------------

	onload_functions.push('document.getElementById("{USERNAME_CREDENTIAL}").focus();');

#-----[ Reemplazar por ]---------------------------------------------

	onload_functions.push('document.getElementById("<!-- IF S_ADMIN_AUTH -->{PASSWORD_CREDENTIAL}<!-- ELSE -->{USERNAME_CREDENTIAL}<!-- ENDIF -->").focus();');

#---------------------------------------------

Abrir styles/prosilver/template/mcp_post.html

#-----[ Buscar ]---------------------------------------------

				<input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" /> &nbsp;
				<input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" />

#-----[ Reemplazar por ]---------------------------------------------

				<input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" /> &nbsp;
				<input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" />

#---------------------------------------------

Abrir styles/prosilver/template/mcp_topic.html

#-----[ Buscar ]---------------------------------------------

			<a href="#minitabs" onclick="subPanels('merge-panel'); return false;"><span>{L_MERGE_TOPIC}</span></a>

#-----[ Reemplazar por ]---------------------------------------------

			<a href="#minitabs" onclick="subPanels('merge-panel'); return false;"><span>{L_MERGE_POSTS}</span></a>

#---------------------------------------------

Abrir styles/prosilver/template/memberlist_im.html

#-----[ Buscar ]---------------------------------------------

<dd><a href="http://www.aim.com/download.adp">{L_IM_DOWNLOAD_APP}</a> | <a href="http://aimexpress.oscar.aol.com/aimexpress/launch.adp?Brand=AIM">{L_IM_AIM_EXPRESS}</a></dd>

#-----[ Reemplazar por ]---------------------------------------------

			<dd><a href="http://www.aim.com">{L_IM_DOWNLOAD_APP}</a> | <a href="http://www.aim.com/products/express">{L_IM_AIM_EXPRESS}</a></dd>

#---------------------------------------------

Abrir: styles/prosilver/template/memberlist_search.html

#-----[ Buscar ]---------------------------------------------

<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>

#-----[ Reemplazar por ]---------------------------------------------

<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/forum_fn.js"></script>

#---------------------------------------------

Abrir: styles/prosilver/template/overall_footer.html

#-----[ Buscar ]---------------------------------------------

<!--
We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
	the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
	"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
	forums may be affected.

	The phpBB Group : 2006
//-->

	<div class="copyright">Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; 2000, 2002, 2005, 2007 phpBB Group

#-----[ Reemplazar por ]---------------------------------------------

	<div class="copyright">Powered by <a href="http://www.phpbb.com/">phpBB</a>&reg; Forum Software &copy; phpBB Group

#---------------------------------------------

Abrir: styles/prosilver/template/overall_header.html

#-----[ Buscar y Eliminar ]---------------------------------------------

<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />

#-----[ Buscar y Eliminar ]---------------------------------------------

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />

#-----[ Buscar ]---------------------------------------------

	<!-- IF S_USER_PM_POPUP -->
		if ({S_NEW_PM})
		{
			var url = '{UA_POPUP_PM}';
			window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
		}

#-----[ Reemplazar Por ]---------------------------------------------

	<!-- IF S_USER_PM_POPUP and S_NEW_PM -->
		var url = '{UA_POPUP_PM}';
		window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');

#-----[ Buscar ]---------------------------------------------

<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>

#-----[ Reemplazar Por ]---------------------------------------------

<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/forum_fn.js"></script>

#-----[ Buscar ]---------------------------------------------

				<form action="{U_SEARCH}" method="post" id="search">

#-----[ Reemplazar por ]---------------------------------------------

				<form action="{U_SEARCH}" method="get" id="search">

#---------------------------------------------

Abrir: styles/prosilver/template/posting_buttons.html

#-----[ Buscar ]---------------------------------------------

<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>

#-----[ Reemplazar por ]---------------------------------------------

<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/editor.js"></script>

#---------------------------------------------

Abrir: styles/prosilver/template/posting_smilies.html

#-----[ Buscar ]---------------------------------------------

<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>

#-----[ Reemplazar por ]---------------------------------------------

<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/editor.js"></script>

#---------------------------------------------

Abrir: styles/prosilver/template/simple_footer.html

#-----[ Buscar ]---------------------------------------------

<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
	the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
	"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
	forums may be affected.

	The phpBB Group : 2006	
//-->

<div class="copyright">Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; 2000, 2002, 2005, 2007 phpBB Group

#-----[ Reemplazar por ]---------------------------------------------

	<div class="copyright">Powered by <a href="http://www.phpbb.com/">phpBB</a>&reg; Forum Software &copy; phpBB Group

#---------------------------------------------

Abrir: styles/prosilver/template/simple_header.html

#-----[ Buscar y Eliminar ]---------------------------------------------

<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />

#-----[ Buscar ]---------------------------------------------

<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>

#-----[ Reemplazar por ]---------------------------------------------

<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/forum_fn.js"></script>

#---------------------------------------------

Abrir: styles/prosilver/template/template.cfg

#-----[ Buscar ]---------------------------------------------

version = 3.0.8

#-----[ Reemplazar por ]---------------------------------------------

version = 3.0.9

#---------------------------------------------

Abrir: styles/prosilver/template/ucp_groups_manage.html

#-----[ Buscar ]---------------------------------------------

			<!-- IF member.S_PENDING_SET -->

#-----[ Reemplazar por ]---------------------------------------------

			<!-- IF S_PENDING_SET -->

#---------------------------------------------

styles/prosilver/template/ucp_pm_viewmessage_print.html

#-----[ Buscar y Eliminar ]---------------------------------------------

<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
	the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
	"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
	forums may be affected.
	The phpBB Group : 2006
//-->

#-----[ Buscar ]---------------------------------------------

	<td colspan="2" align="center"><span class="gensmall">Powered by phpBB &copy; 2000, 2002, 2005, 2007 phpBB Group<br />http://www.phpbb.com/</span></td>

#-----[ Reemplazar por ]---------------------------------------------

	<td colspan="2" align="center"><span class="gensmall">Powered by phpBB&reg; Forum Software &copy; phpBB Group<br />http://www.phpbb.com/</span></td>

#---------------------------------------------

Abrir: styles/prosilver/template/viewforum_body.html

#-----[ Buscar ]---------------------------------------------

	<li class="rightside"><a href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a></li>

#-----[ Reemplazar por ]---------------------------------------------

	<li class="rightside"><a href="{U_MARK_FORUMS}">{L_MARK_SUBFORUMS_READ}</a></li>

#-----[ Buscar ]---------------------------------------------

			<form method="post" id="forum-search" action="{S_SEARCHBOX_ACTION}">

#-----[ Reemplazar por ]---------------------------------------------

			<form method="get" id="forum-search" action="{S_SEARCHBOX_ACTION}">

#-----[ Buscar ]---------------------------------------------

				<input type="hidden" value="{FORUM_ID}" name="fid[]" />

#-----[ Reemplazar por ]---------------------------------------------

				{S_SEARCH_LOCAL_HIDDEN_FIELDS}

#---------------------------------------------

Abrir: styles/prosilver/template/viewtopic_body.html

#-----[ Buscar ]---------------------------------------------

			<form method="post" id="topic-search" action="{S_SEARCHBOX_ACTION}">

#-----[ Reemplazar por ]---------------------------------------------

			<form method="get" id="topic-search" action="{S_SEARCHBOX_ACTION}">

#-----[ Buscar ]---------------------------------------------

				<input type="hidden" value="{TOPIC_ID}" name="t" />
				<input type="hidden" value="msgonly" name="sf" />

#-----[ Reemplazar por ]---------------------------------------------

				{S_SEARCH_LOCAL_HIDDEN_FIELDS}

#---------------------------------------------

Abrir: styles/prosilver/template/viewtopic_print.html

#-----[ Buscar y Eliminar ]---------------------------------------------

<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />

#-----[ Buscar y Eliminar ]---------------------------------------------

<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
	the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
	"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
	forums may be affected.
	The phpBB Group : 2006
//-->

#-----[ Buscar ]---------------------------------------------

		<div class="copyright">Powered by phpBB &copy; 2000, 2002, 2005, 2007 phpBB Group<br />http://www.phpbb.com/</div>

#-----[ Reemplazar por ]---------------------------------------------

		<div class="copyright">Powered by phpBB&reg; Forum Software &copy; phpBB Group<br />http://www.phpbb.com/</div>
#---------------------------------------------
Ediciones del CSS

Código: Seleccionar todo

Abrir: styles/prosilver/theme/colours.css

#-----[ Buscar ]---------------------------------------------

.pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {

#-----[ Reemplazar por ]---------------------------------------------

.pagination span a, .pagination span a:link, .pagination span a:visited {

#-----[ Despues Agregar esta Nueva Clase despues de } ]------------------

.pagination span a:active {
	color: #5C758C;
	background-color: #ECEDEE;
	border-color: #B4BAC0;
}

#-----[ Buscar ]---------------------------------------------

	border-bottom-color: #666666;

#-----[ Reemplazar por ]---------------------------------------------

	border-bottom-color: #5D8FBD;

#-----[ Buscar ]---------------------------------------------

.signature a, .signature a:visited, .signature a:active, .signature a:hover {

#-----[ Reemplazar por ]---------------------------------------------

.signature a, .signature a:visited, .signature a:hover, .signature a:active {

#-----[ Buscar ]---------------------------------------------

.postprofile a:link, .postprofile a:active, .postprofile a:visited, .postprofile dt.author a {

#-----[ Reemplazar por ]---------------------------------------------

.postprofile a:link, .postprofile a:visited, .postprofile dt.author a {

#-----[ Despues Agregar esta Nueva Clase despues de } ]---------------

.postprofile a:active {
	color: #105289;
}

#-----[ Buscar ]---------------------------------------------

	background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.gif");

#-----[ Reemplazar por ]---------------------------------------------

	background-image: url("{IMG_ICON_USER_ONLINE_SRC}");

#---------------------------------------------

Abrir styles/prosilver/theme/cp.css

#-----[ Buscar ]---------------------------------------------

	border: solid 3px transparent;
	border-width: 0 3px;

#-----[ Reemplazar por ]---------------------------------------------

	padding: 0 3px;

#-----[ Buscar ]---------------------------------------------

	border: solid 3px transparent;
	border-width: 0 3px;

#-----[ Reemplazar por ]---------------------------------------------

	padding: 0 3px;

#-----[ Buscar ]---------------------------------------------

.pmlist li.pm_marked_colour, .pm_marked_colour {

#-----[ Debajo agregar ]---------------------------------------------

	padding: 0;

#-----[ Buscar ]---------------------------------------------

.pmlist li.pm_replied_colour, .pm_replied_colour {

#-----[ Debajo agregar ]---------------------------------------------

	padding: 0;

#-----[ Buscar ]---------------------------------------------

.pmlist li.pm_friend_colour, .pm_friend_colour {

#-----[ Debajo agregar ]---------------------------------------------

	padding: 0;

#-----[ Buscar ]---------------------------------------------

.pmlist li.pm_foe_colour, .pm_foe_colour {

#-----[ Debajo agregar ]---------------------------------------------

	padding: 0;

#---------------------------------------------

Abrir: styles/prosilver/theme/forms.css

#-----[ Buscar ]---------------------------------------------

	width: 100%;

#-----[ Reemplazar por ]---------------------------------------------

	width: 450px;
	height: 270px;
	min-width: 100%;
	max-width: 100%;

#---------------------------------------------

Abrir: styles/prosilver/theme/links.css

#-----[ Buscar ]---------------------------------------------

.postlink:visited {
	color: #bdbdbd;
	border-bottom-style: dotted;
	border-bottom-color: #666666;
}

#-----[ Reemplazar por ]---------------------------------------------

/* .postlink:visited { color: #bdbdbd; } */

#-----[ Buscar ]---------------------------------------------

.signature a, .signature a:visited, .signature a:active, .signature a:hover {

#-----[ Reemplazar por ]---------------------------------------------

.signature a, .signature a:visited, .signature a:hover, .signature a:active {

#-----[ Buscar ]---------------------------------------------

.postprofile a:link, .postprofile a:active, .postprofile a:visited, .postprofile dt.author a {

#-----[ Reemplazar por ]---------------------------------------------

.postprofile a:link, .postprofile a:visited, .postprofile dt.author a {

#-----[ Despues Agregar esta Nueva Clase despues de } ]---------------

/* CSS spec requires a:link, a:visited, a:hover and a:active rules to be specified in this order. */
/* See http://www.phpbb.com/bugs/phpbb3/59685 */
.postprofile a:active {
	font-weight: bold;
	color: #898989;
	text-decoration: none;
}

#---------------------------------------------

Abrir: styles/prosilver/theme/print.css

#-----[ Buscar ]---------------------------------------------

.postbody a:link, .postbody a:visited, .postbody a:active, .postbody a:hover {

#-----[ Reemplazar por ]---------------------------------------------

.postbody a:link, .postbody a:visited, .postbody a:hover, .postbody a:active {

#-----[ Buscar ]---------------------------------------------

dl.codebox dt { display: none; }

#-----[ Reemplazar por ]---------------------------------------------

dl.codebox dt { display: none; }

#---------------------------------------------

Abrir: styles/prosilver/theme/theme.cfg

#-----[ Buscar ]---------------------------------------------

version = 3.0.8

#-----[ Reemplazar por ]---------------------------------------------

version = 3.0.9

#---------------------------------------------

Abrir: styles/prosilver/theme/tweaks.css

#-----[ Buscar ]---------------------------------------------

* html .forumbg table.table1 {
	margin: 0 -2px 0px -1px;
}

#-----[ Despúes agregar ]---------------------------------------------

/* Headerbar height fix for IE7 and below */

* html #site-description p {
	margin-bottom: 1.0em;
}

*:first-child+html #site-description p {
	margin-bottom: 1.0em;
}

#---------------------------------------------

Abrir: styles/prosilver/style.cfg

#-----[ Buscar ]---------------------------------------------

version = 3.0.8

#-----[ Reemplazar por ]---------------------------------------------

version = 3.0.9

#---------------------------------------------
Última edición por nextgen el 29 Oct 2011, 01:53, editado 5 veces en total.
Razón: Actualizado a la versión 3.0.10

Cerrado

Volver a “Soporte para Estilos phpBB 3.0.x”