• » webSPELL.org - Free Content Management System
  • Language switch: English German
  • login



    » lost password?   » register now
  • About webSPELL

    webSPELL is a free Content Management System which was especially developed for the needs of esport related communities. Since a short while we are also offering an optimized and enhanced webSPELL version for the special requirements of non-profit organisations. The purpose of both systems is to offer a professional and free opportunity to create and administrate your own website in an easy and optimized way.

    » Learn more about webSPELL     » Download webSPELL now!
  • Advertisement

    Follow us

  • Sort:     printview
    Author
    Message
    webSPELL newbie
    41 Posts
    24.04.2012, 11:09 offline quote 

    Moiin

    Habe ein Problem (mal wieder :S)

    gibt eig nicht viel zu sagen.. siehe selbst http://gfx-reviews.bpl.../test/index.php?site=news

    Warum kommt der footer und der bg rechts von den boxen nicht mit ?

    Hier die _site.css vom content :
    #contentarea {
    width:1200px;
    height:auto;
    float:left;
    }
    #content {
    width:850px;
    height:965px;
    background-color:#FFF;
    float:left;
    display:inline;
    }
    #content_head {
    width:850px;
    height:54px;
    background-image:url(Bilder/content_head.png);
    }
    #newsarea {
    width:850px;
    height:auto;
    background-image:url(Bilder/content_bg.png);
    }
    #boxen {
    width:350px;
    height:965px;
    background-color:#000;
    float:left;
    }
    #box1_head1 {
    width:250px;
    height:39px;
    background-image:url(Bilder/box_01.png);
    float:left;
    }
    #box1_head2 {
    width:100px;
    height:39px;
    background-image:url(Bilder/box_02.png);
    float:left;
    }
    #box1_bg {
    width:350px;
    height:204px;
    background-image:url(Bilder/box_03.png);
    }
    #box2_head1 {
    width:350px;
    height:36px;
    background-image:url(Bilder/box_04.png);
    float:left;
    }
    #box2_bg {
    width:350px;
    height:204px;
    background-image:url(Bilder/box_05.png);
    }
    #box3_head1 {
    width:350px;
    height:36px;
    background-image:url(Bilder/box_06.png);
    float:left;
    }
    #box3_bg {
    width:350px;
    height:204px;
    background-image:url(Bilder/box_07.png);
    }
    #footer {
    width:1200px;
    height:52px;
    background-image:url(Bilder/footer.png);
    margin-bottom:30px;
    }
    #footer_text {
    width:1050px;
    height:px;
    padding-left:100px;
    padding-right:50px;
    padding-top:25px;
    text-align:right;
    }


    und hier die div von der index.php:
    <div class="clear"></div>
    <div id="contentarea">
    <div id="content">
    <div id="content_head"></div>
    <div id="newsarea">
    <!-- php site include -->
    <?php
    if(!isset($site)) $site="news";
    $invalide = array('\\','/','/\/',':','.');
    $site = str_replace($invalide,' ',$site);
    if(!file_exists($site.".php")) $site = "news";
    include($site.".php");
    ?>
    <!-- content include -->
    </div>
    </div><!-- Content End -->
    <div id="boxen">
    <div id="box1_head1"></div>
    <a href="index.php?site=clanwars" id="box1_head2"></a>
    <div class="clear"></div>
    <div id="box1_bg"><div style="padding:5px;"><?php include("sc_results.php"); ?></div></div>
    <div class="clear"></div>
    <div id="box2_head1"></div>
    <div class="clear"></div>
    <div id="box2_bg"><div style="padding:5px;"><?php include("latesttopics.php"); ?></div></div>
    <div class="clear"></div>
    <div id="box3_head1"></div>
    <div class="clear"></div>
    <div id="box3_bg"><div style="padding:5px;"><?php include("sc_files.php"); ?></div></div>
    </div>
    </div><!-- Contentarea End -->
    <div class="clear"></div>
    <div id="footer">
    <div id="footer_text">
    © 2012 by <a href="index.php?site=contact">www.team-bring-it.de</a> - All Rights Reserved -
    <a href="index.php?site=contact">Contact</a> | <a href="index.php?site=imprint">Impressum</a> | <a href="index.php?site=forum">Forum</a></div>
    </div>


    P.S.: es ist mein erstes design das ich mit <div> anpasse
    Lg Steffke

    website: gfx-reviews.bplaced.net/test/index.php?site=news
    version: 4.2.3
    Administrator
    Member of webSPELL e.V.
    3068 Posts
    24.04.2012, 13:43 offline quote 

    Falsch gefloated...
    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    8.
    9.
    10.
    <div id="navi">
            <a href="#" id="nav1" onClick="showit(0)"></a>
            <a href="#" id="nav2" onClick="showit(1)"></a>
            <a href="#" id="nav3" onClick="showit(2)"></a>
            <a href="#" id="nav4" onClick="showit(3)"></a>
            <a href="#" id="nav5" onClick="showit(4)"></a>
            <a href="index.php?site=sponsors" id="nav6"></a>
            <a href="index.php?site=partner" id="nav7"></a>
            <a href="index.php?site=forum" id="nav8"></a>
            </div><!-- navi end -->


    sowas macht man mit einer Liste.
    webSPELL newbie
    41 Posts
    24.04.2012, 13:59 offline quote 

    Also

    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    8.
    9.
    10.
    11.
    12.
    <div id="navi">
    <ul>
    <li><a href="#" id="nav1" onClick="showit(0)"></a></li>
    <li><a href="#" id="nav2" onClick="showit(1)"></a></li>
    <li><a href="#" id="nav3" onClick="showit(2)"></a></li>
    <li><a href="#" id="nav4" onClick="showit(3)"></a></li>
    <li><a href="#" id="nav5" onClick="showit(4)"></a></li>
    <li><a href="index.php?site=sponsors" id="nav6"></a></li>
    <li><a href="index.php?site=partner" id="nav7"></a></li>
    <li><a href="index.php?site=forum" id="nav8"></a></li>
    </ul>
    </div>


    und dann sollte der content auch gehen ?
    webSPELL newbie
    41 Posts
    24.04.2012, 14:24 offline quote 

    Ich habe die Navigation erstmal rausgenommen.. der fehler ist trotzdem noch da... daran lag es also nicht..
    webSPELL lover
    1022 Posts
    24.04.2012, 14:32 offline quote 

    Das es an der Navi liegt, wollte Pascal glaube ich nicht sagen. Ging nur um die Semantik.

    Das Problem ist folgendes:
    In dem div#contentarea liegen zwei gefloatete Elemente. Dadurch vergrößert sich der div#contentarea nicht mit. Du hast jetzt zwei Möglichkeiten. Entweder du gibst dem div#contentarea ein overflow:hidden; was in neueren Browsern das Vergrößern erzwingt, oder du packst in den div als drittes Element einen div.clear!

    mfG

    http://www.henningk.de | no support for addons etc. via PN or IM.
    webSPELL newbie
    41 Posts
    24.04.2012, 17:13 offline quote 

    hmm ich habs ma neu gecodet falls ich clear vergessen habe.. aber hab ich nicht.. habe in den contentarea nun auch overflow:hidden; drin und nun wenn ich ein forum öffnen will siehts so aus

    http://gfx-reviews.bpl...hp?site=forum&board=3

    aber auch nur bei forum
    webSPELL lover
    1022 Posts
    24.04.2012, 18:15 offline quote 

    Da fehlt jetzt irgendwo ein div-Endtag

    http://www.henningk.de | no support for addons etc. via PN or IM.
    webSPELL newbie
    41 Posts
    25.04.2012, 12:42 offline quote 

    hmm kp..

    ich denke nicht.. hier die index..
    read more Mehr lesen


    hier _site.css
    read more Mehr lesen
    Sort:     printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
  • » Support

    » Topics
    21.05.2013 - 21:06 - 0 Replies
    » msql datenbank transfer
    msql datenbank transfer
    Last post: nappel.ger
    Board: DE - Technischer Support
    21.05.2013 - 21:06
    21.05.2013 - 20:12 - 3 Replies
    » When the update?
    When the update?
    Last post: Argu
    Board: EN - General
    21.05.2013 - 20:12
    21.05.2013 - 19:43 - 9 Replies
    » login startseite
    login startseite
    Last post: Argu
    Board: DE - Technischer Support
    21.05.2013 - 19:43
    21.05.2013 - 13:18 - 7 Replies
    » [Biete] Template Designs
    [Biete] Template Designs
    Last post: Marceld
    Board: DE - Biete
    21.05.2013 - 13:18
    21.05.2013 - 12:33 - 4 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: [Fabian]
    Board: DE - Allgemeiner Support
    21.05.2013 - 12:33
    21.05.2013 - 05:15 - 0 Replies
    » Need Designer for Logo/Te...
    Need Designer for Logo/Template
    Last post: Kody
    Board: EN - General
    21.05.2013 - 05:15
    21.05.2013 - 05:13 - 0 Replies
    » Looking for Designers/Cod...
    Looking for Designers/Coders (paid)
    Last post: Kody
    Board: EN - Requests
    21.05.2013 - 05:13
    20.05.2013 - 21:11 - 12 Replies
    » High Quality Website
    High Quality Website
    Last post: Dansjostedt
    Board: EN - Offers
    20.05.2013 - 21:11
    20.05.2013 - 18:27 - 4 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Argu
    Board: DE - Anfragen
    20.05.2013 - 18:27
    20.05.2013 - 11:47 - 5 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Dynamic-Webmedia
    Board: DE - Suche
    20.05.2013 - 11:47
    20.05.2013 - 00:07 - 0 Replies
    » [S] Suche Programmierer
    [S] Suche Programmierer
    Last post: phoenix762
    Board: DE - Suche
    20.05.2013 - 00:07
    19.05.2013 - 03:55 - 8 Replies
    » Mein Forum
    Mein Forum
    Last post: Lordy4007
    Board: DE - Fragen zur Seite
    19.05.2013 - 03:55
    18.05.2013 - 19:58 - 36 Replies
    » Exklusiv Webseite zur Mie...
    Exklusiv Webseite zur Miete
    Last post: liQweb
    Board: DE - Biete
    18.05.2013 - 19:58
    18.05.2013 - 12:21 - 1 Replies
    » Query failed
    Query failed
    Last post: LoRd
    Board: DE - Allgemeiner Support
    18.05.2013 - 12:21
    18.05.2013 - 09:36 - 3 Replies
    » benötige hilfe bei paar k...
    benötige hilfe bei paar kleinigkeiten
    Last post: immostar
    Board: DE - Technischer Support
    18.05.2013 - 09:36
    18.05.2013 - 03:33 - 4 Replies
    » [SELL] Gaming Website
    [SELL] Gaming Website
    Last post: hornyst
    Board: EN - Offers
    18.05.2013 - 03:33
    18.05.2013 - 00:32 - 6 Replies
    » Hide BBCODE Echo
    Hide BBCODE Echo
    Last post: dado2106
    Board: EN - Technical support
    18.05.2013 - 00:32
    17.05.2013 - 21:42 - 0 Replies
    » website help
    website help
    Last post: envy0024
    Board: EN - Technical support
    17.05.2013 - 21:42
    17.05.2013 - 21:03 - 1 Replies
    » Need Coder!
    Need Coder!
    Last post: iG.ShAdOw
    Board: EN - Requests
    17.05.2013 - 21:03
    17.05.2013 - 20:44 - 9 Replies
    » Query failed!
    Query failed!
    Last post: LoRd
    Board: DE - Allgemeiner Support
    17.05.2013 - 20:44
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers