• Login
  • Register
  • Zoek
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Filebase Entry
  • More Options

ICTscripters

Dé plek voor IT

Dé plek voor IT

Login

Geavanceerde opties
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Dé plek voor IT - ICTscripters
  2. Forum
  3. Scripting & programmeren
  4. (X)HTML + XML + CSS

Forum

  • Het oorspronkelijke Criminals Script

    SC-Webmedia 18 juni 2026 om 20:11
  • StraatBaas is back, maar hoe?!

    Syntax 17 juni 2026 om 10:28
  • RPG game gebouwd met AI

    Frenzo.Webservice 11 juni 2026 om 19:44
  • Het Grote Vibe Code Topic

    Syntax 1 juni 2026 om 20:05
  • PWYL source gezocht

    Syntax 29 mei 2026 om 14:03
  • Ictscripters Chat

    AarClay 21 april 2026 om 11:34
  • Help testers nodig voor android app Urgent

    Servertjee 20 februari 2026 om 12:07
  • Partner Gezocht om meerdere NFT Collecties op Open Sea te Plaatsen

    Servertjee 20 februari 2026 om 12:06

Marktplaats

  • 4-letter domein: Togi.nl

    evesi 17 juni 2026 om 17:08
  • 359 Nieuwe Domeinnamen Mei 2026

    shiga 1 juni 2026 om 12:45
  • Sicarras.com - Moderne Mafia Text-Based RPG

    Jeffrey.Hoekman 27 mei 2026 om 17:40

layout

  • hc_holigan
  • 2 juli 2011 om 19:04
  • hc_holigan
    Student
    Berichten
    90
    • 2 juli 2011 om 19:04
    • #1

    hoi

    ik ben bezig om zelf gemaakte layout te slice/base maar krijg somige dingen niet goede

    als je naar afbeelding kijkt dan heb ik die witte strepen aan de zij kanten ik krijgt dat niet goed weet iemand hoe ik deze zo goed krijg
    en grijze lijn die tot onderloopt met ronde kanten weet iemand hoe ik dit zo krijg

    en container met welkom enzo hoe ik deze zo krijg

    afbeelding

    voor de klikkers http://www.afbeeldingenuploaden.nl/uploads/721515smaakenmaak2,1.png

    html

    PHP
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nl" lang="nl"> 
    <html>
    <head>
    <title> smaak&zaak </title>
    
    
    <link rel="stylesheet" type="text/css" href="stylesheet.css" />
    </head>
    <body>
    
    
    <div id="header">
         <img src="images/logo-images.gif" width="180" height="100"> 
    </div>
    <div id="line">
    </div>
    <ul id="menu">
    <li class="active"><a href="#">Home</a></li>
    <li><a href="#">Dranken</a></li>
    <li><a href="#">Broodjes</a></li>
    <li><a href="#">Fruit/Saledes</a></li>
    <li><a href="#">Voorwaarden</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    <div id="line">
    </div>
    <div id="container">
    </div>
    <div id="line">
    </div>
    
    
    </body>
    </html>
    Toon Meer

    css

    PHP
    html
         {
             background-color: #0d0d0d;
         }
    
    
    body
         {
             width: 799px;
             margin: 0px auto;
         }
    
    
    div#header
         {   
             background-image: url('images/header-images.gif');
             background-repeat: repeat-x;
             width: 795px;
             height: 136px;
         }
    
    
    
    
    div#line
         {
             background-color: #ffffff;
             width: 795px;
             height: 2px;
         }
    
    
    ul#menu
         {
             margin: 0px;
             padding-left: 10px;
             list-style: none;
             height: 30px;
             width: 785px;
             background-image: url('images/menu-images.gif');
          }
    
    
    ul#menu li
          {
             float: left;
             height: 30px;
          }
    
    
    ul#menu li a 
          {
             display: block;
             overflow: hidden;
             height: 30px;
             padding: 5px 8px 0px 8px;
             font-family: arial;
             color:#ffffff;
             font-size: 16px;
             text-decoration: none;
             font-weight: bold;
          }
    
    
    ul#menu li a:hover, ul#menu li.active a, ul#menu li.active a:hover
          {
             padding: 5px 8px 0px 8px;
             background-color: #6a2f02;
             color: #ffffff;
             height: 25px;
          }
    
    
    div#container 
        { 
            width: 698px; 
            overflow:                hidden;     
            border-bottom: 1px solid #333333;    
        } 
    
    
    div#container
          {
             background-image: url('images/container-images.gif');
             background-repeat: repeat-x;
             width: 775px;
             padding: 0px 10px 10px 10px;
             float: left;
             padding-bottom: 1000px;
             margin-bottom: -999px;
             font-family: arial;
             font-size: 10px;
             color: #ffffff;
           }
             
    div#container h1
           {
             padding-top: 10px
             font-family: arial;
             font-size: 13px;
             color: #ffffff;
           }
    
    
    div#Container a 
        { 
            image: url('images/acontainer-images.gif') 
            font-weight: bold; 
            text-decoration: underlined; 
        }
    
    
    div#Container a:hover 
        { 
            text-decoration: none; 
        }
    Toon Meer

    alvast bedankt
    grtz, tim

Participate now!

Heb je nog geen account? Registreer je nu en word deel van onze community!

Maak een account aan Login

ICT Nieuws

  • Quanscient ontvangt €10M om AI- en kwantum-native hardware engineering te bevorderen - Tech.eu

    ICTscripters 27 mei 2026 om 12:03
  • Datalek bij leverancier Canvas - Universiteit van Amsterdam

    ICTscripters 10 mei 2026 om 12:03
  • Data privacy in 2026: Hoe de naleving van GDPR verandert

    ICTscripters 8 mei 2026 om 12:16

Blogs

  • Functioneel ontwerp

    Dees 28 december 2014 om 12:38
  • Access Control List implementatie in PHP/MySQL - deel 1/2

    FangorN 28 december 2018 om 12:35
  • Access Control List implementatie in PHP/MySQL - deel 2/2

    FangorN 29 december 2018 om 12:37
  1. Marktplaats
  2. Design
  3. Voorwaarden
  4. Ons team
  5. Leden
  6. Geschiedenis
  7. Regels
  8. Links
  9. Privacy Policy
ICTscripters ©2005 - 2026 , goedkope hosting door DiMoWeb.com, BE0558.915.582
Sponsors: Beste kattenhotel provincie Antwerpen | Beste Zetes eid kaartlezer webshop
Style: Nexus by cls-design
Stylename
Nexus
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design