Css flipt/werkt niet zoals ik verwacht!

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Ventilatiesysteem Productontwikkelaar HBO WO Verwa

Samengevat: Zij bieden flexibele ventilatiematerialen, geluidsdempers, rookgasafvoer producten en industrieslangen. Ben jij een technisch productontwikkelaar? Heb jij ervaring met het ontwikkelen van nieuwe producten? Vaste baan: Technisch Productontwikkelaar HBO WO €3.000 - €4.000 Zij bieden een variëteit aan flexibele ventilatiematerialen, geluiddempers, rookgasafvoer producten, industrieslangen en ventilatieslangen voor de scheepsbouw. Met slimme en innovatieve materialen zorgen wij voor een gezonde en frisse leefomgeving. Deze werkgever is een organisatie die volop in ontwikkeling is met hardwerkende collega's. Dit geeft goede ontwikkelingsmogelijkheden. De branche van dit bedrijf is Techniek en Engineering. Functie: Voor de vacature als Technisch Productontwikkelaar Ede Gld HBO WO ga

Bekijk vacature »

08/03/2012 21:35:26
Quote Anchor link
Ik heb een hele css code geschreven, maar heb gemerkt dat niet alles werkt zoals ik wil dat het werkt. Eén voorbeeld hiervan is dat wanneer ik de achtergrond kleur, in de body, wijzig hij de kleur op de site niet veranderd. Zou er verder misschien ook gekeken kunnen worden naar de degelijkheid, dus werkbaarheid van de rest? Als je verwacht dat ik daar problemen mee zou kunnen krijgen.

Let op: html script is gesplitst met top.php en bottom.php, hier staat alles in één.
----

De hele css code is {wil het eventueel op een site voor codes plaatsen, weet alleen de link niet):

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
@charset "utf-8";
/* CSS Document */
@import url(http://fonts.googleapis.com/css?family=Ceviche+One);

*{
    margin: 0px 0px;    
    padding: 0px;
}

body{
    /*****Anti Copy | Not edit*****/
    -moz-user-select: none;
    -khtml-user-select: none;
    -o-user-select:none;
    unselectable: on;
}

a, a:active, a:link{
    text-decoration: none;
    color: inherit;    
    cursor: auto;
}


#container{
    width: 1349px;    
    heigh: 700px;
    margin: auto auto;
}

#header{
    height: 137px;
    width: 1349px;    
    background: #6b6b6b; /* Old browsers */
                                            background: -moz-linear-gradient(top,  #6b6b6b 0%, #2e2e2e 100%); /* FF3.6+ */
                                            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6b6b6b), color-stop(100%,#2e2e2e)); /* Chrome,Safari4+ */
                                            background: -webkit-linear-gradient(top,  #6b6b6b 0%,#2e2e2e 100%); /* Chrome10+,Safari5.1+ */
                                            background: -o-linear-gradient(top,  #6b6b6b 0%,#2e2e2e 100%); /* Opera 11.10+ */
                                            background: -ms-linear-gradient(top,  #6b6b6b 0%,#2e2e2e 100%); /* IE10+ */
                                            background: linear-gradient(top,  #6b6b6b 0%,#2e2e2e 100%); /* W3C */
                                            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b6b6b', endColorstr='#2e2e2e',GradientType=0 ); /* IE6-9 */
    margin: auto auto;
    box-shadow: 0px 0px 1px 0px black;
}

#header #login {
    text-align: center;    
    float: right;
    margin-top: 25px;
       margin-right: 220px;
    /***********NIET AANPASSEN ******/
    
    -moz-box-shadow:inset 0px 1px 0px -50px #ffffff;
    -webkit-box-shadow:inset 0px 1px 0px -50px #ffffff;
    box-shadow:inset 0px 1px 0px -50px #ffffff;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
    background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
    /***********Aanpasbaar********************/
    background-color:#ededed;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    border:1px solid #dcdcdc;
    display:inline-block;
    color:#777777;
    font-family: ceviche one;
    font-size: 35px;
    font-weight:bold;
    padding:2px 25px;
    text-decoration:none;
    text-shadow:1px 0px 0px #ffffff;
    box-shadow: 1px 1px 5px 1px black;
}

#header #login:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
    background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
    background-color:#dfdfdf;
    color: black;
    border-radius: 7px;
    opacity: 1.1;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 0.5;
}

#header #login:active {
    position:relative;
    top:1px;
}

#logo{
    margin-top: 11px;
    margin-left: 210px;
    position: absolute;
    z-index: 200;
    font-size:60px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    font-family: Ceviche One;
    text-shadow: 0px 0px 10px lightblue;
    height: 30px;
}

