IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Mise en page CSS Discussion :

probleme de css


Sujet :

CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Nouveau candidat au Club
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    2
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 2
    Par défaut probleme de css
    bonjour, j'ai un soucis avec un CSS.
    J'ai fais un background-attachment:fixed pour faire defiler le texte sans que le fond bouge, le soucis est que maintenant, le texte passe par dessus ma bannière.

    Je voulais savoir s'il y avait un moyen pour que le texte ne passe pas par dessus la bannière, et si oui, comment faire? J'ai cherché partout mais je n'ai rien trouvé a ce sujet, donc je me demande si c'est faisable.
    (je précise que mon CSS se base sur un fond ou la bannière et les 2 colonnes de menus sont intégrés).


    Merci d'avance pour votre aide

  2. #2
    Membre expérimenté

    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2009
    Messages
    215
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Mai 2009
    Messages : 215
    Par défaut
    Tu ne peux pas avoir un fond seulement "en partie" fixed, il l'est entièrement ou pas du tout. Donc si ta bannière fait partie du fond... tu as un gros problème.

    Si tu tiens vraiment à avoir un background fixed, alors il va te falloir retirer la bannière de ce fond, pour la placer soit en fond, soit sous forme de balise img, dans un div qui te servira d'entête de page (dans ton code html).

  3. #3
    Rédacteur
    Avatar de Macmillenium
    Homme Profil pro
    Développeur front-end
    Inscrit en
    Mars 2008
    Messages
    2 333
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur front-end
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Mars 2008
    Messages : 2 333
    Par défaut
    Bonjour,

    Sans tes codes (X)HTML/CSS, difficile de t'aider.

  4. #4
    Nouveau candidat au Club
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    2
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 2
    Par défaut
    voila le style.css

    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    /* ---------- @ HTML Elements -----------*/
     
    *{
    margin:0px;
    padding:0px;
     
    }
    body, html {
    	color:#666;
    	min-height:101%;
    	font-size: 100%;
    	background-color:#232323;
    	background-image: url(images/main_body.jpg);
    	background-repeat: no-repeat;
    	background-position: top;
            background-attachment:fixed;
    	margin-top: 0px;
    	margin-right: auto;
    	margin-bottom: 0px;
    	margin-left: auto;
    	font-family:Arial, Helvetica, sans-serif;
    	font-size:.85em;
    }
     
    p {
    	margin: 15px 0;
    }
    .post img{
    margin-right:10px;
     
    }
     
    a:link, a:visited {
    	text-decoration:none;
     
    	color: #FFFFFF;
    }
     
    a:hover, a:active {
    	color:#FFFFFF;
    	text-decoration: underline;
    }
     
    *:focus {
    	outline: none
    }
     
    /* ---------- @ Page Structure -----------*/
     
    .header {
    	height: 250px;
    	width: 950px;
    	position:relative;
    	top:50px;
    }
     
    #header {
     
    	padding:10px;
     
     
    }
     
     
    #header h1 a {
    	font-size:1.8em;
    	font-weight:bold;
    	color:#FFFFFF;
    	font-family: Arial, Helvetica, sans-serif;
    	position: absolute;
    	top:35px;
    	left:280px;
     
     
    }
     
    #header .description{
    	position: absolute;
    	top:75px;
    	left:285px;
    	font-weight:bold;
    	color:#FFFFFF;
     
    }
    #header .box{
    	position: absolute;
    	top:80px;
    	right:47px;
    	font-weight:bold;
    	color:#FFFFFF;
    	text-align:center;
    	font-size:1.65em;
     
    }
    #header .box h3{
    color:#FFFFFF;
     
     
    }
     
     
     
     
    .mid{
    	position: relative;
    	z-index:2;
    	left:10px;
    	top:10px;
     
     
     
    }
     
     
    /* ---------- @ Headings -----------*/
     
    h2 {
    	font-size: 1.2em;
    	margin:0px;
    	padding:50px;
     
     
    	}
     
    .content h2 a,
    .content h2 a:visited
    {
    	font-size: 1.5em;
    	margin:0px;
    	padding:0px;
    	color:#FFFFFF;
     
     
    	}
     
    h3 {
    	font-size: 1.4em
    	}
     
    h4 {
    	font-size: 1.2em
    	}
     
     
    /* menu */
    #menu{
    	position: relative;
    	top:10px;
    	width:950px;
    	z-index:5;
    	background-image: url(images/topmenu_bg.jpg);
    	background-repeat: no-repeat;
    	height: 44px;
     
    }
     
    #menu ul{
    	list-style: none;
    	list-style-type: none;
    	font-size: 0.90em;
    	padding:0px;
    	font-weight:bold;
    	padding-top:15px;
    	text-align:center;
    	width:900px;
     
     
     
    }
     
    #menu ul li{
     
    	margin: 0 0 0 1px;
    	display:inline;
    	border-right:1px solid #ccc;
     
     
    }
     
    #menu ul li a{
     
    	padding: 5px 10px 5px;
    	text-decoration: none;
    	color: #FFFFFF;
     
    }
     
    #menu ul li a:hover{
    	text-decoration: underline;
     
     
    }
     
    #menu ul li.current_page_item{
    background-color:#FFFFFF;
     
    }
     
    #menu ul li.current_page_item a{
    	color: #FFFFFF;
     
    }
     
    /* ---------- @ content Area -----------*/
     
    /*Home*/
    .padding{
    padding:10px;
     
    }
    .content {
    font-size:12px;
    line-height:20px;
    margin-right:10px;
    margin-top:10px;
    position: relative;
    top:-80px;
    color:#ccc;
     
    }
     
     
    .content .post, .navigation, .pagetitle, .searc_results {
     
    	padding:10px 20px 10px 20px;
    }
     
    .post{
     
    	background-position: left top;
     
     
    }
    /*sidebar left*/
     
    .sidebar_left {
    	float:left;
    	margin:0;
    	border-right:#FFFFFF 0px solid;
    	font-size:12px;
    }	
     
     
    .sidebar_mid ul
    {
    	margin:0;
    	padding:0;
    	list-style:none;
     
     
     
     
    }
     
    .sidebar_left h2{
     
    	background-repeat: no-repeat;
    	height:20px;
    	color:#FFFFFF;
    	padding:10px 0px 0px 10px;
    }	
     
    .h2bg_bot{
     
    	background-repeat: no-repeat;
    	background-position: bottom;
    	height:20px;
    }
     
     
    .sidebar_left  ul ul, .sidebar_left  p, .sidebar_left  form, .sidebar_left  .textwidget
    {
    	margin:0px 0 0 0px;
    }
    .sidebar_left li 
    {
    	margin:0;
    	padding:0.3em 0;
    	border-bottom:0px solid #dedede;
    	list-style:none;
     
     
    }
     
    .sidebar_left li ul li ul li a 
    {
    color:#FFFFFF;
     
    }
     
    .sidebar_left  li li
    {
    	margin:0;
    	padding:0;
    	border-bottom:0px;
    	line-height:20px;
    	border-top:none;
    	padding-left:10px;
    }
     
    .sidebar_left  li ul li a,
    .sidebar_left  li ul li a:visited
    {
     
    	border-top:none;
    	color:#FFFFFF;
     
    }
    .sidebar_left  li li ul li,
    .sidebar_left  li li ul ul
     
    {
    	color: #FFFFFF;
    	border:none;
     
     
    }
     
     
     
     
    /*sidebar right*/
     
     
    .sidebar_right {
    	float:left;
    	margin:0;
    	font-size:12px;
    }
    .sidebar_right h2 {
    color:#fff;
     
    }
     
    .sidebar_right  ul 
    {
    	margin:0;
    padding:10px;
     
    margin-bottom:10px;
    	list-style:none;
     
     
    }
    .sidebar_right  ul .box 
    {
     
    padding:10px;
     
    margin-bottom:10px;
     
    }
    .sidebar_right  ul .box li
    {
     
    padding:2px;
     
    }
    .sidebar_left li 
    {
    	margin:0;
    	padding:0.3em 0;
    	border-bottom:0px solid #dedede;
    	list-style:none;
     
     
    }
     
     
     
     
     
     
    /*comments*/
    .post .user {
    	background-image: url(images/user.gif);
    	background-repeat: no-repeat;
    	height: 10px;
    	width: 10px;
    }
     
    .post .user a{
    	padding-left:15px;
    }
    .post .edit {
    	background-image: url(images/edit.gif);
    	background-repeat: no-repeat;
    	height: 10px;
    	width: 10px;
    }
    .post .edit a {
    	padding-left:15px;
    }
    .post .comment {
    	background-image: url(images/comment.gif);
    	background-repeat: no-repeat;
    	height: 10px;
    	width: 10px;
    }
    .post .comment a {
    padding-left:15px;
     
    }
     
    /* Comments starts here*/
     
    ol{
    margin:0px;
    padding:0px;
     
     
    }
    ol li{
    display:block;
    border-bottom:1px solid #222;
    list-style:none;
    background-color:#111;
    padding:10px;
     
     
     
     
    }
     
    #commentform .textarea{
     
     
     
     
    }
     
    #commentform .textarea{
    width:98%;
    border:1px solid #dedede;
     
    }
    /*Interior Pages*/
     
    .bullets {
    	padding:15px 15px 15px 30px;
    	}
     
    .bullets li {
    	background:url(/images/bullet.gif) no-repeat;
    	list-style:none;
    	padding-left: 11px;
    	margin-bottom: 5px;
    	}
     
    /* ---------- @ Forms -----------*/
     
    .button {
    	background: #000 ! important;
    	border:#F7ECD4 1px solid;
    	padding: 2px;
    	margin: 0 2px 0 0;
    	color:#FFF;
    }
     
    .button:focus {
    	padding:2px;
    	background: #000 ! important;
    }
     
    .button:hover {
    	background: #CCC ! important;
    	color: #000;
    }
     
    /*Clear*/
     
    .clearfloat:after {
    	content:".";
    	display:block;
    	height:0;
    	clear:both;
    	visibility:hidden;
    	}
     
    .clearfloat {
    	display: inline-block;
    	}
     
    /* Hides from IE-mac */
    * html .clearfloat {
    	height:1%;
    	}
     
    *+html .clearfloat {
    	height:1%;
    	}
     
    .clearfloat {
    	display:block;
    	}
    /* End hide from IE-mac */
     
    /* ---------- @ Footer -----------*/
     
    #footer {
    	padding: 10px;
    	color:#FFFFFF;
    	background-image: url(images/footerbg1.jpg);
    	background-repeat: no-repeat;
    	height: 84px;
    	margin-top: 0;
    	margin-right: auto;
    	margin-bottom: 0;
    	margin-left: auto;
    	background-position: bottom;
    	text-align:center;
    	margin-top:40px;
     
     
     
    }
    #footer p{
    padding-top:10px;
     
     
     
    }
    #footer a{
     
    	color:#FFFFFF;
    	text-decoration:underline;
    	font-weight:bold;
    	font-size:11px;
     
     
    }


    et le html

    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    header
     
     
    <div class="column mid">
     
    left
     
    <div class="column content_column content prepend-1">
     
     
    			<div class="post" id="id">
    				<h2><a href=" " rel="bookmark" title="Permanent Link to">titre</a></h2>
    				<small> <!-- by auteur| Category: catégorie |heure</small>
     
    				<div class="entry">
    					contenu
    				</div>
     
    <span class="edit">text</span> <span class="comment"> commentaires</span>
     
    <?php /*?>
    				<p class="postmetadata">text | text</p>  
    				</div>
     
     
     
    		<div class="navigation">
    			<div class="alignleft"> </div>
    			<div class="alignright"> </div>
    		</div>
     
     
     
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
     
     
     
    	</div>
     
     
     
     
     
    </div>

    C'est un template que j'ai recuperé et que je modifie en fonction de ce dont j'ai besoin, je n'ai pas de grandes notions de programmation [smile]

Discussions similaires

  1. [SGBD] Probleme menu css /php / mysql / javascript
    Par vincedjs dans le forum Administration
    Réponses: 14
    Dernier message: 21/02/2006, 17h51
  2. probleme XHTML/CSS
    Par GTJuanpablo dans le forum Mise en page CSS
    Réponses: 11
    Dernier message: 20/02/2006, 21h13
  3. Probleme avec CSS
    Par Rychi dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 16/03/2005, 18h26
  4. Probleme xhtml/css
    Par tooms2028 dans le forum Mise en page CSS
    Réponses: 3
    Dernier message: 19/01/2005, 09h41

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo