Página 1 de 1

Cambiar cabecera

Publicado: 14 Jul 2012, 01:49
por Cruciattus
Hola, tengo una duda, no puedo cambiar la cabecera de mi estilo subsilver porque está separada en cuatro imagenes, y no se que lineas tengo que sustituir para poner una cabecera de una sola imagen.
Aqui dejo el overall_header.html.
Me podriais decir cuales lineas debo sustituir y debo poner en su lugar para que se vea solamente una cabecera de una sola imagen??, gracias!

Código: Seleccionar todo

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
    <head>
    {SEO_BASE_HREF}
    <!-- INCLUDE ca_config.html -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
    <meta http-equiv="content-language" content="{S_USER_LANG}" />
    <meta http-equiv="content-style-type" content="text/css" />
    <meta http-equiv="imagetoolbar" content="no" />
    {META_TAG}
    {META}
    <!-- BEGIN gym_rsslinks -->
    <link rel="alternate" type="application/rss+xml" title="{gym_rsslinks.TITLE}" href="{gym_rsslinks.URL}" />
    <!-- END gym_rsslinks -->
    <title>{SITENAME} - <!-- IF S_IN_MCP -->{L_MCP} - <!-- ELSEIF S_IN_UCP -->{L_UCP} - <!-- ENDIF -->{PAGE_TITLE}</title>
     
    <!-- IF S_ENABLE_FEEDS -->
        <!-- IF S_ENABLE_FEEDS_OVERALL --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_NEWS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_NEWS}" href="{U_FEED}?mode=news" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_FORUMS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_FORUMS}" href="{U_FEED}?mode=forums" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_NEW}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF -->
    <!-- ENDIF -->
     
    <!--
        phpBB style name: Cruciattus 2.0
        Based on style:   subsilver2
        Original author:  D-eliria ( http://d-eliria.com )
       
    -->
     
    <link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css" />
     
    <style type="text/css">
     
    #anuncios{
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 15px;
    }
     
    #anuncios li{
    list-style: none;
    display: inline;
    margin: 0;
    }
     
    #anuncios li a{
    padding: 0;
    margin-left: 0px;
    border-bottom: none;
    background: #020202;
    }
     
     
    #anuncios li a.current{
    background: #020202;
    }
     
    #tabcontentcontainer{
    padding: 5px;
    }
     
    .tabcontent{
    display:none;
    }
     
    </style>
     
    <script type="text/javascript">
     
    var initialtab=[1, "sc1"]
     
    function cascadedstyle(el, cssproperty, csspropertyNS){
    if (el.currentStyle)
    return el.currentStyle[cssproperty]
    else if (window.getComputedStyle){
    var elstyle=window.getComputedStyle(el, "")
    return elstyle.getPropertyValue(csspropertyNS)
    }
    }
     
    var previoustab=""
     
    function expandcontent(cid, aobject){
    if (document.getElementById){
    highlighttab(aobject)
    detectSourceindex(aobject)
    if (previoustab!="")
    document.getElementById(previoustab).style.display="none"
    document.getElementById(cid).style.display="block"
    previoustab=cid
    if (aobject.blur)
    aobject.blur()
    return false
    }
    else
    return true
    }
     
    function highlighttab(aobject){
    if (typeof tabobjlinks=="undefined")
    collecttablinks()
    for (i=0; i<tabobjlinks.length; i++)
    tabobjlinks[i].style.backgroundColor=initTabcolor
    var themecolor=aobject.getAttribute("theme")? aobject.getAttribute("theme") : initTabpostcolor
    aobject.style.backgroundColor=document.getElementById("tabcontentcontainer").style.backgroundColor=themecolor
    }
     
    function collecttablinks(){
    var tabobj=document.getElementById("anuncios")
    tabobjlinks=tabobj.getElementsByTagName("A")
    }
     
    function detectSourceindex(aobject){
    for (i=0; i<tabobjlinks.length; i++){
    if (aobject==tabobjlinks[i]){
    tabsourceindex=i //source index of tab bar relative to other tabs
    break
    }
    }
    }
     
    function do_onload(){
    var cookiename=(typeof persisttype!="undefined" && persisttype=="sitewide")? "tabcontent" : window.location.pathname
    var cookiecheck=window.get_cookie && get_cookie(cookiename).indexOf("|")!=-1
    collecttablinks()
    initTabcolor=cascadedstyle(tabobjlinks[1], "backgroundColor", "background-color")
    initTabpostcolor=cascadedstyle(tabobjlinks[0], "backgroundColor", "background-color")
    if (typeof enablepersistence!="undefined" && enablepersistence && cookiecheck){
    var cookieparse=get_cookie(cookiename).split("|")
    var whichtab=cookieparse[0]
    var tabcontentid=cookieparse[1]
    expandcontent(tabcontentid, tabobjlinks[whichtab])
    }
    else
    expandcontent(initialtab[1], tabobjlinks[initialtab[0]-1])
    }
     
    if (window.addEventListener)
    window.addEventListener("load", do_onload, false)
    else if (window.attachEvent)
    window.attachEvent("onload", do_onload)
    else if (document.getElementById)
    window.onload=do_onload
     
     
    </script>
    <script type="text/javascript">
    // <![CDATA[
       
        var onload_functions = new Array();
        var onunload_functions = new Array();
        var ca_main_width = '{$CA_WIDTH}';
     
    <!-- IF S_USER_PM_POPUP and S_NEW_PM -->
        popup('{UA_POPUP_PM}', 400, 225, '_phpbbprivmsg');
    <!-- ENDIF -->
     
    function popup(url, width, height, name)
    {
        if (!name)
        {
            name = '_popup';
        }
     
        window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes,width=' + width);
        return false;
    }
     
    // www.phpBB-SEO.com SEO TOOLKIT BEGIN
    function jumpto() {
        var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
        var perpage = '{PER_PAGE}';
        var base_url = '{A_BASE_URL}';
        var seo_delim_start = '{SEO_START_DELIM}';
        var seo_static_pagination = '{SEO_SATIC_PAGE}';
        var seo_ext_pagination = '{SEO_EXT_PAGE}';
        if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0) {
            var seo_page = (page - 1) * perpage;
            var anchor = '';
            var anchor_parts = base_url.split('#');
            if ( anchor_parts[1] ) {
                base_url = anchor_parts[0];
                anchor = '#' + anchor_parts[1];
            }
            if ( seo_page > 0 ) {
                var phpEXtest = false;
                if ( base_url.indexOf('?') >= 0 || ( phpEXtest = base_url.match(/\.php$/i))) {
                    document.location.href = base_url.replace(/&/g, '&') + (phpEXtest ? '?' : '&') + 'start=' + seo_page + anchor;
                } else {
                    var ext = base_url.match(/\.[a-z0-9]+$/i);
                    if (ext) {
                        // location.ext => location-xx.ext
                        document.location.href = base_url.replace(/\.[a-z0-9]+$/i, '') + seo_delim_start + seo_page + ext + anchor;
                    } else {
                        // location and location/ to location/pagexx.html
                        var slash = base_url.match(/\/$/) ? '' : '/';
                        document.location.href = base_url + slash + seo_static_pagination + seo_page + seo_ext_pagination + anchor;
                    }
                }
            } else {
                document.location.href = base_url + anchor;
            }
        }
    }
    var seo_external = {SEO_EXTERNAL};
    var seo_external_sub = {SEO_EXTERNAL_SUB};
    var seo_ext_classes = {SEO_EXT_CLASSES};
    var seo_hashfix = {SEO_HASHFIX};
    /**
    *  phpbb_seo_href()
    *  Fixes href="#something" links with virtual directories
    *  Optionally open external or marked with a css class links in a new window
    *  in a XHTML 1.x compliant way.
    */
    function phpbb_seo_href() {
        var current_domain = document.domain.toLowerCase();
        if (!current_domain || !document.getElementsByTagName) return;
        if (seo_external_sub && current_domain.indexOf('.') >= 0) {
            current_domain = current_domain.replace(new RegExp(/^[a-z0-9_-]+\.([a-z0-9_-]+\.([a-z]{2,6}|[a-z]{2,3}\.[a-z]{2,3}))$/i), '$1');
        }
        if (seo_ext_classes) {
            var extclass = new RegExp("(^|\s)(" + seo_ext_classes + ")(\s|$)");
        }
        if (seo_hashfix) {
            var basehref = document.getElementsByTagName('base')[0];
            if (basehref) {
                basehref = basehref.href;
                var hashtest = new RegExp("^(" + basehref + "|)#[a-z0-9_-]+$");
                var current_href = document.location.href.replace(/#[a-z0-9_-]+$/i, "");
            } else {
                seo_hashfix = false;
            }
        }
        var hrefels = document.getElementsByTagName("a");
        var hrefelslen = hrefels.length;
        for (var i = 0; i < hrefelslen; i++) {
            var el = hrefels[i];
            var hrefinner = el.innerHTML.toLowerCase();
            if (el.onclick || (el.href == '') || (el.href.indexOf('javascript') >=0 ) || (el.href.indexOf('mailto') >=0 ) || (hrefinner.indexOf('<a') >= 0) ) {
                continue;
            }
            if (seo_hashfix && el.hash && hashtest.test(el.href)) {
                el.href = current_href + el.hash;
            }
            if (seo_external) {
                if ((el.href.indexOf(current_domain) >= 0) && !(seo_ext_classes && extclass.test(el.className))) {
                    continue;
                }
                el.onclick = function () { window.open(this.href); return false; };
            }
        }
    }
    window.onload = function() {
        if (seo_external || seo_hashfix) {
            phpbb_seo_href();
        }
        // here you can add other window.onload events
    }
    // www.phpBB-SEO.com SEO TOOLKIT END
     
    /**
    * Find a member
    */
    function find_username(url)
    {
        popup(url, 760, 570, '_usersearch');
        return false;
    }
     
    /**
    * Mark/unmark checklist
    * id = ID of parent container, name = name prefix, state = state [true/false]
    */
    function marklist(id, name, state)
    {
        var parent = document.getElementById(id);
        if (!parent)
        {
            eval('parent = document.' + id);
        }
     
        if (!parent)
        {
            return;
        }
     
        var rb = parent.getElementsByTagName('input');
       
        for (var r = 0; r < rb.length; r++)
        {
            if (rb[r].name.substr(0, name.length) == name)
            {
                rb[r].checked = state;
            }
        }
    }
     
    <!-- IF ._file -->
     
        /**
        * Play quicktime file by determining it's width/height
        * from the displayed rectangle area
        *
        * Only defined if there is a file block present.
        */
        function play_qt_file(obj)
        {
            var rectangle = obj.GetRectangle();
     
            if (rectangle)
            {
                rectangle = rectangle.split(',')
                var x1 = parseInt(rectangle[0]);
                var x2 = parseInt(rectangle[2]);
                var y1 = parseInt(rectangle[1]);
                var y2 = parseInt(rectangle[3]);
     
                var width = (x1 < 0) ? (x1 * -1) + x2 : x2 - x1;
                var height = (y1 < 0) ? (y1 * -1) + y2 : y2 - y1;
            }
            else
            {
                var width = 200;
                var height = 0;
            }
     
            obj.width = width;
            obj.height = height + 16;
     
            obj.SetControllerVisible(true);
     
            obj.Play();
        }
    <!-- ENDIF -->
     
        /**
        * New function for handling multiple calls to window.onload and window.unload by pentapenguin
        */
        window.onload = function()
        {
            for (var i = 0; i < onload_functions.length; i++)
            {
                eval(onload_functions[i]);
            }
        }
     
        window.onunload = function()
        {
            for (var i = 0; i < onunload_functions.length; i++)
            {
                eval(onunload_functions[i]);
            }
        }
     
     
    if(navigator.userAgent && navigator.userAgent.indexOf('Mac OS X') > 0)
    {
        document.write('<link rel="stylesheet" href="{T_THEME_PATH}/mac.css" type="text/css" />');
    }
     
    // ]]>
    </script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://www.d-eliria.com/adhlanfiles/fadeslideshow.js">
    </script>
    <script type="text/javascript">
     
    var myFry=new fadeSlideShow({
        wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
        dimensions: [274, 400], //width/height of gallery in pixels. Should reflect dimensions of largest image
        imagearray: [
            ["{T_THEME_PATH}/images/slide1.png"],
            ["{T_THEME_PATH}/images/slide2.png"]
     //<--no trailing comma after very last image element!
        ],
        displaymode: {type:'auto', pause: 5500, cycles:0, wraparound:false},
        persist: false, //remember last viewed slide and recall within same session?
        fadeduration: 3000, //transition duration (milliseconds)
        descreveal: "ondemand",
        togglerid: ""
    })
    </script>
    <script type="text/javascript">
     
    var defaultMenuWidth="150px" //set default menu width.
     
    var linkset=new Array()
    //MENU SETS
    linkset[1]='Gu&iacute;a R&aacute;pida'
    linkset[1]+='<hr>' //Optional Separator
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewforum.php?f=313">NORMAS & AMBIENTACI&Oacute;N</a>'
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewtopic.php?f=313&t=3156">PRIMEROS PASOS</a>'
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewtopic.php?f=518&t=3133">SOMBRERO SELECCIONADOR</a>'
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewforum.php?f=514">HOJA DE PERSONAJE</a>'
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewforum.php?f=289">REGISTRO DE AVATAR</a>'
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewforum.php?f=314">GU&Iacute;A DEL ALUMNO</a>'
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewforum.php?f=372">GU&Iacute;A DE PERSONAJE ADULTO</a>'
    linkset[1]+='<a href="http://www.cruciatus-hogwarts.com/foro/viewforum.php?f=356">REGISTROS M&Aacute;GICOS</a>'
     
    ////No need to edit beyond here
     
    var ie5=document.all && !window.opera
    var ns6=document.getElementById
     
    if (ie5||ns6)
    document.write('<div id="popmenu" onMouseover="clearhidemenu();" onMouseout="dynamichide(event)"></div>')
     
    function iecompattest(){
    return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
    }
     
    function showmenu(e, which, optWidth){
    if (!document.all&&!document.getElementById)
    return
    clearhidemenu()
    menuobj=ie5? document.all.popitmenu : document.getElementById("popmenu")
    menuobj.innerHTML=which
    menuobj.style.width=(typeof optWidth!="undefined")? optWidth : defaultMenuWidth
    menuobj.contentwidth=menuobj.offsetWidth
    menuobj.contentheight=menuobj.offsetHeight
    eventX=ie5? event.clientX : e.clientX
    eventY=ie5? event.clientY : e.clientY
    //Find out how close the mouse is to the corner of the window
    var rightedge=ie5? iecompattest().clientWidth-eventX : window.innerWidth-eventX
    var bottomedge=ie5? iecompattest().clientHeight-eventY : window.innerHeight-eventY
    //if the horizontal distance isn't enough to accomodate the width of the context menu
    if (rightedge<menuobj.contentwidth)
    //move the horizontal position of the menu to the left by it's width
    menuobj.style.left=ie5? iecompattest().scrollLeft+eventX-menuobj.contentwidth+"px" : window.pageXOffset+eventX-menuobj.contentwidth+"px"
    else
    //position the horizontal position of the menu where the mouse was clicked
    menuobj.style.left=ie5? iecompattest().scrollLeft+eventX+"px" : window.pageXOffset+eventX+"px"
    //same concept with the vertical position
    if (bottomedge<menuobj.contentheight)
    menuobj.style.top=ie5? iecompattest().scrollTop+eventY-menuobj.contentheight+"px" : window.pageYOffset+eventY-menuobj.contentheight+"px"
    else
    menuobj.style.top=ie5? iecompattest().scrollTop+event.clientY+"px" : window.pageYOffset+eventY+"px"
    menuobj.style.visibility="visible"
    return false
    }
     
    function contains_ns6(a, b) {
    //Determines if 1 element in contained in another- by Brainjar.com
    while (b.parentNode)
    if ((b = b.parentNode) == a)
    return true;
    return false;
    }
     
    function hidemenu(){
    if (window.menuobj)
    menuobj.style.visibility="hidden"
    }
     
    function dynamichide(e){
    if (ie5&&!menuobj.contains(e.toElement))
    hidemenu()
    else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
    hidemenu()
    }
     
    function delayhidemenu(){
    delayhide=setTimeout("hidemenu()",500)
    }
     
    function clearhidemenu(){
    if (window.delayhide)
    clearTimeout(delayhide)
    }
     
    if (ie5||ns6)
    document.onclick=hidemenu
     
    </script>
    <script type="text/javascript" src="{T_TEMPLATE_PATH}/ca_scripts.js"></script>
    <script type="text/javascript" src="switchcontent.js" >
    </script>
     
    <style type="text/css">
     
    /*Style sheet used for demo. Remove if desired*/
    .handcursor{
    cursor:hand;
    cursor:pointer;
    }
     
    </style>
    <!-- MOD : MSSTI ABBC3 (v{S_ABBC3_VERSION}) - Start //-->
    <!-- INCLUDE ./../../abbcode/abbcode_header.html -->
    <!-- MOD : MSSTI ABBC3 (v{S_ABBC3_VERSION}) - End //-->
    <!-- IF S_MCHAT_ENABLE and (S_MCHAT_ON_INDEX or U_MCHAT) -->
    <script type="text/javascript" src="{ROOT_PATH}mchat/jquery-1.5.0.min.js"></script>
    <script type="text/javascript" src="{ROOT_PATH}mchat/jquery_cookie_mini.js"></script>
    <!-- ENDIF -->
    </head>
    <body class="{S_CONTENT_DIRECTION}">
     
    <a name="top"></a>
     
    <div id="logo-row">
    <a href="http://www.cruciatus-hogwarts.com/foro/index.php"><table border="0" cellpadding="0" cellspacing="0" width="1100" style="padding-top: 0px; margin-top: 0px">
    <tr>
      <td border="0" cellpadding="0" cellspacing="0">
    <div id="fadeshow1"></div>
    </td>
      <td border="0" cellpadding="0" cellspacing="0">
       <img src="{T_THEME_PATH}/images/table1b.png" border="0" alt="" height="400" width="286"></td>
      <td border="0" cellpadding="0" cellspacing="0">
       <img src="{T_THEME_PATH}/images/table2b.png" border="0" alt="" height="400" width="290"></td>
      <td border="0" cellpadding="0" cellspacing="0">
       <img src="{T_THEME_PATH}/images/table3.png" border="0" alt="" height="400" width="250"></td>
     </tr>
    </table></a></center>     </div>
     
    <div class="navrow">
        <!-- IF not S_IS_BOT -->
            <!-- IF S_USER_LOGGED_IN --><a href="{U_PROFILE}">{L_PROFILE}</a> &#8226; <!-- ENDIF -->
            <!-- IF S_USER_LOGGED_IN -->
                <!-- IF S_DISPLAY_PM --><a href="{U_PRIVATEMSGS}">{L_PRIVATE_MESSAGES}</a> &#8226; <!-- ENDIF -->
            <!-- ELSEIF S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><a href="{U_REGISTER}">{L_REGISTER}</a> &#8226; <!-- ENDIF -->
        <!-- ENDIF -->
        <!-- IF U_USER_FLAG_NEW --> &nbsp;<a href="{U_USER_FLAG_NEW}" style="color: red; font-weight: bold;">[ {L_USER_FLAG_NEW} ]</a><!-- ENDIF -->
        <!-- IF U_RESTORE_PERMISSIONS --><a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a> &#8226; <!-- ENDIF -->
        <!-- Start Ultimate Points -->
                    <!-- IF S_POINTS_ENABLE -->
                    <a href="{U_POINTS}"><img src="{T_THEME_PATH}/images/icon_points.gif" width="12" height="13" alt="*" /> {POINTS_LINK}<!-- IF S_USER_LOGGED_IN and S_USE_POINTS --> [ {USER_POINTS} ]<!-- ENDIF --></a>&nbsp; &nbsp;
                    <!-- ENDIF -->
        <!-- End Ultimate Points -->
        <a href="{U_FAQ}">{L_FAQ}</a>
        <!-- IF S_MCHAT_ENABLE and U_MCHAT -->&nbsp; &nbsp;<a href="{U_MCHAT}#mChat">{L_MCHAT_TITLE}</a><!-- ENDIF -->
        <a href="http://www.cruciatus-hogwarts.com/galeria/index.php">Galeria</a> &#8226;
        <!-- IF S_DISPLAY_SEARCH --> &#8226; <a href="{U_SEARCH}">{L_SEARCH}</a><!-- ENDIF -->
        <!-- IF not S_IS_BOT -->
        <!-- IF U_ACP -->
            <!-- IF S_DISPLAY_MEMBERLIST --> &#8226; <a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a><!-- ENDIF -->
        <!-- ENDIF -->
        <!-- ENDIF -->
        <!-- IF not S_IS_BOT --> &#8226; <a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- ENDIF -->
    </div>
     
    <div id="content">
    <table border="0" cellspacing="0" cellpadding="0" width="{$CA_WIDTH}" id="maintable" align="center">
    <tr>
        <td id="contentrow">
     
    <!-- IF not S_IS_BOT && not $CA_SKIP_PM_NOTIFY && S_USER_LOGGED_IN && S_DISPLAY_PM -->
        <!-- IF S_USER_NEW_PRIVMSG -->
            <div class="pm-notify-new"><div class="pm-notify-header">{L_PRIVATE_MESSAGES}</div><a href="{U_PRIVATEMSGS}" style="color: #e31414 !important;">{PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a></div>
        <!-- ELSEIF S_USER_UNREAD_PRIVMSG -->
            <div class="pm-notify-unread"><div class="pm-notify-header">{L_PRIVATE_MESSAGES}</div><a href="{U_PRIVATEMSGS}" style="color: #e31414 !important;">{PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a></div>
        <!-- ENDIF -->
    <!-- ENDIF -->  
     
    <!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) -->
        <div class="pm-notify-new"><div class="pm-notify-header">{L_INFORMATION}</div>{L_BOARD_DISABLED}</div>
    <!-- ENDIF -->
     
    <center><ul id="anuncios">
    <li><a class="current" onClick="return expandcontent('sc1', this)"><img src='{T_THEME_PATH}/images/normas2.png'></a></li>
    <li><a onClick="return expandcontent('sc2', this)"><img src='{T_THEME_PATH}/images/anuncios.png'></a></li>
    <li><a onClick="return expandcontent('sc3', this)"><img src='{T_THEME_PATH}/images/tramas.png'></a></li>
    </ul>
     
    <DIV id="tabcontentcontainer">
    <div id="sc1" class="tabcontent">
    <img id="Image-Maps_4201106011533539" src="{T_THEME_PATH}/images/normas-anuncios.png" usemap="#Image-Maps_4201106011533539" border="0" width="593" height="126" alt="" />
    <map id="_Image-Maps_4201106011533539" name="Image-Maps_4201106011533539">
    <area shape="rect" coords="259,38,360,55" href="http://www.cruciatus-hogwarts.com/foro/primeros-pasos-a-seguir-t3154.html" alt="" title=""    />
    <area shape="rect" coords="250,51,367,68" href="http://www.cruciatus-hogwarts.com/foro/viewtopic.php?f=313&t=3766" alt="" title=""    />
    <area shape="rect" coords="255,65,362,80" href="http://www.cruciatus-hogwarts.com/foro/viewtopic.php?f=313&t=983" alt="" title=""    />
    <area shape="rect" coords="256,78,360,93" href="http://www.cruciatus-hogwarts.com/foro/viewtopic.php?f=313&t=3155" alt="" title=""    />
    <area shape="rect" coords="262,91,355,106" href="http://www.cruciatus-hogwarts.com/foro/viewtopic.php?f=18&t=1074" alt="" title=""    />
    <area shape="rect" coords="262,106,356,120" href="http://www.cruciatus-hogwarts.com/foro/viewtopic.php?f=313&t=3765" alt="" title=""    />
    <area shape="rect" coords="591,124,593,126" href="http://www.image-maps.com/index.php?aff=mapped_users_4201106011533539" alt="Image Map" title="Image Map" />
    </map>
    </div>
     
    <div id="sc2" class="tabcontent">
    <a onClick="return expandcontent('sc3', this)"><img src='{T_THEME_PATH}/images/anuncio.png'></a>
    <br>
    <img src="http://i53.tinypic.com/2cghqhy.jpg"</a>
    </div>
     
    <div id="sc3" class="tabcontent">
    <a onClick="return expandcontent('sc3', this)"><img src='{T_THEME_PATH}/images/trama.png'></a>
    <a href="http://www.cruciatus-hogwarts.com/foro/topic5774.html"><img src="http://img825.imageshack.us/img825/5199/voldeban2.png"></a>
    <br>
    </div>
    </DIV></center>

Re: Cambiar cabecera  Tema Solucionado

Publicado: 17 Jul 2012, 18:15
por Rainwod
Hola, BlackGirl, podrías pasarme el file :...\theme\stylesheet.css de tu template???

Re: Cambiar cabecera

Publicado: 17 Jul 2012, 19:05
por Cruciattus
Si claro, es este
SPOILER_SHOW

Código: Seleccionar todo

/*  phpBB 3.0 Style Sheet
    --------------------------------------------------------------
   Style name:       Cruciatus 2.0
   Based on style:   subsilver2
   Author:  D-eliria ( http://d-eliria.com )     
    --------------------------------------------------------------
*/
@import url("mchat.css");
/* Layout
 ------------ */
* {
	/* Reset browsers default margin, padding and font sizes */
	margin: 0;
	padding: 0;
}

html {
	font-size: 100%;
}

body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Times New Roman;
	color: #57514b;
	background-color: #050505;
	font-size: 11px;
        margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
        padding-bottom: 20px;
        width: 1100px;

}

#body-simple {
	background-color: #020202;
	padding: 5px;
}

/* Misc stuff */
img {
	border: none;
}

.gen {
        font-style: "Sans-serif";
	margin: 1px 1px;
	font-size: 12px;
}

.genmed {
	margin: 1px 1px;
	font-size: 1.1em;
}

.gensmall {
	margin: 1px 1px;
	font-family: "Times new Roman";
}

.titles {
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 1.3em;
	text-decoration: none;
}

.error, table td .error {
	color: #5c2e2e;
}

.spacer {
	color: #837e79; 
	background: #180c0c;
	padding: 1px;
}

hr	{ height: 0px; border: solid #180c0c 0px; border-top-width: 1px;}

.pagination {
	padding: 4px;
	font-size: 1em;
	font-weight: bold;
}

/* Links
 ------------ */
  
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
.rtl a {
	direction: rtl;
	unicode-bidi: embed;
}

/* 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 */
a {
	color: #5c2e2e;
	text-decoration: none;
}

a:visited {
	color: #5c2e2e;
	text-decoration: none;
}

a:hover {
	color: #837e79;
	text-decoration: none;
}

a:active {
	color: #5c2e2e;
	text-decoration: none;
}
a.forumlink {
          color: #57514b;
          font-weight: bold;
          font-family: "Times New Roman";
          font-size: 10px;
          text-align: center;
          text-transform: uppercase;
          letter-spacing: 1px;
          background: #090909; 
          padding:2px; 
          margin-bottom:-9px;
          display: block;
}


a.topictitle {
        color: #837e79;
	margin: 1px 0px;
	font-family: "Times New Roman";
	font-weight: bold;
	font-size: 10px;
}

a.topictitle, .postbody a {
	color: #837e79;
}
a.topictitle:visited, .postbody a:visited {
	color: #837e79;
}
a.topictitle:visited:hover, .postbody a:visited:hover {
	color: #5c2e2e;
}
a.topictitle:hover, .postbody a:hover {
	color: #5c2e2e;
}

/* Header and logo */
#logo-row {
      margin-bottom: 0px;
      width: 1100px;
        background: #000001;
        -moz-border-top-left-radius: 30px;
        -moz-border-top-right-radius: 30px;
        -webkit-border-top-left-radius: 30px;
        -webkit-border-top-right-radius: 30px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
}

html>body #logo-right { min-height: 30px; }

#logo-registered {
    float: right;
    padding: 0px 0px 0px;
    text-align: right;
    font-family: Serif;
    color: #57514b;
    font-weight: bold;
    white-space: normal;  
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#logo-login {
    float: right;
    padding: 15px 10px 5px;
    text-align: right;
    font-family: Serif;
    color: #57514b;
    font-weight: bold;
    white-space: normal;  
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#logo-login input.post { margin-bottom: 3px; }

#logo-clear { clear: both; }

* html #logo-login, * html #logo-registered {
}

* html #logo-clear { font-size: 1px; line-height: 1px; height: 0; overflow: hidden; position: relative; }

.pm-notify-new, .pm-notify-unread {
	font-family: "Times New Roman", Times;
	color: #837e79;
	font-size: 11px;
        letter-spacing: 5px;
	font-weight: bold;
        text-transform: uppercase;
        background: #090909 url('images/cat_title.png') top repeat-x;
        padding: 0px;
	height: 13px;
	text-align: center;
	margin: 5px 0;
	padding: 5px;
	text-align: center;

}
.pm-notify-new a, .pm-notify-new a:visited, .pm-notify-unread a, .pm-notify-unread a:visited { text-decoration: underline; }
.pm-notify-header {
	margin-bottom: 10px;
	color: #837e79;
}
.pm-notify-new { padding: 30px; }

