Hago un pie de pagina en CSS

-Titulo: como creo un pie de pagina tipo igual a la de aca del foro!
-URL: http://serviciotecnicopc.cz.cc/
-Version del Foro:1.6
-Actualizacion: No
-Informacion del problema: quiero crear un pie de pagina cm del foro de aca pero mas grande y otro color Big Grin
Como el de mybb-es? Todo es con CSS y html, si no sabes de eso deja tu template footer aqui para darte mas informacion.
{SIGNATURE_IMAGE}
(30 Apr, 2011, 12:46 pm)Sama34 escribió: Como el de mybb-es? Todo es con CSS y html, si no sabes de eso deja tu template footer aqui para darte mas informacion.
aca esta:

Código PHP:
<br />
            <
div class="bottommenu">
                <
div class="float_right">{$lang_select}</div>
                <
div>
                    <
span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
                </
div>
            </
div>
            </
div>
        <
hr class="hidden" />
            <
div id="copyright">
                <
div id="debug"><debugstuff></div>
                <!-- 
MyBB is free software developed and maintained by a volunteer community
                     
It would be much appreciated by the MyBB Group if you left the full copyright and "powered by" notice intact
                     
to show your support for MyBB.  If you choose to remove or modify the copyright below
                     
you may be refused support on the MyBB Community Forums.
                     
                     
This is free softwaresupport us and we'll support you. -->
{$lang->powered_by} <a href="http://mybb.com/" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://mybb.com/" target="_blank">MyBB Group</a>.<br />
                <!-- End powered by -->
                <br />
<br class="clear" />
<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE -->{$task_image}<!-- End task image code -->
{$auto_dst_detection}
        </div>
        </div>

</style>
<body>
    <div id="barra"
      <span>Powered By MyBB</span>    
     </div>
</body> 
Coloca esto en tu global asta abajo:
Código:
.bottommenu {
    background: #afa;
    color: #000;
    border-top: 1px solid #0f0;
    padding: 10px;
    margin:0px;
}
.bottommenu2 {
    background: #faa;
    color: #000;
    border-top: 1px solid #f00;
    padding: 10px;
    margin:0px;
}

Reemplaza tu footer:
Código:
<br />
                <div id="debug"><debugstuff></div>
            <div class="bottommenu">
                <div class="float_right">{$lang_select}</div>
                <div>
                    <span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
                </div>
            </div>
            <div id="copyright" class="bottommenu2">
{$lang->powered_by} <a href="http://mybb.com/" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://mybb.com/" target="_blank">MyBB Group</a>.
                <!-- End powered by -->
<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE -->{$task_image}<!-- End task image code -->
{$auto_dst_detection}
        </div>
            </div>
        </div>
</style>


Intenta y dime el resultado...
{SIGNATURE_IMAGE}