Ankündigung

Einklappen
Keine Ankündigung bisher.

Problemchen

Einklappen

Neue Werbung 2019

Einklappen
X
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Problemchen

    Sers zusammen, also ich hab mich hier mal angemeldet
    weil ich denke hier bekomm ich besser geholfen.

    Mein Problem ist folgendes, Der Kasten um meinen Inhalt im
    sogenannten Itemshop ist irgendwie daneben und ich habe absolut
    keine Ahnung warum wieso weshalb.

    #Wir befinden uns in Kategorie 'Hilfsitems' und da wo das rot Markierte
    ist soll eigentlich auch die Kategorie angezeigt werden in welcher man
    sich befindet..

    Screen:


    Das Script:
    PHP-Code:
          <div id="con-top">Itemshop</div>
          <div id="con-mid">
    <?PHP

      
    if(isset($_SESSION['user_admin']) && checkInt($_SESSION['user_admin']) && $_SESSION['user_admin']>=0) {
        if(isset(
    $_GET['k']) && checkInt($_GET['k'])) {
          
    $sqlCmdS="SELECT * FROM ".SQL_HP_DB.".is_items WHERE kategorie_id='".$_GET['k']."' ORDER BY id DESC";
        }
        else {
          
    $sqlCmdS="SELECT * FROM ".SQL_HP_DB.".is_items ORDER BY id DESC";
        }
      
    ?>
      <div id="isleft">
        <h2>Guthaben</h2>
        <p><b><?PHP echo $_SESSION['user_coins']; ?> Coins</b></p>
        <h2>Kategorien</h2>
        <ul>
          <?PHP
            $sqlCmd 
    "SELECT * FROM ".SQL_HP_DB.".is_kategorien ORDER BY titel ASC;";
            
    $sqlQry mysql_query($sqlCmd,$sqlHp);
            while(
    $getKats mysql_fetch_object($sqlQry)) {
              echo
    '<li><a href="index.php?s=itemshop&k='.$getKats->id.'">'.$getKats->titel.'</a></li>';
            }
          
    ?>
        </ul>
      </div>
      <div id="isright">
        <h2>Itemshop</h2>
          <table>
        <?PHP
          $sqlQry
    =mysql_query($sqlCmdS,$sqlHp);
          while(
    $getItems=mysql_fetch_object($sqlQry)) {
            
    $aktItem compareItems($getItems->vnum);
            
    $itemStufe = (checkInt($aktItem['stufe'])) ? "+".$aktItem['stufe'] : '';
            
    ?>
            <tr>
              <th colspan="2" class="topLine"><?PHP echo $aktItem['item'].$itemStufe?> (<b><?PHP echo $getItems->preis?> Coins</b>)</th>
            </tr>
            <tr>
              <td class="isImg">
                <?PHP 
                  
    if(!empty($getItems->bild)) echo'<img src="./is_img/'.$getItems->bild.'" title="'.$aktItem['item'].'" alt="'.$aktItem['item'].'"/>';
                
    ?>
              </td>
              <td class="tdunkel"><?PHP echo $getItems->beschreibung?></td>
            </tr>
            <tr>
              <td colspan="2" class="isBuy"><a href="index.php?s=is_buy&id=<?PHP echo $getItems->id?>">Kaufen</a></td>
            </tr>
            <?PHP
          
    }
        
    ?>
          </table>
      </div>
      <?PHP
      
    }
      else {
        echo
    '<p class="meldung">Sie müssen für diesen Bereich angemeldet sein.</p>';
      }
    ?>
          </div>
          <div id="con-bot"></div>
        </div>
    Danke im Voraus, wenn mir irgendwer da helfen kann!

  • #2
    Toller Titel für den Thread! [/IRONIE AUS]

    http://php-de.github.io/#debugging
    Fatal Error: Windows wird gestartet

    Wie administriert man ein Netzwerk: Beispiel

    Kommentar


    • #3
      Für dein Darstellungsproblem ist der PHP-Code irrelevant, interessanter wäre das was als HTML-/CSS-Code im Browser ankommt. Poste mal den bzw. besser einen Link zu einer Seite unter der man sich das live anschauen kann.

      Kommentar


      • #4
        Wie soll ich den Titel sonst nennen? Meine Güte.

        @tk1234 hast du Skype?

        Kommentar


        • #5
          wenn man sich das mal gut überlegt, ist mit Glück auch die Fragestellung brauchbar, ich verstehe kaum was du wirklich willst. Und es scheint mir mal eben dahingeschrieben zu sein. Und dann erwartest du auch noch, dass wir einfach deinen Code analysieren, was einfach deine Aufgabe ist. Ich sitze beim Entwickeln auch mal länger vor meinem Code und weiß nicht, was falsch ist, aber wenn ich dann wirklich was posten sollte, dann mach ich das auch vernüftig.
          Fatal Error: Windows wird gestartet

          Wie administriert man ein Netzwerk: Beispiel

          Kommentar


          • #6
            Hab ich schon und mir kommt kein Fehler ins Auge.

            Du solltest dir eher mal überlegen produktivere Beiträge zu leisten
            wenn jemand Hilfe benötigt?! In welchem Paragraph steht denn
            geschrieben dass es meine Aufgabe ist es selbst zu analysieren
            wenn ich den Fehler (falls es einen gibt) nicht finde?

            Kommentar


            • #7
              In den Forenrichtlinien. Aber darum geht es jetzt auch nicht. Kannst du bitte den anderen Post ernst nehmen und den Link posten?
              Fatal Error: Windows wird gestartet

              Wie administriert man ein Netzwerk: Beispiel

              Kommentar


              • #8
                um das live zu sehen müsstet ihr euch auf meiner Homepage registrieren und anmelden.
                also denke ich kaum dass ich euch den Link senden werde.

                Kommentar


                • #9
                  dann wenigstens die html ausgabe
                  Fatal Error: Windows wird gestartet

                  Wie administriert man ein Netzwerk: Beispiel

                  Kommentar


                  • #10
                    wie geb ich die denn aus?
                    Achja des Script ist nicht von mir.

                    Kommentar


                    • #11
                      Du rufst es in deinem Browser auf drückst Strg+U oder so und postest diesen Text hier und dass bitte mit den geladenen css Datein
                      Fatal Error: Windows wird gestartet

                      Wie administriert man ein Netzwerk: Beispiel

                      Kommentar


                      • #12
                        PHP-Code:
                        <?xml version="1.0"?><!DOCTYPE html>
                        <html>
                        <head>
                        <!--
                        // Copyright (c) 2012 , 'Rayzor @ elitepvpers.de
                        //
                        // This work by Rayzor is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
                        // To view a copy of this license, see the LICENSE file, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or
                        // send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
                        -->
                            <title>NachtAktiv - Start your Feeling now</title>
                            <meta http-equiv="content-type" content="text/html; charset=utf-8" />

                            <link rel="stylesheet" href="style.css" type="text/css" />
                            <script type="text/javascript" src="../ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
                            <script type="text/javascript" src="js/custom.js"></script>
                          </head>
                          <body><script type="text/javascript">ANCHORFREE_VERSION="623161526"</script><script type='text/javascript'>var _AF2$ = {'SN':'HSSHIELD00DE','IP':'173.245.84.89','CH':'HSSCNL000649','CT':'0','HST':'&sessStartTime=1420466990&in=1420489196_324371886|d,324371886|w,324371886|m,324371886|t&out=1420489196_43822566|d,43822566|w,43822566|m,43822566|t&NUM_VID=0&NUM_VID_TS=1420473296&accessLP=1&SFLAG=1&bFirefox=34&pv=0&toUpgElite=1420489038&clsBtnCnt=1','AFH':'hss1116','RN':Math.floor(Math.random()*999),'TOP':(parent.location!=document.location||top.location!=document.location)?0:1,'AFVER':'3.42','fbw':false,'FBWCNT':0,'FBWCNTNAME':'FBWCNT_CHROME','NOFBWNAME':'NO_FBW_CHROME','B':'c','VER': 'nonus'};if(_AF2$.TOP==1){document.write("<scr"+"ipt src='http://box.anchorfree.net/insert/insert.php?sn="+_AF2$.SN+"&ch="+_AF2$.CH+"&v="+ANCHORFREE_VERSION+6+"&b="+_AF2$.B+"&ver="+_AF2$.VER+"&afver="+_AF2$.AFVER+"' type='text/javascript'></scr"+"ipt>");}</script>
                            
                                    
                                 <div id="header"><a href="#" class="logo"><img src="img/logo.png"></a></div>      
                          <div id="navi">
                            <ul>
                                <li><a href="index.php">HOME</a></li>
                                <li><a href="index.php?s=register">REGISTER</a></li>
                                <li><a href="index.php?s=downloads">DOWNLOADS</a></li>
                                <li><a href="index.php?s=rankings">RANKING</a></li>
                                <li><a href="index.php?s=itemshop">ITEMSHOP</a></li>
                                <li><a href="/board" target="_blank">FORUM</a></li>
                                <li><a href="ts3server://kingxmarfu.nachtaktiv.vc">TEAMSPEAK</a>
                            </ul>
                          </div>

                        <div class="clear">

                          <div id="container">

                              <div id="sidebar">

                        <a href="index.php?s=downloads"><div id="dl"></div></a>
                        <br/>
                        <a href="/board"><div id="comm"></div></a>
                        <br/>
                        <a href="#" onClick="NewWindow=window.open('vote/vote.php', 'Vote for Coins', 'toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=yes,width=620,height=450,left=22,top=22'); return false; "><div id="vote"></div></a>
                        <br/>

                        <div class="sb-top">Login</div>
                                <div class="sb-mid">
                        <div style="margin-left:10px;">
                             <center>Coins: <b>
                            30000000</b> <img src="./img/icons/coins.png" width="16" height="16" /><br/></center>
                            <br>
                            <img src="./img/icons/user_red.png" width="16" height="16" /> <a href="index.php?s=admin">Admin</a><br />      <img src="./img/icons/user_suit.png" width="16" height="16" /> <a href="index.php?s=login">Userpanel</a><br />
                              <img src="./img/icons/user.png" width="16" height="16" /> <a href="index.php?s=charaktere">Charakter &Uuml;bersicht</a><br />
                              <img src="./img/icons/user_edit.png" width="16" height="16" /> <a href="index.php?s=passwort">Daten &auml;ndern</a><br />
                              <img src="./img/icons/cart.png" width="16" height="16" /> <a href="index.php?s=itemshop">Itemshop</a><br />
                              <img src="./img/icons/coins_add.png" width="16" height="16" /> <a href="index.php?s=spenden">Spenden</a><br />
                              <img src="./img/icons/weather_sun.png" width="16" height="16" /> <a href="#" onClick="NewWindow=window.open('http://akaya2.de/vote/vote.php', 'Vote for Coins', 'toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=yes,width=620,height=450,left=22,top=22'); return false; ">Vote</a><br />
                              <img src="./img/icons/door_in.png" width="16" height="16" /> <a href="index.php?s=logout">Logout</a><br />
                              </div>
                                
                                </div>
                        <div class="sb-bot"></div>
                           
                        </div>





                            <div id="content">


                               <div id="con-top">Itemshop</div>
                              <div id="con-mid">
                                                                                                                                                                                                 
                          <div id="isleft">
                            <h2>Guthaben</h2>
                            <p><b>30000000 Coins</b></p>
                            <h2>Kategorien</h2>
                            <ul>
                              <li><a href="index.php?s=itemshop&k=1">Hilfsitems</a></li><li><a href="index.php?s=itemshop&k=2">Sonderitems</a></li>    </ul>
                          </div>
                          <div id="isright">
                            <h2>Itemshop</h2>
                              <table>
                                  </table>
                          </div>
                                </div>
                              <div id="con-bot"></div>
                            </div>  
                                
                            <div class="clear"></div>
                                
                        </div>

                        <br/>
                        <div id="footer">
                          <span>Copyright &copy; 2015 <a href="http://na-metin2de.de/index.php">NachtAktiv</a>. All Rights Reserved. Designed by <a href="http://www.elitepvpers.com/forum/members/3470253--santa-nybu-.html">NyBu</a> &amp; Coded by <a href="http://www.elitepvpers.com/forum/members/4559117--rayzor.html" target="_blank">Rayzor</a>.</span>
                        </div>
                           
                          </body>
                        </html>
                        Wenn ick jetz wüsste was du mit geladenen css meinst. ok.
                        Ich bin kein php fan aber es muss nunmal sein..

                        Kommentar


                        • #13
                          es gibt noch eine style.css die wird auch gebraucht.

                          php ohne Ahnung davon zu haben ist übrigens keine gute Idee. Kann böse enden. Entweder lernen oder jemanden dafür bezahlen.
                          Fatal Error: Windows wird gestartet

                          Wie administriert man ein Netzwerk: Beispiel

                          Kommentar


                          • #14
                            style.css:

                            PHP-Code:
                            /*
                            // Copyright (c) 2012 , 'Rayzor @ elitepvpers.de
                            //
                            // This work by Rayzor is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
                            // To view a copy of this license, see the LICENSE file, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or
                            // send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
                            */

                            @font-face {
                                
                            font-family'Vijaya';
                                
                            srcurl('fonts/vijaya.html');
                                
                            srcurl('fonts/vijayad41d.html?#iefix'format('embedded-opentype'),
                                     
                            url('fonts/vijaya-2.html'format('woff'),
                                     
                            url('fonts/vijaya-3.html'format('truetype'),
                                     
                            url('fonts/vijaya-4.html#Vijaya'format('svg');
                                
                            font-weightnormal;
                                
                            font-stylenormal;
                            }

                            @
                            font-face {
                               
                            font-familyTrajanPro;
                               
                            srcurl('fonts/TrajanPro.html');
                            }



                            * {
                              
                            margin:0;
                              
                            padding:0;
                            }

                            body {
                              
                            font-family:"Times New Roman",serif;
                              
                            font-size:11px;
                              
                            background:#000000 url("img/bg.png") no-repeat;
                              
                            background-color:#000;
                              
                            background-attachmentfixed;
                              
                            background-positiontop center;
                              
                            margin:0;
                              
                            padding:0;
                              
                            color:#fbfbfb;
                            }

                            ul {
                              
                            margin-left:15px;
                              
                            margin-bottom:10px;
                            }

                            {
                              
                            text-decoration:underline;
                              
                            color:#fbfbfb;
                            }

                            a:hover {
                              
                            text-decoration:none;
                            }

                            textarea {
                              
                            border:1px solid #CECECE;
                              
                            background:#F3F3F3;
                              
                            font-size:0.8em;
                              
                            padding:2px;
                              
                            font-family:Verdana;
                              
                            color:#000;
                            }

                            select {
                              
                            border:1px solid #666;
                              
                            background:#ccc;
                              
                            font-size:15px;
                              
                            padding:2px;
                              
                            font-family:"Vijaya",serif;
                              
                            color:#000;
                            }

                            iframe.pscCheck {
                              
                            width:100%;
                              
                            height:500px;
                              
                            border1px solid #848484;
                            }


                            div#container {
                              
                            text-align:left;
                              
                            width:876px;
                              
                            margin:0 auto;
                            }

                            .
                            boxright {

                              
                            width:150px;
                              
                            background:#000;
                              
                            border:1px solid #000;
                              
                            float:right;

                            }

                            .
                            lager {
                              
                            width:auto;
                            }

                            .
                            lager td {
                              
                            width:25px;
                              
                            height:25px;
                              
                            line-height:25px;
                              
                            vertical-align:middle;
                              
                            text-align:center;
                            }

                            div#loginbar {
                              
                            height:28px;
                              
                            background:#04BF45;
                              
                            color:#FFF;
                              
                            background:url('img/layout/loginbar.html');
                              
                            line-height28px;
                              
                            color#A9A9A9;
                              
                            padding:0 5px;
                            }


                            div#navi {
                              
                            width:876px;
                              
                            height:86px;
                              
                            text-align:center;
                              
                            margin:0 auto 10px auto;
                              
                            background:url("img/navi.png");
                            }

                            div#navi ul {
                              
                            margin-left:auto;
                              
                            margin-right:auto;
                              list-
                            style:none;
                            }

                                
                            #navi ul li {
                                    
                            list-style:none;
                                    
                            display:block;
                                    
                            float:left;
                                    
                            width:auto;
                                    
                            background:url(img/border_nav.pngno-repeat right;
                                    
                            height:80px;
                                    
                            margin-top:3px;
                                }
                                
                                
                            #navi ul li:last-child {
                                    
                            background:none !important;
                                }
                                
                                    
                            #navi ul li a {
                                        
                            line-height:76px;
                                        
                            margin:0 29px 0 29px;
                                        
                            font-size:14px;
                                        
                            color:#ccc;
                                        
                            text-shadow:0px 0px 5px #000, 1px 1px 1px #000, 0px 0px 10px #000;
                                        
                            text-decoration:none;
                                        
                            text-transform:uppercase;
                                    }
                                    
                                    
                            #navi ul li a:hover {
                                        
                            color:#4B6053;
                                        
                            text-shadow:0px 0px 5px #000, 1px 1px 1px #000, 0px 0px 10px #000;
                                    
                            }
                            div#navi a:active {
                              
                            color:#ccc;
                            }

                            div#content {
                              
                            width:646px;
                              
                            float:left;
                            }

                            div#sidebar {
                              
                            float:right;
                              
                            width:221px;
                            }

                            div#head h1 {
                              
                            line-height:164px;
                              
                            font-size3em;
                              
                            font-weightbold;
                              
                            padding:0;
                              
                            margin:0 20px;
                              
                            visibility:hidden;
                            }

                            div#isleft {
                              
                            float:left;
                              
                            width:20%;
                            }

                            div#isleft h2 {
                              
                            font-size:1em;
                              
                            color:#777;
                              
                            border-left:none;
                              
                            background:none;
                            }

                            div#isleft ul {
                              
                            list-style:none;
                              
                            margin:0;
                              
                            padding:0;
                            }

                            div#isleft ul li {
                              
                            line-height:25px;
                              
                            height:25px;
                              
                            margin-bottom5px;
                            }

                            div#isleft ul li a {
                              
                            display:block;
                              
                            text-decoration:none;
                              
                            background:#555;
                              
                            padding-left:10px;
                              
                            color:#999;
                            }

                            div#isleft ul li a:hover {
                              
                            background:#B8B8B8;
                            }

                            div#isright {
                              
                            float:right;
                              
                            width:79%;
                            }


                            table {
                              
                            font-size1em;
                              
                            border-spacing:2px;
                              
                            margin:5px 0;
                              
                            width:100%;
                            }

                            .
                            user {
                              
                            margin:0 50px;
                            }

                            .
                            user table {
                              
                            width:100%;
                            }

                            table.itemlist {
                              
                            width:100%;
                              
                            font-size0.8em;
                            }

                            table.itemlist td,th {
                              
                            vertical-align:top;
                              
                            text-align:left;
                            }

                            .
                            thell {

                            }

                            .
                            tdunkel {

                            }

                            .
                            tmarkiert {
                              
                            background:#212121;
                              
                            color:#FFF;
                            }

                            tdth {
                              
                            padding:3px;
                            }

                            .
                            topLine {
                              
                            margin-bottom:5px;
                              
                            vertical-align:middle;
                            }

                            .
                            topLine a {
                              
                            color:#FFF;
                            }

                            address {
                              
                            font-size:0.8em;
                              
                            color:#252525;
                              
                            background:#E2E2E2;
                              
                            padding:5px;
                              
                            font-style:normal;
                              
                            margin:0;
                              
                            margin-top:20px;
                              
                            clear:both;
                              
                            text-align:right;
                            }


                            div.worldmap {
                              
                            padding:0;
                              
                            margin:0;
                            }

                            div.worldmap a {
                              
                            color:#00FF00;
                              
                            cursor:crosshair;
                              
                            text-decoration:none;
                            }

                            div.worldmap a:hover {
                              
                            color:#FFF;
                            }

                            div.worldmapTables {
                              
                            position:absolute;
                              
                            background:#E9E9E9;
                              
                            width:150px;
                              
                            height:auto;
                              
                            border1px solid #444;
                              
                            padding1px;
                              
                            color:#000;
                              
                            display:none;
                            }

                            div.worldmapBubble {
                              
                            width:2px;
                              
                            height:2px;
                              
                            background:#0f0;
                              
                            position:absolute
                              
                            padding:0
                              
                            margin:0;
                            }

                            .
                            isImg {
                              
                            width:100px;
                              
                            max-width:100px;
                              
                            background#555;
                              
                            text-align:center;
                            }

                            .
                            isBuy {
                              
                            background:#555;
                              
                            text-align:right;
                              
                            padding:5px;
                            }

                            .
                            isBuy a {
                              
                            margin:5px;
                              
                            padding:2px;
                              
                            background:#212121;
                              
                            color:#FFFFFF;
                              
                            border1px solid #5A5A5A;
                            }

                            .
                            splitLeft {
                              
                            float:left;
                              
                            width:49%;
                            }

                            .
                            splitRight {
                              
                            float:right;
                              
                            width:49%;
                            }

                            .
                            ipListBox {
                              
                            height:200px;
                              
                            width:100%;
                              
                            overflow:auto;
                            }

                            .
                            clear {
                              
                            clear:both;
                            }

                            div#footer {
                              
                            width:876px;
                              
                            height:50px;
                              
                            background:url("img/footer.png");
                              
                            line-height:47px;
                              
                            margin:75px auto 0 auto;
                              
                            font-size:12px;
                              
                            color#aaa;
                              
                            text-align:center;
                              
                            text-shadow:0px 0px 3px #111,0px 0px 7px #111,0px 0px 13px #111, 1px 1px 1px #111;
                              
                            font-family:"TrajanPro",serif;
                            }

                            #footer a {
                                
                            text-decoration:none;
                                
                            color:#eee;
                            }

                            .
                            sb-top {
                                
                            height:62px;
                                
                            line-height:54px;
                                
                            color:#ccc;
                                
                            background:url("img/sb_top.png");
                                
                            text-align:center;
                                
                            text-shadow:0px 0px 5px #000, 1px 1px 1px #000, 0px 0px 10px #000;
                                
                            font-family:"TrajanPro",serif;
                                
                            font-size:17px;
                            }

                            .
                            sb-mid {
                              
                            background:url("img/sb_mid.png"repeat-y;
                              
                            padding:5px 20px 5px 20px;
                              
                            text-shadow:1px 1px 1px #333,0px 0px 5px #333;
                              
                            font-size:14px;
                              
                            font-family:"Vijaya",serif;
                              
                            text-align:center;
                              
                            color:#ccc;
                            }

                            .
                            sb-bot {
                              
                            background:url("img/sb_bot.png");
                              
                            height:12px;
                            }

                            div#con-top {
                              
                            height:68px;
                              
                            color:#ccc;
                              
                            line-height:62px;
                              
                            background:url("img/con_top.png");
                              
                            font-size:18px;
                              
                            text-align:center;
                              
                            text-shadow:0px 0px 5px #000, 1px 1px 1px #000, 0px 0px 10px #000;
                              
                            font-family:"TrajanPro",serif;
                              
                            font-size:17px;}

                            div#con-mid {
                              
                            background:url("img/con_mid.png"repeat-y;
                              
                            padding:0px 20px 5px 20px;
                              
                            text-shadow:1px 1px 1px #333,0px 0px 5px #333;
                              
                            font-family:"Vijaya",serif;
                              
                            font-size:14px;
                              
                            color:#ccc;
                            }

                            div#con-bot {
                              
                            background:url("img/con_bot.png");
                              
                            height:17px;
                            }

                            input[type=text], input[type=password] {
                              
                            background:url("img/input.png"no-repeat;
                              
                            width:145px;
                              
                            height:27px;
                              
                            border:0;
                              
                            margin:5px 0 5px 0;
                              
                            padding:0 10px 0 10px;
                              
                            font-family:"TrajanPro",sans-serif;
                              
                            font-weight:bold;
                              
                            text-shadow:0px 0px 3px #111,0px 0px 7px #111,0px 0px 13px #111, 1px 1px 1px #111;
                              
                            font-size:14px;
                              
                            color:#ccc;
                              
                            transitioncolor 1s;
                              -
                            moz-transitioncolor 1s;
                              -
                            webkit-transitioncolor 1s;
                              -
                            o-transitioncolor 1s;
                              
                            line-height:30px;
                            }

                            input[type=password] {
                              
                            font-family:sans-serif;
                            }

                            input[type=text]:focusinput[type=password]:focusinput[type=text]:hoverinput[type=password]:hover {
                              
                            color:#fbfbfb;
                            }

                            input[type=button], input[type=submit], input[type=reset] {
                              
                            background:url("img/btn.png"no-repeat;
                              
                            width:90px;
                              
                            height:30px;
                              
                            border:0;
                              
                            cursor:pointer;
                              
                            margin:5px 0 5px 0;
                              
                            font-family:"TrajanPro",sans-serif;
                              
                            font-weight:bold;
                              
                            text-shadow:0px 0px 3px #111,0px 0px 7px #111,0px 0px 13px #111, 1px 1px 1px #111;
                              
                            font-size:12px;
                              
                            color:#ccc;
                              
                            transitioncolor 1s;
                              -
                            moz-transitioncolor 1s;
                              -
                            webkit-transitioncolor 1s;
                              -
                            o-transitioncolor 1s;
                            }

                            input[type=button]:hoverinput[type=submit]:hoverinput[type=reset]:hover {
                              
                            color:#fbfbfb;
                            }


                            /* -------------------------------------- */
                            /* - jQuery Slider Style ---------------- */

                            #slider-bg {
                              
                            background:url("img/slider_bg.png");
                              
                            width:932px;
                              
                            height:244px;
                              
                            position:absolute;
                              
                            z-index:-9999;
                            }

                            #slider-wrap {
                              
                            width:932px;
                              
                            height:238px;
                              
                            margin:5px auto 20px auto;
                            }

                            #slider{
                              
                            padding-top:6px;
                              
                            margin:0px 6px 0px 6px;


                            #slider ul {
                              
                            margin-left:auto;
                              
                            margin-right:auto;
                              
                            padding:0;
                              list-
                            style:none;
                            }
                            #slider ul li { 
                              
                            width:920px;
                              
                            height:182px;
                              
                            margin:0 auto 0 auto;

                            }                             


                            #header {
                              
                            width:1000px;
                              
                            height:180px;
                              
                            margin:0 auto;
                            }

                            #header .logo, #header2 .logo {
                                
                            opacity:1.0;
                                
                            transitionopacity 1s;
                                -
                            moz-transitionopacity 1s;
                                -
                            webkit-transitionopacity 1s;
                                -
                            o-transitionopacity 1s;
                                
                            margin-left:360px;
                                
                            position:absolute;
                                
                            top58px;
                            }

                            #header .logo:hover, #header2 .logo:hover {
                                
                            opacity:0.5;
                            }

                            #dl {
                              
                            width:221px;
                              
                            height:47px;
                                
                            background:url("img/btn_dl.png"no-repeat;
                                
                            transitionopacity 1s;
                                -
                            moz-transitionopacity 1s;
                                -
                            webkit-transitionopacity 1s;
                                -
                            o-transitionopacity 1s;
                                
                            margin:0 auto;
                            }

                            #dl:hover {
                                
                            opacity:0.5;
                            }

                            #comm {
                              
                            width:221px;
                              
                            height:47px;
                                
                            background:url("img/btn_com.png"no-repeat;
                                
                            transitionopacity 1s;
                                -
                            moz-transitionopacity 1s;
                                -
                            webkit-transitionopacity 1s;
                                -
                            o-transitionopacity 1s;
                              
                            margin:0 auto;
                            }

                            #comm:hover {
                                
                            opacity:0.5;
                            }

                            #vote {
                              
                            width:221px;
                              
                            height:47px;
                                
                            background:url("img/btn_vote.png"no-repeat;
                                
                            transitionopacity 1s;
                                -
                            moz-transitionopacity 1s;
                                -
                            webkit-transitionopacity 1s;
                                -
                            o-transitionopacity 1s;
                                
                            margin:0 auto;
                            }

                            #vote:hover {
                                
                            opacity:0.5;
                            }


                            .
                            ranking1 /* active */
                              
                            text-align:center;
                              
                            border:1px solid #333;
                              
                            display:inline-block;
                              
                            margin:10px 2px 0 2px;
                              
                            background-color:rgba(204,204,204,0.5);
                              -
                            webkit-transitionall .5s linear;
                              -
                            moz-transitionall .5s linear;
                              -
                            o-transitionall .5s linear;
                              -
                            ms-transitionall .5s linear;
                              
                            transitionall .5s linear;
                            }

                            .
                            ranking2 /* normal */
                              
                            text-align:center;
                              
                            border:1px solid #ccc;
                              
                            display:inline-block;
                              
                            margin:10px 2px 0 2px;
                              
                            background-color:rgba(51,51,51,0.5);
                              -
                            webkit-transitionall .5s linear;
                              -
                            moz-transitionall .5s linear;
                              -
                            o-transitionall .5s linear;
                              -
                            ms-transitionall .5s linear;
                              
                            transitionall .5s linear;
                            }

                            .
                            ranking1:hover {
                              
                            background-color:rgba(153,153,153,0.5);
                            }

                            .
                            ranking2:hover {
                              
                            background-color:rgba(153,153,153,0.5);
                            }

                            .
                            ranking1 a, .ranking2 a {
                              
                            padding:2px 10px 2px 10px;
                            }


                            .
                            ranking1 a {
                              
                            margin:0 auto;
                              
                            text-decoration:none;
                              
                            display:inline-block;
                              
                            color:#333;
                            }

                            .
                            ranking2 a {
                              
                            margin:0 auto;
                              
                            text-decoration:none;
                              
                            display:inline-block;
                            }


                            #status {
                              
                            width:932px;
                              
                            height:56px;
                              
                            line-height:56px;
                              
                            margin:0 auto;
                              
                            font-size:15px;
                              
                            text-shadow:0px 0px 3px #111,0px 0px 7px #111,0px 0px 13px #111, 1px 1px 1px #111;
                              
                            font-family:"TrajanPro",serif;
                              
                            color:#fbfbfb;
                              
                            opacity:0.8;
                              
                            text-align:center;
                            }

                            #status div {
                                
                            display:inline-block;
                                
                            margin:0 25px 0 25px;
                            }

                            #login-top {
                                
                            float:right;
                                
                            margin-top:25px;
                            }

                            #usercp-top {
                                
                            float:right;
                                
                            margin-top:55px;
                                
                            text-align:right;
                            }

                            #top-player {
                                
                            background:url(img/rborder.png);
                                
                            width:245px;
                                
                            height:180x;
                                
                            margin-left:9px;
                                
                            font-size:13px;
                                
                            line-height:21px;
                            }

                            tr.rank display:blockheight:27px; }
                            td.nr width:21pxtext-align:center; }
                            td.player width:110pxtext-indent:9px; }
                            td.lvl width:39pxtext-align:centertext-indent:11px;}
                            td.empire width:68pxtext-indent:12px; }

                            .
                            thell background#0a0904;  padding:4px; border-bottom: 1px dashed #151515; }
                            .tdunkel background#070603;  padding:4px; border-bottom: 1px dashed #151515; }
                            .tred background#151515; padding:4px; border-bottom: 1px dashed #151515; }
                            .topLine background#030201;  padding:4px; border-bottom: 1px dashed #151515; } 

                            Kommentar


                            • #15
                              Eigentlich meinte er:

                              PHP-Code:
                              <link rel="stylesheet" href="style.css" type="text/css" /> 
                              Und wenn du jetzt in deinem Browser deine URL angibst, und dann folgendes an die URL anhängst:
                              DEINEURL.de/style.css - Das ist dein geladenes CSS.

                              Das brauchen wir

                              Kommentar

                              Lädt...
                              X