/* Navigation buttons */
.navrow {
	background: #180c0c; 
	height: 15px;
	overflow: hidden;
	color: #090909;
	text-align: center;
	font-family: Serif;
	font-size: 8px;
        letter-spacing: 1px;
	font-weight: bold;
        text-transform: uppercase;
	padding-top: 5px;
        margin-left: auto;
	margin-right: auto;
        margin-bottom: 0px;
}
/* * html .navrow { padding: 0; } */
.navrow b, .navrow strong { font-weight: normal; }
.navrow a, .navrow a:visited {
	color: #837e79;
	text-decoration: none;
	padding-left: 5px;
	padding-right: 5px;
}
.navrow a:hover { 
	color: #57514b; 
	text-decoration: none; 
}

a.link-new, a.link-new:visited { color: #5c2e2e; }
a.link-new:hover, a.link-new:visited:hover { color: #5c2e2e; }

/* Content and tables */
#content {
    background: transparent;
    padding: 0  0px  0px;

}
#maintable {
    border: solid 2px #020202;
    margin: 0 auto;
    -moz-border-bottom-left-radius: 30px;
    -moz-border-bottom-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
#contentrow {
	padding: 0px;
	background-color: #020202; 
        -moz-border-bottom-left-radius: 30px;
        -moz-border-bottom-right-radius: 30px;
        -webkit-border-bottom-left-radius: 30px;
        -webkit-border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
      }