#logo:hover{
    opacity: 0.3;
}

#navBar{
    background: url(test.png);
    position: relative;
    z-index: 1;
    float: left;
    display: block;
    margin-left: 200px;
    margin-top: -25px;
    height: 50px;
    width: 950px;
    font-size: 23px;
    background-color: #d0d2cf;
    border-radius: 5px;
        background: -moz-linear-gradient(top,  #6b6b6b 0%, #2e2e2e 100%); /* FF3.6+ */
                                            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6b6b6b), color-stop(100%,#2e2e2e)); /* Chrome,Safari4+ */
                                            background: -webkit-linear-gradient(top,  #7f7f7f 0%,#2e2e2e 100%); /* Chrome10+,Safari5.1+ */
                                            background: -o-linear-gradient(top,  #6b6b6b 0%,#2e2e2e 100%); /* Opera 11.10+ */
                                            background: -ms-linear-gradient(top,  #6b6b6b 0%,#2e2e2e 100%); /* IE10+ */
                                            background: linear-gradient(top,  #6b6b6b 0%,#2e2e2e 100%); /* W3C */
                                            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b6b6b', endColorstr='#2e2e2e',GradientType=0 ); /* IE6-9 */

}

#navBar ul{
    display: inline;
    /*margin-left:; | Eventueel in het midden plaatsen*/
}

#navBar ul a li{
    float: left;
    list-style: none;
    padding-top: 5px;
    padding-left: 14px;
    padding-right: 14px;
    margin-top: 5px;
    margin-left: 5px;    
    height: 35px;
    background: #eeeeee;
    border-radius: 5px;
    font-family: ceviche one;
    color:    #595959;
}

#navBar ul li:hover{
    height: 35px;
    color: rgba(255,255,255,5);
    font-family: ceviche one;
    box-shadow: inset 0px 0px 25px 10px lightblue;
    text-decoration: overline;
}

#navBar ul a li.active{
    height: 35px;
    color: rgba(255,255,255,5);
    font-family: ceviche one;
    box-shadow: inset 0px 0px 25px 10px orange;
    text-decoration: overline;
}

#content{
    min-height: 610px;
    width: 980px;
    background-color: #cccccc;
    margin: auto auto;
    border-radius: 5px;    
    box-shadow: 0px 0px px 0px black;
    padding: 10px;
    margin-top: 50px;
    box-shadow: 1px 1px 5px 1px black;
    word-wrap: break-word;
    word-break: break-strict;
    font-family: Arial, Helvetica, sans-serif;
}

#content #picture{
    margin-top: 10px;
    background-color: inherit;
    height: 300px;
    text-align: center;
    font-size: 130px;
    float: left;
}

.title{
    font-size: 36px;
    text-align: center;    
}

.subtitle{
    font-size: 25px;
    float: left;
    margin-left: 445px;
    color: gray;
}

.subtitle2{
    font-size: 25px;
    float: left;
    margin-left: 445px;
    color: gray;
}

#text{
    margin-left: 45%;    
}

#text2{
    margin-left: 0%;    
}

#footer{
    margin-left: 46%
}

.cv{
    text-align: center;
    margin-top: 250px;
}

#submit
{
        /*background: #3FF;
        background-image: -moz-linear-gradient(#3FF, #3FF);
        background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #3FF),color-stop(1, #3FF));*/
        

        border-width: 0px;
        border-style: solid;
        border-color: #7eba7c #578e57 #447d43;

         -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
         -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
         box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;                

        height: 20px;
        margin: 0 0 0 10px;
        padding: 0;
        width: 90px;
        cursor: pointer;
        font: bold 14px Arial, Helvetica;
        color: #23441e;

        text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

#submit:hover
{
        background: lightblue;
}      


#submit::-moz-focus-inner
{
       border: 0;  /* Small centering fix for Firefox */
}

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

#navBar #feedback{
    float: right;
    margin-right: -70px;    
    
}

#twittah{
    margin-left: -125px;
    border-radius: 10px;    
    width: 50px;
    height: 50px;
}

#contact{
    margin-left: 25%;
}

/*#avatar{
    height: 150px;
    float: right;
    margin-right: -118px;
    position: relative;
    z-index: 9px;
    border: 0px solid gray;
    box-shadow: 0px 1px 9.5px 3px black;
    border-radius: 5px;
}*/
    
#custom-tweet-button a {
    background: url('images/twitte_logo.png') 0 0 no-repeat;
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
    display: block;
    margin-right: 75px;
    border-radius: 25px;
}

#custom-tweet-button a:hover {
   background: url('images/twit_logo_hover.png') 0 0 no-repeat;
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
    display: block;
    margin-right: 75px;
    border-radius: 25px;
}

De html code is:

<?php
$arrStr
= explode("/", $_SERVER['PHP_SELF'] );
$arrStr = array_reverse($arrStr );

$Str = $arrStr[0];
?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="robots" content="index">
    <title><?php echo $title; ?></title>
    <!-- ict, portfolio, school -->
    <link href="prostyle.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" href="../dingus/themes/default/default.css" type="text/css" media="screen" />
    <link rel="stylesheet" href="../dingus/themes/pascal/pascal.css" type="text/css" media="screen" />
    <link rel="stylesheet" href="../dingus/themes/orman/orman.css" type="text/css" media="screen" />
    <link rel="stylesheet" href="../dingus/nivo-slider.css" type="text/css" media="screen" />
    <link rel="stylesheet" href="../dingus/style.css" type="text/css" media="screen" />
    <script src="jquery.js"></script>
</head>
<body>
    <div id="container">
    <div id="header">
    <div id="login"><a href="#Login">Login</a>
    </div>
    
    <form action="log.php" method="post" id="log" style="display: none;">
    <table>
    <tr><td><input type="text" placeholder="Gebruikersnaam" name="username" maxlength="20" style="padding-left: 2px; padding-right:2px;"/></td></tr>
    <tr><td><input type="password" placeholder="Wachtwoord" name="password" maxlength="20" style="padding-left: 2px; padding-right:2px;"/></td></tr>
    <tr><td><input type="submit" value="Login" name="submit" id="submit" /></td></tr>
    </table>
    </form>
    
    <div id="logo"><a href="index.php">Youri Schneider</a></div>
    </div>
    
    <div id="navBar">
        <ul>
            <a href="index.php"><li <?php if ($Str == 'index.php') {echo "class='active'";} ?>>Home</li></a>
            <a href="Portfolio.php"><li <?php if ($Str == 'Portfolio.php') {echo "class='active'";} ?>>Portfolio</li></a>
            <a href="projecten.php"><li <?php if ($Str == 'projecten.php') {echo "class='active'";} ?>>Projecten</li></a>
            <a href="cv.php"><li <?php if ($Str == 'cv.php') {echo "class='active'";} ?>>CV</li></a>
            <a href="contact.php"><li <?php if ($Str == 'contact.php') {echo "class='active'";} ?>>Contact</li></a>
            <div id="feedback">
            <div id="custom-tweet-button">
   <a href="http://twitter.com/share?url=http://www.youris.bugs3.com&text=Portfolio Youri S - check de site nu:&count=horiztonal" target="_blank" rel="nofollow"></a></div>
              </div>
        </ul>
    </div>
    
    <div id="content">
 <?php
/*
Credits: http://www.bitrepository.com
URL: http://www.bitrepository.com/web-programming/php/simple-age-calculator.html
*/

function determine_age($birth_date)
{

$birth_date_time = strtotime($birth_date);
$to_date = date('m/d/Y', $birth_date_time);
list($birth_month, $birth_day, $birth_year) = explode('/', $to_date);
$now = time();
$current_year = date("Y");
$this_year_birth_date = $birth_month.'/'.$birth_day.'/'.$current_year;
$this_year_birth_date_timestamp = strtotime($this_year_birth_date);
$years_old = $current_year - $birth_year;
if($now < $this_year_birth_date_timestamp)
{

/* his/her birthday hasn't yet arrived this year */
$years_old = $years_old - 1;
}

return $years_old;
}

// You can write about any English textual datetime description
$birth_date = '24 december 1993';
$age = determine_age($birth_date);
?>

<?php
$title
= 'Index | Youri S';
include "top.php";
?>


<div id="picture">
        <div class="slider-wrapper theme-default">
                <div class="ribbon"></div>
                <div id="slider" class="nivoSlider">
                    <img src="../dingus/images/TronLegacy.jpg" alt="Tron Legacy" data-transition="slideInLeft" />
                    <img src="../dingus/images/writing.png" alt="" data-transition="slideInLeft"/>
                </div>
            </div>
    
        </div>
        <div class="title">Welkom op mijn portfolio</div>
        <div class="subtitle">Wie ben ik</div><p /><br /><br />`
        <ul id="text2">Mijn naam is Youri Schneider, ik ben <?php echo $age; ?> jaar oud en woon in Zoetermeer. Tot mijn zestiende heb ik op het ONC, niveau Mavo, gezeten.<BR />
         Sinds augustus 2010 volg ik de opleiding/ studie applicatieontwikkelaar (ict), op het ROC ID College te Zoetermeer. Tijdens deze studie heb<BR />
         ik al veel geleerd, zoals PHP, HTML(5) en CSS(3), zelf ben ik bezig met het aanleren van Javascript en Jquery; waarvan de laatste<br />
        belangrijker is.<!--<img src="images/YouriS.png" id="avatar" title="Youri S" alt="Youri S"/></img><br /><br />-->
        
    Na mijn opleiding, die ongeveer over een jaar ten einde komt wil ik of gaan werken, of nog een andere studie volgen, op HBO niveau. Welke dat precies zal gaan worden weet ik nog niet.<br /><br />
    
    Natuurlijk heb ik meer hobbys dan programmeren alleen, dit zijn vooral: schrijven (fantasie verhalen), lezen en keyboard spelen; het soort muziek maakt niet echt uit, als het maar lekker in de oren klinkt.    
        </ul>
        <div class="subtitle">Wat kunt u hier vinden</div><p /><br /><br />
        <ul id="text">
            <li>Portfolio | Afgemaakte projecten</li>
            <li>Projecten | Mee bezig</li>
            <li>CV - Nederlands</li>
            <li>CV - Engels</h6></li><Br />
        </ul>
        <div class="subtitle">Toekomst Features</div><p /><br /><br />
        
        <ul id="text">
            <li style="list-style: none;"><i>Funtionaliteiten werken <b>niet</b></i></li>
            <li>CMS | Login | Only available for Members</li>
            <li>Blog | Login | Only available for Members</li>
            <li>Contact | Mailform | with Feedback function</li>
        </ul>
        
<?php include "bottom.php";?>
        </div>
       </div>
    <div id="footer">Youri S | Portfolio | &copy; <?php echo date('Y') ?></div>
<script type="text/javascript" src="../dingus/scripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="../dingus/jquery.nivo.slider.js"></script>
    <script type="text/javascript">
        $(window).load(function() {
            $('#slider').nivoSlider();
        });
     </script>
        
    <script>
    $("#login").click(function(){
         $("#log").fadeIn(850);
          $(this).hide();
    });
    </script>  
</body>
</html>
Gewijzigd op 08/03/2012 21:38:00 door
 
Er zijn nog geen reacties op dit bericht.



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.