MyBB.de Forum
Header in 100% Breite aber wie ? - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html)
+--- Thema: Header in 100% Breite aber wie ? (/thread-5560.html)



Header in 100% Breite aber wie ? - SuPeRbOy1303 - 14.04.2007

ich wollte den Header und den Footer in 100% Breite aber wie mache ich das ?

SuPeRbOy1303


RE: Header in 100% Breite aber wie ? - Every - 14.04.2007

am besten dem "container"-Container die Breite von 100% geben und dem "content"-Container die gewünschte Breite geben.


RE: Header in 100% Breite aber wie ? - SuPeRbOy1303 - 15.04.2007

<head>
<link rel="stylesheet" type="text/css" href="css.datei ^^" />
</head>


<a name="top" id="top"></a>
<div id="container">
<div id="header">
<div align="right"><div class="CnuddelsZbanner.gif"></div><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>
<div class="menu">
<ul>
<li><a href="index.php">
<span style="color: #C60D0C;"><b>&raquo;</b></span><b> blabla</b></a></li>
<li> <a href="portal.php"><b><font color="#C60D0C">&raquo;</font></b> haha</a></li>
<li> <a href="showteam.php"><span style="color: #CDDC0D;"><b>&raquo;</b></span> test 3</a></li>
<li> <a href="memberlist.php"><span style="color: #C6CDDC;"><b>&raquo;</b></span> Test</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php"><span style="color: #CDDC0C;"><b>&raquo;</b></span> {$lang->toplinks_search}</a></li>
<li> <a href="/forumdisplay.php?fid=77"><span style="color: #CDDD0C;"><b>&raquo;</b></span> Test 4</a></li>
<li> <a href="index.php"><span style="color: #CDDD0C;"><b>&raquo;</b></span> Test5</a></li>
   <li><a href="/showthread.php?tid=68"><span style="color: #C60C0C;"><b>&raquo;</b></span> Regeln</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php"><span style="color: #C6BBBC;"><b>&raquo;</b></span> {$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><span style="color: #C6AAAC;"><b>&raquo;</b></span> {$lang->toplinks_help}</a></li>
</ul>
</div>
<hr class="hidden" />
<div id="panel">
{$welcomeblock}
</div>
</div>
<hr class="hidden" />
<br class="clear" />
<div id="content">
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$boardmsg}
<navigation>
<br class="clear" />

Etwas verändert aber sinn bleibt gleich wo füg ich jetzt die Größe Width ein ?


RE: Header in 100% Breite aber wie ? - StefanT - 15.04.2007

Du musst das Theme bearbeiten, nicht das Template.


RE: Header in 100% Breite aber wie ? - modercol - 15.04.2007

Man kanns auch im Template machen:
header-Template
<div id="container"> oben im Tempalte entfernen und so wieder reinsetzen wie es hier ist:
Code:
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" />{$lang->toplinks_help}</a></li>
                </ul>
            </div>
            <hr class="hidden" />
            <div id="panel">
                {$welcomeblock}
            </div>
        </div>
    <div id="container">
        <hr class="hidden" />
footer
</div></div> von ganz unten entfernen und so wieder hinsetzen:
Code:
</div></div>
            <div id="copyright" align="center">
<div id="debug"><debugstuff></div>
                <!-- You may NOT remove, modify or hinder the visibility of the MyBB copyright at any time.
                     It must contain the links to the MyBB website and be formatted appropriately.

                     Failure to comply with the above will result in prosecution to the full extent of the law.
                     This is free software, support us and we'll support you. -->Skin- und Profil-Layout copyright &copy; by <a href="http://forumowrestling.fo.funpic.de/member.php?action=profile&amp;uid=1">modercol</a><br />
{$lang->powered_by} <a href="http://www.mybboard.com" target="_blank">MyBB</a> {$mybbversion} | &Uuml;bersicht by <a href="https://www.mybb.de" target="_blank">MyBBoard.de</a> | Protected by
<a href="http://www.cback.de" target="_blank">CBACK.DE</a>
CrackerTracker |
                {$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.com" target="_blank">MyBB Group</a></strong> | Copyright &copy; 2006-{$copy_year}<strong><a href="http://www.owrestling.de"> owrestling.de</a></strong>
                <!-- End copyright -->
zum Vergleich vorher:
Code:
<div id="copyright">
                <div id="debug"><debugstuff></div>
                <!-- You may NOT remove, modify or hinder the visibility of the MyBB copyright at any time.
                     It must contain the links to the MyBB website and be formatted appropriately.

                     Failure to comply with the above will result in prosecution to the full extent of the law.
                     This is free software, support us and we'll support you. -->
{$lang->powered_by} <a href="http://www.mybboard.com" target="_blank">MyBB</a> {$mybbversion}<br />
                {$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.com" target="_blank">MyBB Group</a></strong>
                <!-- End copyright -->
                <br />
<br class="clear" />
        </div>
        </div>