.tablebg {
		background-color: #020202;
                font-weight: none;
}

.tablecat { 
        font-family: Georgia;
	color: #837e79;
	font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: #0F0F0F  url('images/cat_title.png') top repeat-x;
        padding: 0px;
	height: 20px;
	text-align: center;
        padding-top: 2px;
        font-weight: none;
}

.tablesub {
        font-family: Serif;
	color: #837e79;
	font-size: 8px;
        letter-spacing: 1px;
	font-weight: bold;
        text-transform: uppercase;
        background: #180c0c;
        padding: 0px;
	height: 10px;
	text-align: center;
}
.block-start .tablebg { 
    border-top-width: 0; 
    border-bottom-width: 0; 
    border-color: #B2E4B5;
    border-right-color: #EDF9EE;
}

.row1, .row2, .row3, .legend, .forumrules, tr.row1 .row, tr.row2 .row, tr.row3 .row, .postbottom {
	border: solid 0px #020202;
	background: #050505;
	padding: 4px;
       }
th {
	white-space: nowrap;
	padding: 0 5px;
	text-align: center;
	height: 26px;
        font-weight: none;

}
th a, th a:visited {
	color: #837e79; !important;
	text-decoration: none;
         font-weight: none;
}
th a:hover {
	
        color: #5c2e2e; 
	text-decoration: none;
}

td {
	padding: 0px;
}
td.profile {
	padding: 4px;
}

.cat2 {
        font-family: Georgia;
	color: #837e79;
	font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: #0F0F0F  url('images/cat_title.png') top repeat-x;
        padding: 0px;
	height: 20px;
	text-align: center;
        padding-top: 2px;
        font-weight: none;
}

.catdiv, .cat, .cathead {
        font-family: Georgia;
	color: #837e79;
	font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: #090909;
        padding: 0px;
	height: 20px;
	text-align: center;
        padding-top: 2px;
        font-weight: none;
}

.cat, .cathead {
	text-indent: 4px;
}

/* Table header */
caption, .cap-div { 
        font-family: "Times New Roman", Times;
	color: #837e79;
	font-size: 11px;
        letter-spacing: 0px;
	font-weight: bold;
        text-transform: uppercase;
        background: #0F0F0F url('images/cat_title.png') top repeat-x;
        padding: 0px;
	height: 20px;
	text-align: center;
        padding-top: 2px;
}

caption a:link, .cap-div a:link { 
        font-family: "Times New Roman", Times;
	color: #837e79;
	font-size: 11px;
        letter-spacing: 5px;
	font-weight: bold;
        text-transform: uppercase;
        background: #0F0F0F url('images/cat_title.png') top repeat-x;
        padding: 0px;
	height: 20px;
	text-align: center;
        padding-top: 2px;
}

caption, caption h1, caption h2, caption h3, caption h4, caption span,
.cap-div, .cap-div h1, .cap-div h2, .cap-div h3, .cap-div h4, .cap-div span { 
	font-size: 11px;
        letter-spacing: 5px;
	font-weight: bold;
	color: #837e79;
        padding-top: 2px;
        height: 15px;
}
caption h1, caption h2, caption h3, caption h4, caption span,
.cap-div h1, .cap-div h2, .cap-div h3, .cap-div h4, .cap-div span { 
	display: inline;
}
caption a, caption a:visited, .cap-div a, .cap-div a:visited {
	color: #837e79;
 
}
caption a:hover, .cap-div a:hover {
	color: #5c2e2e;
 
}

.block-start {  background-color: #180c0c; }
.block-end-left { background-color: #180c0c; }
.block-end-right {background-color: #180c0c; }
.block-end-left, .block-end-right { height: 4px; overflow: hidden; padding: 0; }

/* Footer */
#wrapfooter {
	text-align: center;
	color: #57514b;
	padding-top: 10px;
	font-size: 10px !important;
}

.copyright {
	color: #57514b;
	font-weight: normal;
	font-size: 10px !important;
	line-height: 1.2em;
        background: #020202; 
     }

/* Breadcrumbs */
.breadcrumb .row1 { 
    color: #57514b;
    border-width: 1px 0 0 1px; 
    background: #090909;    
}
p.breadcrumbs {
        font-family: Serif;
	margin: 0;
	padding: 0;
	float: left;
	color: #57514b;
	font-weight: bold;
	white-space: normal;
	font-size: 8px;
        letter-spacing: 1px;
        text-transform: uppercase;
}
.rtl p.breadcrumbs {
	float: right;
}

p.datetime {
	margin: 0;
	padding: 0;
	float: right;
	white-space: nowrap;
	font-size: 8px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: Serif;
}

.rtl p.datetime {
	float: left;
}

/* Index/viewforum */

.subforum { 
          color: #57514b;
          font-weight: bold;
          font-family: "Times New Roman";
          font-size: 8px;
          text-align: center;
          text-transform: uppercase;
          letter-spacing: 1px;
          background: #090909; 
          padding:2px; 
          margin-bottom: 0px;
        }

.subforum.read { 
          color: #57514b;
          font-weight: bold;
          font-family: "Times New Roman";
          font-size: 8px;
          text-align: center;
          text-transform: uppercase;
          letter-spacing: 1px;
          background: #090909; 
          padding:2px; 
          margin-bottom: 0px;
  }

.subforum.unread { 
          color: #57514b;
          font-weight: bold;
          font-family: "Times New Roman";
          font-size: 8px;
          text-align: center;
          text-transform: uppercase;
          letter-spacing: 1px;
          background: #090909; 
          padding:2px; 
          margin-bottom: 0px;
}

.legend {
	text-align: center;
	margin: 0 auto;
	padding: 2px;
	border-top-color: #B2E4B5;
	border-left-color: #B2E4B5;
}
.legend-viewforum { 
	margin: 0; 
	text-align: left; 
	border-top-color: #B2E4B5;
	border-left-color: #B2E4B5;
}

.forumrules {
	padding: 4px;
	font-weight: normal;
	font-size: 1.1em;
	border-left: solid 1px #180c0c;
	border-right: solid 1px #180c0c;
	border-top: solid 1px #180c0c4;
	border-bottom: solid 1px #180c0c;
	background: #020202;
	font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
.forumrules h3 {
	color: #5c2e2e;
}

/* Post */
.postsubject {
        font-style: georgia;
	font-size: 11px;
	font-weight: bold;
	color: #5c2e2e;
}
td.postbottom { 
	background: #090909; 
	font-size: 12px;
	color: #837e79;
	white-space: nowrap;
	padding: 2px 4px;
	vertical-align: middle;
	
}
td.postbuttons { padding-top: 3px; }

.postdetails { 
        background: #090909;
        border: 1px #020202;
	color: #444;
	font-size: 12px; 
	text-align: left;
        padding: 3px;
}
.postdetails b {
	color: #444;
}
.posterrank		{ font-size: 10px; color: #444; }
.posterprofile	{ font-size: 12px; color: #180c0c; }

.postauthor {
	color: #837e79;
	font-size: 12px;
	margin-bottom: 3px;
	font-weight: bold;
}
.postonline { margin-bottom: 2px; }

.postreported, .postreported a:link, .postreported a:visited, .postreported a:hover, .postreported a:active {
	margin: 1px 0px;
	color: #5c2e2e;
	font-weight: bold;
}

.postapprove, .postapprove a:link, .postapprove a:visited, .postapprove a:hover, .postapprove a:active {
	color: #180c0c;
	font-weight: bold;
}

.postapprove img, .postreported img {
	vertical-align: bottom;
	padding-top: 5px;
}

.postbody {
	font-size: 12px;
	line-height: 1.4em;
	margin: 3px 0;
	font-family: georgia; 
	text-align: justify;

}
.signature {
	font-size: 11px;
	color: #666;
	margin-top: 5px;
}
.signature .line { color: #B4BFB7; }

.postbody li, ol, ul {
	margin: 0 0 0 1.5em;
}

.rtl .postbody li, .rtl ol, .rtl ul {
	margin: 0 1.5em 0 0;
}

.posthilit {
	background-color: #B3C1B4;
	color: #000;
}

.postsubject {
        font-style: georgia;
	font-size: 11px;
	font-weight: bold;
	color: #5c2e2e;
}

.postbody a { text-decoration: underline; }

/* UCP */
.folder-current a, .folder-current a:visited {
	color: #5c2e2e;
	font-weight: bold;
}
.folder-current a:hover { color: #837e79; }

td.pm_marked_colour { background: #837e79; }
td.pm_marked_colour_left { border-left: solid 3px #837e79; padding-left: 2px; }
td.pm_marked_colour_right { border-right: solid 3px #837e79; padding-right: 2px; }

td.pm_replied_colour { background: #050505; }
td.pm_replied_colour_left { border-left: solid 3px #050505; padding-left: 2px; }
td.pm_replied_colour_right { border-right: solid 3px #050505; padding-right: 2px; }

td.pm_friend_colour { background: #050505; }
td.pm_friend_colour_left { border-left: solid 3px #050505; padding-left: 2px; }
td.pm_friend_colour_right { border-right: solid 3px #050505; padding-right: 2px; }

td.pm_foe_colour { background: #180c0c }
td.pm_foe_colour_left { border-left: solid 3px #180c0c; padding-left: 2px; }
td.pm_foe_colour_right { border-right: solid 3px #180c0c; padding-right: 2px; }


/* Form Elements
 ------------ */
form {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

textarea, select, .post, .btnbbcode, .btnmain, .btnlite, .btnfile, .helpline {
	font-weight: normal;
	font-family: georgia;
	color: #57514b;
	border: 1px solid #57514b;
	background-color: #070707;
}

select {
	background-color:#FFFFFF !important;
}

.cat .btnmain, .cat .btnlite, .cat select {
    color: #57514b;
    border: 1px solid #020202;
    background-color: #070707;
}

input {
	font-size: 1.1em;
	padding: 1px;
}
textarea {
	font-size: 1.3em; 
	line-height: 1.4em;
	padding: 2px;
}
select {
	font-size: 1.1em;
	padding: 1px;
}

option {
	padding: 0 1em 0 0;
}

.rtl option {
	padding: 0 0 0 1em;
}

.post {
	border-style: solid;
	border-width: 1px;
}

.btnbbcode {
	font-size: 1.1em;
	color: #837e79;
	border: 1px solid #020202;
	background-color: #070707;
}
.btnbbcode:hover {
	border-color: #502e2e;
	color: #000;
}

.btnmain {
	font-weight: bold;
	cursor: pointer;
	padding: 1px 5px;
	font-size: 1.1em;
}

.btnlite {
	font-weight: normal;
	cursor: pointer;
	padding: 1px 5px;
	font-size: 1.1em;
}

.btnfile {
	font-weight: normal;
	padding: 1px 5px;
	font-size: 1.1em;
}

.helpline {
	background-color: transparent;
	color: #5c2e2e;
	border-style: none;
}
#helpline { color: #5c2e2e; }

* html textarea, * html select, * html .post, * html .btnmain, * html .btnlite, * html .btnfile {
}
* html .cat .btnmain, * html .cat .btnlite {
}
textarea:hover, select:hover, .post:hover, .btnmain:hover, .btnlite:hover, .btnfile:hover {
	border-color: gray; 
}
textarea:focus, select:focus, .post:focus, .btnmain:focus, .btnlite:focus, .btnfile:focus {
	border-color: #020202; 
	color: #57514b;
	background-color: #070707;
}
.cat .btnmain:hover, .cat .btnlite:hover, .cat select:hover {
    border-color: #180c0c;
}
.cat .btnmain:focus, .cat .btnlite:focus, .cat select:focus {
   border-color: #020202; 
    color: #57514b;
}

label:hover { 
	color: #5c2e2e; 
}

textarea.posting-textarea, #ie8#fix {
    width: 98%;
}

/* BBCode
 ------------ */
.bb-wrapper {
	clear: both;
	margin: 10px 20px;
}
.bb-wrapper .bb-wrapper {
	margin: 5px 10px;
}

.bb-content {
    background-color: #090909;
    padding: 0px;
    margin-left: 8px;
}

.bb-quote {
    padding: 10px;
    background-color:#0f0f0f;
    border: 1px dashed #676665 ;
    -webkit-border-radius: 10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px;
}
	
.bb-code { 
    background-color: #090909;
}
.bb-attach { 
    background-color: #090909;
}
   
    .quotetitle, .attachtitle, .codetitle {
    background-image: url(images/cat_title.png);
    background-repeat: repeat;
    color: #888;
    font-size: 0.85em;
    font-weight: bold;
    padding-bottom: 3px;
    padding-left: 8px;
    text-transform: uppercase;
    }
.quotetitle .quotetitle {
	font-size: 1em;
        }

.quotecontent, .attachcontent {
	font-weight: normal;
	font-size: 1em;
	line-height: 1.4em;
/*	font-family: "Lucida Grande", "Trebuchet MS", Helvetica, Arial, sans-serif; */
	color: #444;
        margin-left: 8px;
}
.attachcontent {
	font-size: 0.85em;
}

    .codecontent {
    direction: ltr;
    font-weight: normal;
    font-size: 11px;
    font-family: Monaco, 'Courier New', monospace;
    color: #444;
    margin-left: 8px;
    padding: 10px;
    background-color:#0f0f0f;
    border: 1px dashed #676665 ;
    -webkit-border-radius: 10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px;
    }

.attachcontent, .codecontent {
	overflow: auto;
	overflow-x: auto;
}

.syntaxbg {
	color: #F0F5F1;
}

.syntaxcomment {
	color: #837e79;
}

.syntaxdefault {
	color: #444;
}

.syntaxhtml {
	color: #687869;
}

.syntaxkeyword {
	color: #457549;
}

.syntaxstring {
	color: #637865;
}


/* More misc stuff */
h1 {
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
	font-weight: bold;
	font-size: 1.8em;
	text-decoration: none;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.5em;
	text-decoration: none;
	line-height: 120%;
}

h3 {
	font-size: 1.3em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 120%;
}

h4 {
	margin: 0px;
	font-size: 1.1em;
	font-weight: bold;
}

p {
	font-size: 1.1em;
}

p.moderators {
	margin: 0px;
	float: left;
	color: #837e79;
	font-weight: bold;
}

.rtl p.moderators {
	float: right;
}

p.linkmcp {
	margin: 0px;
	float: right;
	white-space: nowrap;
}

.rtl p.linkmcp {
	float: left;
}

p.searchbar {
	 font-family: Serif;
	margin: 0;
	padding: 0;
	float: center;
	color: #57514b;
	font-weight: bold;
	white-space: normal;
	font-size: 8px;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-width: 1px 0 0 1px; 
          background: #090909;    
} 

p.searchbarreg {
 font-family: Serif;
	margin: 0;
	padding: 0;
	float: center;
	color: #57514b;
	font-weight: bold;
	white-space: normal;
	font-size: 8px;
        letter-spacing: 1px;
        text-transform: uppercase;
    border-width: 1px 0 0 1px; 
    background: #090909;    
}

.rtl p.searchbarreg {
	float: left;
}

p.forumdesc {
        color: #57514b;
        font-family: georgia;
        font-size: 11px;
	padding-bottom: 4px;
        background: #070707; 
        padding:2px; 
        margin-top: 5px;
        margin-bottom: 0px;
       /*text-align: center;*/
}

p.topicauthor {
	margin: 1px 0px;
}

p.topicdetails {
	margin: 1px 0px;
        font-size: 10px;
        font-style: serif;
}
td.history-current, tr.row1 td.history-current, tr.row2 td.history-current {
	background: #F5FBF5;
}

table.colortable td {
	padding: 0;
}

pre {
	font-size: 1.1em;
	font-family: Monaco, 'Courier New', monospace;
}

.nowrap {
	white-space: nowrap;
}

.username-coloured {
	font-weight: bold;
}

/* GYM Sitemaps & RSS - www.phpbb-seo.com */
div.gymsublist {
	display:block;
	position:relative;
	padding-left:10px;
	padding-top:5px;
	padding-bottom:10px;
	padding-right:0;
	margin:0;
}
div.gymsublist ul {
	display:block;
	position:relative;
	height:1%;
	padding-left:30px;
}
div.gymsublist ul li {
	display:block;
	position:relative;
	line-height:18px;
	font-size:11px;
}
/* GYM Sitemaps & RSS - www.phpbb-seo.com */

.sep {
	color: #837e79;
}


/* reset style for file input */
.btnfile, .btnfile:hover, .btnfile:focus { 
    border: none; 
    background-color: #FFF;
    color: #000;
}

/* Sidebar
 ------------ */
.welcome {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/sidebar1.png);
background-repeat: no-repeat; 
width: 220px; 
border: 3px solid #090909;
 }

.guia {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/sidebar2.png);
background-repeat: no-repeat; 
width: 220px; 
border: 3px solid #090909;
 }

.staff {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/sidebar3.png);
background-repeat: no-repeat; 
width: 220px; 
border: 3px solid #090909;
 }

.profeta {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/backsidebar4.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.corazon {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/sidebar5.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.puntos {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/backsidebar6.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.quidditch {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/backsidebar7.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.instituciones{   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/sidebar8.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.varios{   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/backsidebar9.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.creditos{   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/sidebar10.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.afiliados{   font-family: georgia;
font-size: 12px;
line-height: 135%; 
background-color: #050505; 
background-image: url(http://www.cruciatus-hogwarts.com/foro/styles/cruciattusv2/theme/images/backsidebar11.png);
background-repeat: repeat; 
width: 220px; 
border: 3px solid #090909;
font-color: #333333;
 }

.sidebarstyle {   font-family: georgia;
font-size: 12px;
line-height: 135%; 
font-color: #333333;
padding-left: 20px;
padding-right: 20px;
text-align: center;
width: 180px;
 }

.sidebarstyle2 {   font-family: georgia;
font-size: 20px;
line-height: 135%; 
font-color: #333333;
text-align: center;
 }

.sidebarstyle3 {   font-family: georgia;
font-size: 15px;
line-height: 135%; 
font-color: #333333;
text-align: center;
 }


#popmenu{
position: absolute;
background-image: url(images/pattern2.png);
font: normal 12px calibri; letter-spacing:0px;
line-height: 18px;
z-index: 100;
visibility: hidden;
text-align:center;
padding: 10 10 10 10px;
}

#popmenu a{
text-decoration: none;
padding-left: 6px;
color: 837e79;
display: block;
line-height:90%;

}

#popmenu a:hover{ 
background-color: #090909; color:#57514b;
}

.expand, .collapse {
float: center;
border-width:0px;
padding:0px;
margin:0px;
width: 100%;
}
.collapse table#expandable {
display: none;
}

Re: Cambiar cabecera

Publicado: 01 Ago 2012, 13:19
por zoby
¿Las imagenes que comentas no son solo 3?
Yo en la cabecera veo 3 imagenes, y el código en el overall_header.html es este

Código: Seleccionar todo

    <div id="logo-row">
    <a href="http://www.cruciatus-hogwarts.com/foro/index.php"><table border="0" cellpadding="0" cellspacing="0" width="1100" style="padding-top: 0px; margin-top: 0px">
    <tr>
      <td border="0" cellpadding="0" cellspacing="0">
    <div id="fadeshow1"></div>
    </td>
      <td border="0" cellpadding="0" cellspacing="0">
       <img src="{T_THEME_PATH}/images/table1b.png" border="0" alt="" height="400" width="286"></td>
      <td border="0" cellpadding="0" cellspacing="0">
       <img src="{T_THEME_PATH}/images/table2b.png" border="0" alt="" height="400" width="290"></td>
      <td border="0" cellpadding="0" cellspacing="0">
       <img src="{T_THEME_PATH}/images/table3.png" border="0" alt="" height="400" width="250"></td>
     </tr>
    </table></a></center>     </div>
La solución sería dejar solo una, pero claro entonces me parece a mi que tendrías que cambiar algo mas se vería algo vacio :cachas:
Saludos :wink: