cambios de index.template.php y index.ccs de smf rc2 a smf rc3

Started by kenet, May 08, 2010, 07:39:57 AM

Previous topic - Next topic

kenet

los cambios estan echo de RC2 a RC3

INDEX.TEMPLATE.PHP

buscar

// Version: 2.0 RC2; index

remplazar

// Version: 2.0 RC3; index

buscar

$settings['theme_version'] = '2.0 RC2';

remplazar

$settings['theme_version'] = '2.0 RC3';

buscar

<meta name="description" content="', $context['page_title_html_safe'], '" />
<meta name="keywords" content="', $context['meta_keywords'], '" />


remplazar

<meta name="description" content="', $context['page_title_html_safe'], '" />', !empty($context['meta_keywords']) ? '
<meta name="keywords" content="' . $context['meta_keywords'] . '" />' : '', '


buscar

// The ?rc2 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?rc2" />
<link rel="stylesheet" type="text/css" href="', $settings['default_theme_url'], '/css/print.css?rc2" media="print" />'
;

remplazar

// The ?rc3 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?rc3" />
<link rel="stylesheet" type="text/css" href="', $settings['default_theme_url'], '/css/print.css?rc3" media="print" />';


buscar

foreach (array('ie7', 'ie6', 'firefox', 'webkit') as $cssfix)

remplazar

foreach (array('ie7', 'ie6', 'webkit') as $cssfix)

buscar

<script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/script.js?rc2"></script>
<script type="text/javascript" src="', $settings['theme_url'], '/scripts/theme.js?rc2"></script>


remplazar

<script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/script.js?rc3"></script>
<script type="text/javascript" src="', $settings['theme_url'], '/scripts/theme.js?rc3"></script>


buscar

<a href="', $scripturl, '">', empty($settings['header_logo_url']) ? $context['forum_name'] : '<img src="' . $settings['header_logo_url'] . '" alt="' . $context['forum_name'] . '" />', '[/url]


remplazar

<a href="', $scripturl, '">', empty($context['header_logo_url_html_safe']) ? $context['forum_name'] : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />', '[/url]

buscar

// Reverse the linktree in right to left mode.
   if ($context['right_to_left'])
      $context['linktree'] = array_reverse($context['linktree'], true);


remplazar

la rc3 no trae nada, asi que si es una actuualizacion de archivos, borra esta zona del archivo rc2

buscar

// Don't show a separator for the last one (RTL mode)
      if ($link_num != count($context['linktree']) - 1 && $context['right_to_left'])
         echo '&#171;&nbsp;';


remplazar

la rc3 no trae nada, asi que si es una actuualizacion de archivos, borra esta zona del archivo rc2

buscar

if ($link_num != count($context['linktree']) - 1 && !$context['right_to_left'])
         echo '&nbsp;&#187;';


remplazar

if ($link_num != count($context['linktree']) - 1)
         echo ' &#187;';


buscar

$buttons[] = '<a ' . (isset($value['active']) ? 'class="active" ' : '') . 'href="' . $value['url'] . '" ' . (isset($value['custom']) ? $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span>[/url]';

remplazar

$buttons[] = '
            <li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . '' . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span>[/url]</li>';


buscar

<li>', implode('</li><li>', $buttons), '</li>

remplazar

',
            implode('', $buttons), '


Thomas Alva Edison dijo:

    "No fracasé, sólo descubrí 999 maneras de como no hacer una bombilla."


kenet

INDEX.CCS



buscar
font: 78%/130% verdana, Helvetica, sans-serif;
remplazar

font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;


buscar
/* use dark grey for the text, leaving black for headers etc */
body, td, th, tr
{
color: #444444;
}

remplazar

/* use dark grey for the text, leaving #000 for headers etc */
body, td, th, tr
{
color: #444;
}


buscar
/* We can style the different types of input buttons to be uniform thoughout different browsers and their colour themes.
.button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
.button_reset  - covers input[type=reset] and button[type=reset] thoughout all browsers
.input_check   - covers input[type=checkbox] thoughout all browsers
.input_radio   - covers input[type=radio] thoughout all browsers
.input_text    - covers input[type=text] thoughout all browsers
.input_file    - covers input[type=file] thoughout all browsers
*/

remplazar

/* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
.button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
.button_reset  - covers input[type=reset] and button[type=reset] throughout all browsers
.input_check   - covers input[type=checkbox] throughout all browsers
.input_radio   - covers input[type=radio] throughout all browsers
.input_text    - covers input[type=text] throughout all browsers
.input_file    - covers input[type=file] throughout all browsers
*/


buscar
input, button, select, textarea
{
font: 95%/115% verdana, Helvetica, sans-serif;
color: #000000;
background: #fff;
border: 1px solid #7f9db9;
padding: 2px;

remplazar

input, button, select, textarea
{
font: 95%/115% verdana, Helvetica, sans-serif;
color: #000;
background: #fff;
border: 1px solid #7f9db9;
padding: 2px;


buscar
input:hover, textarea:hover, button:hover, select:hover
{
border: solid 1px #454545;
}
.button_submit:hover, .button_reset:hover
{
border: 1px solid #aaa;
background: url(../images/theme/submit_bg.png) no-repeat 0 -218px #cde7ff;
}
input:focus, textarea:focus, button:focus, select:focus
{
border: solid 1px #454545;
}

remplazar

input:hover, textarea:hover, button:hover, select:hover
{
border: 1px solid #454545;
}
.button_submit:hover, .button_reset:hover
{
border: 1px solid #aaa;
background: url(../images/theme/submit_bg.png) no-repeat 0 -140px #cde7ff;
}
input:focus, textarea:focus, button:focus, select:focus
{
border: 1px solid #454545;
}


buscar
input.input_check, input.input_radio
{
border: none;
background: none;
}

agregar despues

h3.catbg input.input_check
{
margin: 9px 7px 0 7px;
}

/* Give disabled text input elements a different background color. */
input[disabled].input_text
{
background-color: #eee;
}


buscar
/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #666666;
background-color: #666666;
}

remplazar

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #ccc;
background-color: #ccc;
}


buscar
/* By default set the color on these tags as black. */
h1, h2, h3, h4, h5, h6
{
color: black;
font-size: 1em;
margin: 0;
padding: 0;
}

/* Fieldsets are used to group elements. */
fieldset
{
border: groove #fff 2px;
padding: 1em;
margin: 0 0 0.3em 0;
}

remplazar

/* By default set the color on these tags as #000. */
h1, h2, h3, h4, h5, h6
{
color: #000;
font-size: 1em;
margin: 0;
padding: 0;
}

/* Fieldsets are used to group elements. */
fieldset
{
border: 1px solid #cacdd3;
padding: 1em;
margin: 0 0 0.3em 0;
}


buscar
.flow_hidden
{
overflow: hidden;

agregar despues

}
.flow_hidden .windowbg, .flow_hidden .windowbg2
{
margin-top: 2px;


buscar
/* some common padding styles */
agregar antes

.double_height
{
line-height: 2em;
}


buscar
/* Some BBC related styles.
------------------------------------------------------- */

/* A quote, perhaps from another post. */
.quoteheader
{
color: #7a899c;
}
.codeheader, .quoteheader
{
font-size: 0.9em;
font-weight: bold;
padding-left: 5px;
}
blockquote, blockquote blockquote blockquote
{
font-size: 0.9em;
color: #000000;
line-height: 1.4em;
background: url(../images/theme/quote.png) 2px 2px no-repeat #D7DAEC;
border-top: solid 1px #000;
border-bottom: solid 1px #000;
padding: 1em 1em 1em 2em;
margin: 0.3em 0 0 0;
}
blockquote blockquote
{
background: #e7eAfC;
}

/* A code block - maybe even PHP ;). */
code
{
display: block;
font-family: "courier new", "times new roman", monospace;
font-size: x-small;
background: #eee;
border-top: solid 1px #000;
border-bottom: solid 1px #000;
line-height: 1.3em;
padding: 3px 1em;
overflow: auto;
white-space: pre;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}

remplazar

/* Some BBC related styles.
------------------------------------------------------- */

/* A quote, perhaps from another post. */
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
{
font-size: x-small;
color: #000;
line-height: 1.4em;
background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat;
border-top: 2px solid #99A;
border-bottom: 2px solid #99A;
padding: 1.1em 1.4em;
margin: 0.1em 0 0.3em 0;
overflow: auto;
}

/* Alterate blockquote stylings */
blockquote.bbc_standard_quote
{
background-color: #d7daec;
}
blockquote.bbc_alternate_quote
{
background-color: #e7eafc;
}

/* A code block - maybe PHP ;). */
code.bbc_code
{
display: block;
font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
font-size: x-small;
background: #eef;
border-top: 2px solid #999;
border-bottom: 2px solid #999;
line-height: 1.5em;
padding: 3px 1em;
overflow: auto;
white-space: pre;
/* Show a scrollbar after about 24 lines. */
max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.codeheader, .quoteheader
{
color: #666;
font-size: x-small;
font-weight: bold;
padding: 0 0.3em;
}


buscar
/* Styling for BBC tags */
añadir despues

.bbc_link:link, .bbc_link:visited
{
color: #778899;
}


buscar
/* Generally, those [?] icons.  This makes your cursor a help icon. */
añadir antes

.bbc_list
{
margin: 0 auto;
}
.bbc_tt
{
font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
}


buscar
/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}

remplazar

NADA,SOLO BORRALO

buscar
/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: yellow;
font-weight: bold;
color: black;
}

/* A more discreet highlight color, for selected membergroups etc. */
.highlight2
{
background-color: #B3F4B0;
color: black;
}

/* Generic, mostly colour-related, classes.
------------------------------------------------------- */

.titlebg, .titlebg2, thead tr.titlebg th, tr.titlebg td, tr.titlebg2 td
{
color: black;
font-family: arial, helvetica, sans-serif;
font-size: 1.1em;
font-weight: bold;
background: url(../images/theme/main_block.png) no-repeat -10px -120px;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
color: white;
font-family: arial, helvetica, sans-serif;
font-size: 1.1em;
font-weight: bold;
background: url(../images/theme/main_block.png) no-repeat -10px -160px;
}

/* adjust the table versions of headers */
tr.titlebg td, tr.titlebg2 td
{
padding: 6px;
}
tr.catbg td, tr.catbg2 td, td.catbg, td.catbg2, tr.catbg th, tr.catbg2 th, th.catbg, th.catbg2
{
padding: 6px;
}
tr.titlebg td a, tr.titlebg2 td a
{
color: black;
}
tr.catbg td a, tr.catbg2 td a, .catbg a
{
color: white;
}
tr.catbg th.smalltext
{
font-size: 0.9em;
}
tr.titlebg th.smalltext, thead tr.titlebg th a:link, thead tr.titlebg th a:visited
{
color: black;
font-size: 0.95em;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body
{
color: #000000;
background-color: #e7eaef;
}
.windowbg2
{
color: #000000;
background-color: #f0f4f7;
}
.windowbg3
{
color: #000000;
background-color: #cacdd3;
}

remplazar

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: #ff0;
font-weight: bold;
color: #000 !important;
}

/* A more discreet highlight color, for selected membergroups etc. */
.highlight2
{
background-color: #D1E1EF;
color: #000 !important;
}

/* Generic, mostly color-related, classes.
------------------------------------------------------- */

.titlebg, .titlebg2, thead tr.titlebg th, tr.titlebg td, tr.titlebg2 td
{
color: #000;
font-family: arial, helvetica, sans-serif;
font-size: 1.1em;
font-weight: bold;
background: url(../images/theme/main_block.png) no-repeat -10px -120px;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
color: #fff;
font-family: arial, helvetica, sans-serif;
font-size: 1.1em;
font-weight: bold;
background: url(../images/theme/main_block.png) no-repeat -10px -160px;
}

/* adjust the table versions of headers */
tr.titlebg td, tr.titlebg2 td
{
padding: 6px;
}
tr.catbg td, tr.catbg2 td, td.catbg, td.catbg2, tr.catbg th, tr.catbg2 th, th.catbg, th.catbg2
{
padding: 6px;
}
tr.titlebg td a, tr.titlebg2 td a
{
color: #000;
}
tr.catbg td a, tr.catbg2 td a, .catbg a
{
color: #fff;
}
tr.catbg th.smalltext
{
font-size: 0.9em;
}
tr.titlebg th.smalltext, thead tr.titlebg th a:link, thead tr.titlebg th a:visited
{
color: #000;
font-size: 0.95em;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body
{
color: #000;
background-color: #e7eaef;
}
.windowbg2
{
color: #000;
background-color: #f0f4f7;
}
.windowbg3
{
color: #000;
background-color: #cacdd3;
}


buscar
/* GenericList */
.additional_row
{
float: right;
padding: 0.5em 0 0.5em 2em;
}
.additional_row input
{
margin-left: 1em;

remplazar

/* GenericList */
.additional_row
{
padding: 0.5em 0 0.5em 0;


buscar
/* Colors for background of posts requiring approval */
.approvebg
{
color: #000000;
background-color: #ffeaea;
}
.approvebg2
{
color: #000000;
background-color: #fff2f2;
}

/* Color for background of *topics* requiring approval */
.approvetbg
{
color: #000000;
background-color: #e4a17c;
}
.approvetbg2
{
color: #000000;
background-color: #f3bd9f;
}

remplazar

/* Colors for background of posts requiring approval */
.approvebg
{
color: #000;
background-color: #ffeaea;
}
.approvebg2
{
color: #000;
background-color: #fff2f2;
}

/* Color for background of *topics* requiring approval */
.approvetbg
{
color: #000;
background-color: #e4a17c;
}
.approvetbg2
{
color: #000;
background-color: #f3bd9f;
}


buscar
/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
width: 98%;
overflow: auto;
clear: right;
padding: 1em 0 3px 0;
border-top: solid 1px #aaa;
line-height: 1.4em;
font-size: 0.85em;
}
.custom_fields_above_signature
{
width: 98%;
clear: right;
padding: 1em 0 3px 0;
border-top: solid 1px #aaa;
line-height: 1.4em;
font-size: 0.85em;
}

remplazar

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
width: 98%;
overflow: auto;
clear: right;
padding: 1em 0 3px 0;
border-top: 1px solid #aaa;
line-height: 1.4em;
font-size: 0.85em;
}
.custom_fields_above_signature
{
width: 98%;
clear: right;
padding: 1em 0 3px 0;
border-top: 1px solid #aaa;
line-height: 1.4em;
font-size: 0.85em;
}



buscar
/* Calendar colors for birthdays, events and holidays */
.birthday
{
color: #920AC4;
}

remplazar

/* Calendar colors for birthdays, events and holidays */
.birthday
{
color: #920ac4;
}



buscar
.warn_moderate
{
color: #FFA500;
}

remplazar

.warn_moderate
{
color: #ffa500;
}



buscar
/* a descriptive style */
.description, .plainbox
{
padding: 0.5em 1em 1em 1em;
font-size: 0.9em;
line-height: 1.4em;
border: solid 1px #bbb;
background: #f5f5f0;
margin: 0 0 1em 0;
}
/* an informative style */
.information
{
padding: 0.5em 1em 1em 1em;
font-size: 0.9em;
line-height: 1.3em;
border: solid 1px #bbb;
background: #f0f6f0;
margin: 0.3em 0 1em 0;
}
.information p
{
padding: 1em;
margin: 0;
}

remplazar

/* a descriptive style */
.description, .plainbox
{
padding: 0.5em 1em;
font-size: 0.9em;
line-height: 1.4em;
border: 1px solid #bbb;
background: #f5f5f0;
margin: 0 0 1em 0;
}

/* an informative style */
.information
{
padding: 0.5em 1em;
font-size: 0.9em;
line-height: 1.3em;
border: 1px solid #bbb;
background: #f0f6f0;
margin: 0.3em 0 1em 0;
}
.information p
{
padding: 1em;
margin: 0;
}
p.para2
{
padding: 1em 0 3.5em 0;
margin: 0;
}



buscar
table.table_grid td
{
padding: 3px;
border-bottom: solid 1px white;
border-right: solid 1px white;
}

remplazar

table.table_grid td
{
padding: 3px;
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
}


buscar
h3.catbg a, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a
{
color: white;
}

remplazar

h3.catbg a, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a
{
color: #fff;
}


buscar
h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
{
color: black;
}
h3.titlebg a:hover, h4.titlebg a:hover
{
color: #FFA500;
text-decoration: none;
}
h3.catbg img.icon, h4.titlebg img.icon
{

vertical-align: middle;
margin: -2px 5px 0 0;
}

remplazar

h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
{
color: #000;
}
h3.titlebg a:hover, h4.titlebg a:hover
{
color: #ffa500;
text-decoration: none;
}
h3.catbg img.icon, h4.titlebg img.icon
{
vertical-align: middle;
margin: -2px 5px 0 0;
}
h4.catbg a.toggle img
{
vertical-align: middle;
margin: -2px 5px 0 5px;
}


buscar
h4.titlebg img.icon
{
float: left;
margin: 5px 8px 0 0;
}

agregar despues

div.cat_bar
{
background: url(../images/theme/main_block.png) no-repeat 0 -160px;
padding-left: 9px;
overflow: hidden;
}
div.title_bar
{
background: url(../images/theme/main_block.png) no-repeat 0 -200px;
padding-left: 9px;
overflow: hidden;
}
div.title_barIC
{
background: url(../images/theme/main_block.png) no-repeat 0 -120px;
padding-left: 9px;
overflow: hidden;
}


buscar
/* The half-round header bars for some tables. */
.table_grid thead th
{
height: 28px;
color: white;
font-family: arial, helvetica, sans-serif;
font-size: 1.1em;
font-weight: bold;
background: url(../images/theme/main_block.png) no-repeat -10px -160px;
}
.table_grid thead th a:link, .table_grid thead th a:visited
{
color: white;
}
.table_grid th.first_th
{
background: url(../images/theme/main_block.png) no-repeat 0 -160px;
}
.table_grid th.last_th
{
background: url(../images/theme/main_block.png) no-repeat 100% -160px;
}

remplazar

/* The half-round header bars for some tables. */
.table_grid thead th
{
height: 28px;
color: #fff;
font-family: arial, helvetica, sans-serif;
font-size: 1.1em;
font-weight: bold;
background: url(../images/theme/main_block.png) no-repeat -10px -160px;
}
.table_grid thead th a:link, .table_grid thead th a:visited
{
color: #fff;
}
.table_grid th.first_th
{
background: url(../images/theme/main_block.png) no-repeat 0 -160px;
}
.table_grid th.last_th
{
background: url(../images/theme/main_block.png) no-repeat 100% -160px;
}
.table_grid th.last_th input
{
margin: 0 2px;
}



buscar
.postbg { border-left: 1px solid #7F7F7F; border-right: 1px solid #7F7F7F;}
remplazar

.postbg
{
border-left: 1px solid #7f7f7f;
border-right: 1px solid #7f7f7f;
}


buscar
/* The main content area.
------------------------------------------------------- */
.content
{
padding: 1em 1.5em;
margin: 0;
border: none;
}

remplazar

/* The main content area.
------------------------------------------------------- */
.content
{
padding: 0.5em 1.2em;
margin: 0;
border: none;
}


buscar
/* Styles used by the auto suggest control.
------------------------------------------------------- */
.auto_suggest_div
{
border: 1px solid black;
position: absolute;
visibility: hidden;
}
.auto_suggest_item
{
background-color: #DDDDDD;
}
.auto_suggest_item_hover
{
background-color: #888888;
cursor: pointer;
color: #EEEEEE;
}

remplazar

/* Styles used by the auto suggest control.
------------------------------------------------------- */
.auto_suggest_div
{
border: 1px solid #000;
position: absolute;
visibility: hidden;
}
.auto_suggest_item
{
background-color: #ddd;
}
.auto_suggest_item_hover
{
background-color: #888;
cursor: pointer;
color: #eee;
}


buscar
.dropmenu a
{
display: block;
color: #000000;
text-decoration: none;
}

remplazar

.dropmenu a
{
display: block;
color: #000;
text-decoration: none;
}


buscar
.dropmenu li ul
{
z-index: 90;
display: none;
position: absolute;
width: 19.2em;
font-weight: normal;
border-bottom: solid 1px #999;
background: url(../images/theme/menu_gfx.png) 0 -100px no-repeat;
padding: 7px 0 0 0;
}
.dropmenu li li
{
width: 19em;
margin: 0;
border-left: solid 1px #999;
border-right: solid 1px #999;
}

remplazar

.dropmenu li ul
{
z-index: 90;
display: none;
position: absolute;
width: 19.2em;
font-weight: normal;
border-bottom: 1px solid #999;
background: url(../images/theme/menu_gfx.png) 0 -100px no-repeat;
padding: 7px 0 0 0;
}
.dropmenu li li
{
width: 19em;
margin: 0;
border-left: 1px solid #999;
border-right: 1px solid #999;
}



buscar
/* the active button */
.dropmenu li a.active
{
background: url(../images/theme/menu_gfx.png) no-repeat 100% 0;
color: #ffffff;
font-weight: bold;
}
.dropmenu li a.active span.firstlevel
{
background: url(../images/theme/menu_gfx.png) no-repeat 0 0;
}
/* the hover effects */
.dropmenu li a.firstlevel:hover
{
background: url(../images/theme/menu_gfx.png) no-repeat 100% -30px;
color: #ffffff;
cursor: pointer;
text-decoration: none;
}
.dropmenu li a.firstlevel:hover span.firstlevel
{
background: url(../images/theme/menu_gfx.png) no-repeat 0 -30px;
}
/* the hover effects on level2 and 3*/
.dropmenu li li a:hover
{
background: #D4DBE4;
color: #000;
text-decoration: none;
}

remplazar

/* the hover effects */
.dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel
{
background: url(../images/theme/menu_gfx.png) no-repeat 100% -30px;
color: #fff;
cursor: pointer;
text-decoration: none;
}
.dropmenu li a.firstlevel:hover span.firstlevel, .dropmenu li:hover a.firstlevel span.firstlevel
{
background: url(../images/theme/menu_gfx.png) no-repeat 0 -30px;
}
/* the hover effects on level2 and 3*/
.dropmenu li li a:hover, .dropmenu li li:hover>a
{
background: #d4dbe4;
color: #000;
text-decoration: none;
}



buscar
.buttonlist ul li a
{
display: block;
font-size: 0.8em;
color: black;
background: url(../images/theme/menu_gfx.png) no-repeat 0 -60px;
padding: 0;
margin-left: 12px;
text-transform: uppercase;
cursor: pointer;

remplazar

.buttonlist ul li a
{
display: block;
font-size: 0.8em;
color: #000;
background: url(../images/theme/menu_gfx.png) no-repeat 0 -60px;
padding: 0;
margin-left: 12px;
text-transform: uppercase;
cursor: pointer;



buscar
/* the active one */
.buttonlist ul li a.active
{
background: url(../images/theme/menu_gfx.png) no-repeat 0 -30px;
color: white;
font-weight: bold;

remplazar

/* the active one */
.buttonlist ul li a.active
{
background: url(../images/theme/menu_gfx.png) no-repeat 0 -30px;
color: #fff;
font-weight: bold;
}



buscar
#header div.frame
{
background: url(../images/theme/main_block.png) no-repeat 100% -240px;
display: block;
padding: 5px 20px 0 0px;
}

remplazar

#header div.frame
{
background: url(../images/theme/main_block.png) no-repeat 100% -240px;
display: block;
padding: 5px 20px 0 0;
}


buscar
#content_section div.frame
{
background: url(../images/theme/frame_repeat.png) repeat-y right;
display: block;
padding: 0px 20px 0px 0;
}

remplazar

#content_section div.frame
{
background: url(../images/theme/frame_repeat.png) repeat-y top right;
display: block;
padding: 0 20px 0 0;
}


buscar
#guest_form .info
agregar antes

#guest_form
{
overflow: hidden;
}


buscar
/* the navigation list */
.navigate_section
{
overflow: hidden;
margin: 0;
padding: 0.5em;
margin: 1em 0 0 0;
}

remplazar

/* The navigation list (i.e. linktree) */
.navigate_section
{
padding: 0.5em;
margin: 1em 0 0 0;
}


buscar
.navigate_section ul
{
display: block;
margin: 0;
font-size: 0.9em;
padding: 1em 0 0.5em 0;
border-top: solid #ccc 1px;
}
.navigate_section ul li
{
display: inline;
font-size: 0.95em;
}

remplazar

.navigate_section ul
{
display: block;
margin: 0;
font-size: 0.9em;
padding: 1em 0 0.5em 0;
border-top: 1px solid #ccc;
overflow: hidden;
list-style: none;
clear: both;
width: 100%;
}
.navigate_section ul li
{
float: left;
padding: 0 0.5em 0 0;
font-size: 0.95em;
}


buscar
/* the footer wih copyright links etc. */
remplazar

/* The footer wih copyright links etc. */

buscar
table.table_list td,table.table_list th
{
padding: 5px;
}
table.table_list tbody.header td
{

remplazar

table.table_list td, table.table_list th
{
padding: 5px;
}
table.table_list tbody.header td
{
padding: 0;
}


buscar
/* the newsfader */
#smfFadeScroller
{
text-align: center;
padding: 0 2em;
overflow: auto;
margin: 1em 0;
}

remplazar

/* the newsfader */
#smfFadeScroller
{
text-align: center;
padding: 0 2em;
overflow: auto;
margin: 1em 0;
color: #575757;
}


buscar
/* Styles for the info centre on the board index
remplazar

/* Styles for the info center on the board index

buscar
#upshrinkHeaderIC p.last
{
margin: 0;
padding: 0.5em;
border-top: dotted 2px #bbb;
}

remplazar

#upshrinkHeaderIC p.last
{
margin: 0;
padding: 0.5em;
border-top: 2px dotted #bbb;
}



buscar
#upshrinkHeaderIC p.pminfo
{
margin: 0;
padding: 0.5em;
}
img#upshrink_ic, img#newsupshrink
{
float: right;
margin: 10px 5px 0 0;
}
table.table_list a.unreadlink,table.table_list a.collapse
{
float: right;
}
table.table_list a.collapse
{
margin: 10px 5px 0 1em;
}

remplazar

NADA, SOLO BORRALO


buscar
.lastpost img
{
float: right;
}

remplazar

.lastpost img
{
float: right;
padding: 4px;
}



buscar
/* Events */
#edit_event
{

remplazar

/* Events */
.linked_events
{
padding: 1em 0;
}
.edit_event



buscar
/* Poll question */
#poll
{
overflow: hidden;
}

remplazar

/* Poll question */
#poll
{
overflow: hidden;
}
#poll .content
{
padding: 0 1em;
}


buscar
/* Poll vote options */
#poll_options ul.options
{
border-top: 1px solid #9999AA;
padding: 1em 2.5em 0 2em;
margin: 0 0 1em 0;
}
#poll_options div.submitbutton
{
border-bottom: 1px solid #9999AA;
clear: both;
padding: 0 0 1em 2em;
margin: 0 0 1em 0;
}

/* Poll results */
#poll_options dl.options
{
border: solid #9999AA;
border-width: 1px 0;
padding: 1em 2.5em 0 2em;
margin: 0 1em 1em 0;
clear: right;
overflow: hidden;
}
#poll_options dl.options dt
{
line-height: 1.6em;
vertical-align: middle;
width: 48%;
float: left;
clear: both;
margin-bottom: 4px;
}
#poll_options dl.options dt.voted
{
font-weight: bold;
}
#poll_options dl.options dd
{
margin: 0 4px 1em 0;
vertical-align: middle;
line-height: 1.6em;
width: 48%;
float: left;
}
#poll .content
{
padding: 0 1em;
}

remplazar

/* Poll vote options */
#poll_options ul.options
{
border-top: 1px solid #9999aa;
padding: 1em 2.5em 0 2em;
margin: 0 0 1em 0;
}
#poll_options div.submitbutton
{
border-bottom: 1px solid #9999aa;
clear: both;
padding: 0 0 1em 2em;
margin: 0 0 1em 0;
}

/* Poll results */
#poll_options dl.options
{
border: solid #9999aa;
border-width: 1px 0;
padding: 1em 2.5em 1em 2em;
margin: 0 1em 1em 0;
line-height: 1.1em !important;
}

#poll_options dl.options dt
{
padding: 0.3em 0;
width: 30%;
float: left;
margin: 0;
clear: left;
}

#poll_options dl.options .voted
{
font-weight: bold;
}

#poll_options dl.options dd
{
margin: 0 0 0 2em;
padding: 0.1em 0 0 0;
width: 60%;
max-width: 450px;
float: left;
}

#poll_options dl.options .percentage
{
display: block;
float: right;
padding: 0.2em 0 0.3em 0;
}


buscar
.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}

remplazar

.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}
.postarea div.flow_hidden
{
width: 100%;
}


buscar
.poster li.stars, .poster li.avatar, .poster li.blurb, li.postcount, li.im_icons ul
{
margin-top: 0.5em;
}

remplazar

.poster li.stars, .poster li.avatar, .poster li.blurb, li.postcount, li.im_icons ul
{
margin-top: 0.5em;
}
.poster li.warning
{
line-height: 1.2em;
padding-top: 1em;
}
.poster li.warning a img
{
vertical-align: bottom;
padding: 0 0.2em;
}


buscar
.modifybutton
{
clear: right;
float: right;
margin: 8px 20px 10px 0;
text-align: right;
}
.postarea ul.quickbuttons
{
clear: right;
float: right;
text-align: right;
font-family: arial, sans-serif;
font-weight: bold;
font-size: 0.85em;
}
.postarea ul.quickbuttons a:hover
{
color: #a70;
}

/* The quick buttons */
ul.quickbuttons
{
margin: 0.9em 11px 0 0;
}
ul.quickbuttons li
{
float: left;
display: inline;
margin: 0 0 0 11px;
}
ul.quickbuttons li a
{
padding: 0 0 0 20px;
display: block;
height: 20px;
line-height: 18px;
float: left;
}
ul.quickbuttons li.approve_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -90px;
}
ul.quickbuttons li.quote_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 0;
}
ul.quickbuttons li.reply_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
}
ul.quickbuttons li.reply_all_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
}
ul.quickbuttons li.modify_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -60px;
}
ul.quickbuttons li.remove_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -30px;
}
ul.quickbuttons li.split_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -150px;
}
ul.quickbuttons li.restore_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -120px;

remplazar

.modifybutton
{
clear: right;
float: right;
margin: 8px 20px 10px 0;
text-align: right;
}

/* The quick buttons */
div.quickbuttons_wrap
{
padding: 0.2em 0;
width: 100%;
float: left;
}

ul.quickbuttons
{
margin: 0.9em 11px 0 0;
clear: right;
float: right;
text-align: right;
font-family: arial, sans-serif;
font-weight: bold;
font-size: 0.85em;
}
ul.quickbuttons li
{
float: left;
display: inline;
margin: 0 0 0 11px;
}
ul.quickbuttons li a
{
padding: 0 0 0 20px;
display: block;
height: 20px;
line-height: 18px;
float: left;
}
ul.quickbuttons a:hover
{
color: #a70;
}
ul.quickbuttons li.quote_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 0;
}
ul.quickbuttons li.remove_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -30px;
}
ul.quickbuttons li.modify_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -60px;
}
ul.quickbuttons li.approve_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -90px;
}
ul.quickbuttons li.restore_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -120px;
}
ul.quickbuttons li.split_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -150px;
}
ul.quickbuttons li.reply_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
}
ul.quickbuttons li.reply_all_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
}
ul.quickbuttons li.notify_button
{
background: url(../images/theme/quickbuttons.png) no-repeat 0 -210px;


buscar
.inner
{
padding: 1em 1em 0 0;
margin: 0 1em 0 0;
border-top: solid 1px #99a;
}

remplazar

.inner
{
padding: 1em 1em 0 0;
margin: 0 1em 0 0;
border-top: 1px solid #99a;
}


buscar
/* Styles for the quick reply area.
---------------------------------------------------- */

/* The quick-reply area. Horizontal alignments go a bit wonky in IE6 and IE7 but I'm not sure it's worth worrying about. */

#quickReplyOptions .roundframe
{
text-align: center;
padding: 0 10%;
}
#quickReplyContent
{
padding: 0.5em 0;
}
#quickReplyContent form textarea
{
width: 91%;
height: 100px;
margin: 0.25em 0 1em 0;
}

remplazar

/* Styles for the quick reply area.
---------------------------------------------------- */

/* The quick-reply area. Horizontal alignments go a bit wonky in IE6 and IE7 but I'm not sure it's worth worrying about. */

#quickReplyOptions .roundframe
{
padding: 0 10%;
}
#quickReplyOptions form textarea
{
height: 100px;
margin: 0.25em 0 1em 0;
}


buscar
/* Styles for edit post section
---------------------------------------------------- */

remplazar

/* Styles for edit post section
---------------------------------------------------- */
form#postmodify .roundframe
{
padding: 0 12%;
}



buscar
#post_header
{
margin-bottom: 0.5em;
border-bottom: 1px solid #CACDD3;
padding: 0.5em;
overflow: hidden;
}

remplazar

#post_header
{
margin-bottom: 0.5em;
border-bottom: 1px solid #cacdd3;
padding: 0.5em;
overflow: hidden;
}



buscar
#postMoreOptions
{
border-bottom: 1px solid #CACDD3;
padding: 0.5em;
}

#postAttachment, #postAttachment2
{
overflow: hidden;
margin: .5em 0;
padding: 0;
border-bottom: 1px solid #CACDD3;
padding: 0.5em;
}

remplazar

#postAttachment, #postAttachment2
{
overflow: hidden;
margin: .5em 0;
padding: 0;
border-bottom: 1px solid #cacdd3;
padding: 0.5em;
}



buscar
/* the BBC buttons */
#bbcBox_message
{
margin-bottom: 2px;
}
#bbcBox_message div
{
margin: 0.3em 0 1em 0;
line-height: 1.2em;
height: 1.2em;
vertical-align: top;
}

remplazar

/* The BBC buttons */
#bbcBox_message
{
margin: 1em 0 0.5em 0;
}
#bbcBox_message div
{
margin: 0.2em 0;
vertical-align: top;
}



buscar
#bbcBox_message select
{
margin: 0 2px
}

remplazar

#bbcBox_message select
{
margin: 0 2px;
}
/* The smiley strip */
#smileyBox_message
{
margin: 0.75em 0 0.5em 0;
}


buscar
/* Styles for edit event section
---------------------------------------------------- */
#post_event fieldset
{
margin-bottom: 0.5em;
border: none;
border-bottom: 1px solid #666666;
padding: 0.5em;
clear: both;
}
#post_event legend
{
font-weight: bold;
color: black;
}

remplazar

/* Styles for edit event section
---------------------------------------------------- */
#post_event .roundframe
{
padding: 0 12%;
}
#post_event fieldset
{
margin-bottom: 0.5em;
border: none;
border-bottom: 1px solid #cacdd3;
padding: 0.5em;
clear: both;
}
#post_event legend
{
font-weight: bold;
color: #000;
}


buscar
/* Styles for edit poll section.
---------------------------------------------------- */

#edit_poll fieldset
{
margin-bottom: 0.5em;
border: none;
border-bottom: 1px solid #666666;
padding: 0.5em;
clear: both;
}
#edit_poll legend
{
font-weight: bold;
color: black;
}
#edit_poll div.poll_options
{
width: 49%;
float: left;
}
#edit_poll ul.poll_main, ul.poll_options
{
overflow: hidden;
padding: 0 0 .7em .7em;
list-style: none;
}
#edit_poll ul.poll_main li
{
margin: 0.2em 0;
width: 49%;
float: left;
}
#edit_poll ul.poll_options
{
margin: 0;
}
#edit_poll ul.poll_options li
{
margin: 0.3em 0 0 0;
}

remplazar

/* Styles for edit poll section.
---------------------------------------------------- */

#edit_poll fieldset
{
margin-bottom: 0.5em;
border: none;
border-bottom: 1px solid #cacdd3;
padding: 0.5em;
clear: both;
}
#edit_poll legend
{
font-weight: bold;
color: #000;
}
#edit_poll ul.poll_main, dl.poll_options
{
overflow: hidden;
padding: 0 0 .7em .7em;
list-style: none;
}
#edit_poll ul.poll_main li
{
margin: 0.2em 0;
}
#edit_poll dl.poll_options dt
{
width: 35%;
}
#edit_poll dl.poll_options dd
{
width: 63%;
}


Thomas Alva Edison dijo:

    "No fracasé, sólo descubrí 999 maneras de como no hacer una bombilla."


kenet

INDEX.CCS (2 PARTE)

buscar
/* Styles for the recent messages section.
---------------------------------------------------- */

#readbuttons_top .pagelinks,#readbuttons .pagelinks
{
    padding-bottom: 1em;
    width: 60%;
}
#readbuttons .pagelinks
{
    padding-top: 1em;;
}
#recent
{
    clear: both;
}

remplazar

/* Styles for the recent messages section.
---------------------------------------------------- */

#readbuttons_top .pagelinks, #readbuttons .pagelinks
{
    padding-bottom: 1em;
    width: 60%;
}
#readbuttons .pagelinks
{
    padding-top: 1em;
}
#recent
{
    clear: both;
}


buscar
/* Styles for the move topic section.
---------------------------------------------------- */

#move_topic dl
{
    margin-bottom: 0;

remplazar

/* Styles for the move topic section.
---------------------------------------------------- */

#move_topic dl
{
    margin-bottom: 0;
}
#move_topic dl.settings dt
{
    width: 40%;
}
#move_topic dl.settings dd
{
    width: 59%;


buscar
/* Styles for the split topic section.
---------------------------------------------------- */

#selected, #not_selected
{
    width: 49%;
}

remplazar

/* Styles for the split topic section.
---------------------------------------------------- */

div#selected, div#not_selected
{
    width: 49%;
}
ul.split_messages li.windowbg, ul.split_messages li.windowbg2
{
    padding: 1em;
    margin: 1px;
}
ul.split_messages li a.split_icon
{
    padding: 0 0.5em;
}
ul.split_messages div.post
{
    padding: 1em 0 0 0;
    border-top: 1px solid #fff;
}

/* Styles for the merge topic section.
---------------------------------------------------- */


buscar
.coppa_contact
{
    padding: 4px;
    width: 32ex;
    background-color: white;
    color: black;
    margin-left: 5ex;
    border: 1px solid black;
}

remplazar

.coppa_contact
{
    padding: 4px;
    width: 32ex;
    background-color: #fff;
    color: #000;
    margin-left: 5ex;
    border: 1px solid #000;
}


buscar
#admin_login .centertext
{
    padding: 1em;
}

remplazar

#admin_login .centertext
{
    padding: 1em;
}
#admin_login .centertext .error
{
    padding: 0 0 1em 0;
}


buscar
#adm_container
{
    border-bottom: solid 1px #ccc;
    margin-bottom: 5px;
}

remplazar

#adm_container
{
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
}


buscar
#main_admsection
{
    margin-left: 172px;
}

tr.windowbg td, tr.windowbg2 td, tr.approvebg td
{

remplazar

#main_admsection
{
    margin-left: 172px;
}

tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
{



buscar
.topic_table table thead
{
    border-bottom: solid 1px white;
}

remplazar

.topic_table table thead
{
    border-bottom: 1px solid #fff;
}



buscar
.topic_table td.lastpost
{
    font-size: 0.85em;
    line-height: 1.3em;
    padding: 4px;
}
.topic_table td.lastpost,.topic_table td.lastpost
{
    font-size: 0.9em;
    line-height: 100%;

remplazar

.topic_table td.lastpost
{
    font-size: 0.85em;
    line-height: 1.3em;



buscar
.errorbox
{
    padding: 1em;
    border: 1px solid #cc3344;
    color: black;
    background-color: #ffe4e9;
    margin-bottom: 1em;
}

remplazar

.errorbox
{
    padding: 1em;
    border: 1px solid #cc3344;
    color: #000;
    background-color: #ffe4e9;
    margin-bottom: 1em;
}



buscar
/* Styles for the profile section.
------------------------------------------------- */

dl
{
    overflow: auto;
    margin: 0;
    padding: 0;
}

.profile_error
{
    border: 2px dashed red;
    padding: 5px;
    margin: 0 1ex 1ex 1ex;
}

remplazar

/* Styles for the profile section.
------------------------------------------------- */

dl
{
    overflow: auto;
    margin: 0;
    padding: 0;
}


buscar
/* The basic user info on the left */
#basicinfo
{
    width: 20%;
    float: left;
}

remplazar

/* The basic user info on the left */
#basicinfo
{
    width: 20%;
    float: left;
}
#basicinfo .windowbg .content
{
    padding-left: 20px;
}


buscar
#detailedinfo
{
    width: 78%;
    float: right;
}

remplazar

#detailedinfo
{
    width: 79.5%;
    float: right;
}


buscar
#detailedinfo div.content dt, #tracking div.content dt
{
    width: 30%;
    float: left;
    margin: 0 0 3px 0;
    padding: 0;
    font-weight: bold;
    clear: both;
}

remplazar

#detailedinfo div.content dt, #tracking div.content dt
{
    width: 35%;
    float: left;
    margin: 0 0 3px 0;
    padding: 0;
    font-weight: bold;
    clear: both;
}


buscar
#detailedinfo div.content dd, #tracking div.content dd
{
    width: 70%;
    float: left;
    margin: 0 0 3px 0;
    padding: 0;
}

remplazar

#detailedinfo div.content dd, #tracking div.content dd
{
    width: 65%;
    float: left;
    margin: 0 0 3px 0;
    padding: 0;
}


buscar
#detailedinfo div.content dl.noborder
{
    border-bottom: 0px;
}

remplazar

#detailedinfo div.content dl.noborder
{
    border-bottom: 0;
}


buscar
#main_admsection #basicinfo h4
{
    float: left;
}

remplazar

#main_admsection #basicinfo h4
{
    float: left;
    width: 35%;
}


buscar
#main_admsection #basicinfo ul
{
    clear: left;
    padding-top: 10px;
}

remplazar

#main_admsection #basicinfo ul
{
    clear: left;
}



buscar
#generalstats
{
    float: left;
    width: 53%;
}

#activitytime
{
    width: 53%;
    float: left;
    clear: left;
    margin-top: 3px;
}

#popularposts, #popularactivity
{
    width: 45%;
    float: right;
    padding-left: 1%;
}

#generalstats h4, #popularposts h4, #popularactivity h4, #activitytime h4
{
    margin: 3px 0;
}

remplazar

/* Profile statistics */


buscar
#generalstats div.content dd
{
    width: 50%;
    float: left;
    margin: 0 0 3px 0;
    padding: 0;

remplazar

#generalstats div.content dd
{
    width: 50%;
    float: left;
    margin: 0 0 3px 0;
    padding: 0;
}

/* Activity by time */
#activitytime
{
    margin: 6px 0;
}
.activity_stats
{
    margin: 0;
    padding: 0;
    list-style: none;
}
.activity_stats li
{
    margin: 0;
    padding: 0;
    width: 4.16%;
    float: left;
}
.activity_stats li span
{
    display: block;
    border: solid #000;
    border-width: 1px 1px 0 0;
    text-align: center;
}
.activity_stats li.last span
{
    border-right: none;
}
.activity_stats li div.bar
{
    margin: 0 auto;
    width: 15px;
}
.activity_stats li div.bar div
{
    background: #6294CE;
}
.activity_stats li div.bar span
{
    position: absolute;
    top: -1000em;
    left: -1000em;
}

/* Most popular boards by posts and activity */
#popularposts
{
    width: 49.5%;
    float: left;
}
#popularactivity
{
    width: 49.5%;
    float: right;



buscar
#activitytime div.content dt
{
    width: 40%;
    float: left;
    clear: both;
    margin: 0 0 3px 0;
    padding: 0 3px 0 0;
    font-weight: bold;
}
#activitytime div.content dd
{
    width: 49%;
    margin: 0 0 3px 2px;
    padding: 0;
    float: left;
}

remplazar

NADA. SOLO BORRALO


buscar
.profile_pie
{
    background-image: url(../images/stats_pie.png);
    float: left;
    height: 20px;
    width: 20px;
    margin: 0;
    padding: 0;
    margin-right: 1em;
}

.topic .time
{
    float: right;
}
.topic .counter
{
    margin-right: 1em;
}

remplazar

.profile_pie
{
    background-image: url(../images/stats_pie.png);
    float: left;
    height: 20px;
    width: 20px;
    margin: 0 1em 0 0;
    padding: 0;
    text-indent: -1000em;
}

/* View posts */
.topic .time
{
    float: right;
}

.counter
{
    margin: 0 0 0 0;
    padding: 0.2em 0.5em 0.1em 0.2em;
    font-size: 2.2em;
    font-weight: bold;
    color: #3f3f3f;
    float: left;
}
.list_posts
{
    border-top: 2px solid #b3b3bf;
    padding-top: 12px;
    margin-top: 6px;
}

.core_posts
{
    margin-bottom: 3px;
}


buscar
#permissions dt
{
    width: 40%;
    float: left;
    margin: 0 0 -500px;
    padding: 1% 1% 500px;
    clear: both;
    border-top: 1px solid white;
}

#permissions dd
{
    width: 56%;
    float: left;
    margin: 0;
    padding: 1%;
    border-top: 1px solid white;
}

#tracking div.content dl
{
    border-bottom: 0px;
    margin: 0;
    padding: 0;
}

#ip_list
{
    padding: 0;
    margin: 0 0 3px 0;
    list-style: none;
    clear: both;
    display: block;
}

#ip_list li.header
{
    display: block;
    height: .1%;
}

#ip_list li.header, #ip_list li.ip
{
    float: left;
    width: 49%;
    padding: .5%;
}

remplazar

#permissions dt
{
    width: 48%;
    float: left;
    line-height: 1.2em;
    margin: 0;
    padding: 1%;
    clear: both;
    border-top: 1px solid #fff;
}

#permissions dd
{
    width: 48%;
    float: left;
    margin: 0;
    padding: 1%;
    border-top: 1px solid #fff;
}

#tracking div.content dl
{
    border-bottom: 0;
    margin: 0;
    padding: 0;
}


buscar
/* Styles for the statistics centre.
------------------------------------------------- */
#statistics
{
    padding-bottom: 0.5em;
}
#statistics h4.titlebg
{
    text-align: center;
    margin-bottom: 5px;
}
#stats_left, #top_posters, #top_topics_replies,#top_topics_starter
{
    float:left;
    width: 49.5%;
}

remplazar

/* Styles for the statistics center.
------------------------------------------------- */
#statistics
{
    padding: 0.5em 0;
}
#statistics div.title_bar
{
    margin: 4px 0 -2px 0;
}
#statistics h3.catbg
{
    text-align: center;
}
#statistics div.content
{
    min-height: 210px;
}
#statistics div.top_row
{
    min-height: 150px;
}
#stats_left, #top_posters, #top_topics_replies, #top_topics_starter
{
    float: left;
    width: 49.5%;
}


buscar
.statsbar span.left
{
    float: left;
    background: url(../images/bar_stats.png) no-repeat;
    display: block;
    width: 6px;
    height: 16px;
}
.statsbar span.right
{
    float: left;
    background: url(../images/bar_stats.png) no-repeat 100%;
    width: 6px;
    height: 16px;
}
.stats_bar
{
    float: left;
    background-image: url(../images/bar_stats.png);
    height: 16px;
    font-size: 0.9em;
    display: block;
    text-align: left;
    color: white;
    font-weight: bold;
    background-position: top center;
}
.stats_bar span
{
    padding-left: 2px;
}

remplazar

.statsbar div.bar
{
    float: left;
    background: url(../images/bar_stats.png) no-repeat;
    display: block;
    margin: 0 4px;
    height: 16px;
}
.statsbar div.bar div
{
    position: relative;
    right: -4px;
    padding: 0 4px 0 0;
    background: url(../images/bar_stats.png) no-repeat 100%;
    height: 16px;
}


buscar
}
#personal_messages .labels
{

remplazar

}
#personal_messages div.labels
{


buscar
#personal_messages .capacity_bar
{
    background: #F0F4F7;

remplazar

#personal_messages .capacity_bar
{
    background: #f0f4f7;


buscar
#personal_messages .capacity_bar span.empty
{
    background: #A6D69D;
}
#personal_messages .capacity_bar span.filled
{
    background: #EEA800;
}
#personal_messages .capacity_bar span.full
{
    background: #F10909;
}

remplazar

    background: #a6d69d;
}
#personal_messages .capacity_bar span.filled
{
    background: #eea800;
}
#personal_messages .capacity_bar span.full
{
    background: #f10909;
}


buscar
/* Used to indicate the current day in the grid. */
.calendar_today
{
    background-color: #FFFFFF;
}

#month_grid
{
    width: 200px;
    text-align: center;
    float: left;
}


remplazar

/* Styles for the calendar section.
------------------------------------------------- */
.calendar_table
{
    margin-bottom: 0.7em;
}

/* Used to indicate the current day in the grid. */
.calendar_today
{
    background-color: #fff;
}

#month_grid
{
    width: 200px;
    text-align: center;
    float: left;
}
#month_grid h3.catbg
{
    height: 23px;
    line-height: 27px;
}


buscar
#main_grid table h3.catbg
{
    text-align: center;
    height: 29px;
    border-top: 2px solid #FFFFFF;
    border-bottom: none;
}

remplazar

#main_grid table h3.catbg
{
    text-align: center;
    height: 29px;
    border-top: 2px solid #fff;
    border-bottom: none;
}


buscar
#main_grid table.weeklist td.windowbg
{
    text-align: center;
    height: 49px;
    width: 25px;
    font-size: large;
    padding: 0 7px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;

remplazar

#main_grid table.weeklist td.windowbg
{
    text-align: center;
    height: 49px;
    width: 25px;
    font-size: large;
    padding: 0 7px;
    border-bottom: 2px solid #fff;
}



buscar
#main_grid table.weeklist td.weekdays
{
    height: 49px;
    width: 100%;
    padding: 4px;
    text-align: left;
    vertical-align: middle;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

remplazar

#main_grid table.weeklist td.weekdays
{
    height: 49px;
    width: 100%;
    padding: 4px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 2px solid #fff;
}



buscar
#main_grid h3 span.floatleft, #main_grid h3 span.floatright
{
    display: block;
    font-weight: bold;
}

remplazar

#main_grid h3 span.floatleft, #main_grid h3 span.floatright
{
    display: block;
    font-weight: bold;
}
#main_grid table th.days
{
    width: 14%;
    padding: 4px 0;
}
#main_grid table.weeklist h4.titlebg
{
    margin: 2px 0 0 0;
    height: 23px;
    line-height: 27px;
}



buscar
#main_grid table td.weeks
{
    vertical-align: middle;
    text-align: center;
}

remplazar

#main_grid table td.weeks
{
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    font-size: large;
}



buscar
a.modify_event
{
    color: #FF0000;
}

remplazar

a.modify_event
{
    color: red;
}


buscar
#searchform fieldset div#searchBoardsExpand a
{
    text-decoration: underline;
}

remplazar

#searchform fieldset div#searchBoardsExpand a
{
    font-weight: bold;
    line-height: 1.5em;
    border-bottom: 1px solid #334466;
}


buscar
/* Styles for the search results page.
------------------------------------------------- */
#search_results form
{
    padding: 1em;
}

remplazar

/* Styles for the search results page.
------------------------------------------------- */


buscar
.search_results_posts
{
    overflow: hidden;
}
.search_results_posts  .inner
{
    padding: 0.5em 1em;
    overflow: hidden;
}
.search_results_posts .windowbg2
{
    margin-top: 4px;
}

remplazar

.search_results_posts
{
    overflow: hidden;
}


buscar
#helpmain
{
    padding: 0 1em;
}
#helpmain h1.section
{
    font-size: 18px;
}
#helpmain h2.section
{
    font-size: 18px;
    border-bottom: solid 1px;
    padding-bottom: 0.5em;
    margin: 0 0 0.5em 0;
}
#helpmain h3.section
{
    font-size: 16px;
    font-weight: normal;
    margin: 2em 0 0.5em 0;
    padding: 0 0 0.5em 0.5em;
}

remplazar

#helpmain
{
    padding: 0 1em;
}


buscar
/* put back the bullets please */
remplazar

ul.basic_helplist
{
    padding: 0.8em 1.5em;
    line-height: 1.5em;
}


Thomas Alva Edison dijo:

    "No fracasé, sólo descubrí 999 maneras de como no hacer una bombilla."


Advertisement: