Beiträge von daylonHD

    hallo


    ich habe mir eine webseite mit html php und css gebaut.
    Ich hab gantz oben auf es seite in bild names headder.png so, dieses bild wollte ich heue auswehseln und habe ein neues gemach es hat das gleiche format ind alles.
    ich habe den gantzen navigations bereich mit php aus den dateien ausgelagert und es hat auch alles wunderbar funktioniert so sieht der header.php aus wo die navigation drinne ist







    <!DOCTYPE html>
    <html>
    <head>
    <title>daylonHD</title>


    </head>


    <meta charset="UTF-8" />
    <style>


    .button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    }
    .button5 {
    background-color: white;
    color: black;
    border: 2px solid #555555;
    }


    .button5:hover {
    background-color: #555555;
    color: white;
    }


    .button4 {
    background-color: white;
    color: black;
    border: 2px solid #555555;
    }


    .button4:hover {
    background-color: #555555;
    color: white;
    }


    .left
    {
    float: left;
    margin: 5px;
    }



    </style>
    <link rel="stylesheet" type="text/css" href="style/style.css" />
    <body>





    <div id="wrapper">
    <header>
    </header>



    <nav>
    <ul>



    <li><a href="index.php">Startseite</a></li>
    <li><a href="kontakt.php">Kontakte</a></li>
    <li><a href="Bilder.php">Bilder</a></li>
    <li><a href="Videos.php">Videos</a></li>
    <li><a href="Algemein.php">Tipps und Tricks</a></li>
    <li><a href="Formate.php">hallo</a></li>



    </ul>
    </nav>






    und so der css bereich





    body


    {
    margin: 0;
    background-color: #333333;


    }


    #wrapper
    {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background-color: white;
    margin-top: 0px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid white;


    }


    header
    {
    height: 150px;
    background-image: url('headder.png')


    }



    das ist nich alle aber der rest ist jetzt unwichtig
    und ich habe den hadder ausgewechselt im styl ordener und dort ist jetzt nur noch das neue bild drinne und das allte hab ich komplet gelöscht also ich hab es nicht mehr aber dieseite lät es trotzdem es lät nur das alte und nicht das neue ich hab schon viel versucht und probiert aber ich finde einfach keine lösung
    weis jemad woran das liegt bitte helt mir danke.



    lg daylonHD