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

HTML Discussion :

Une aide sur la modification d'un code HTML/CSS d'un blog


Sujet :

HTML

  1. #1
    Membre à l'essai
    Inscrit en
    Novembre 2003
    Messages
    22
    Détails du profil
    Informations forums :
    Inscription : Novembre 2003
    Messages : 22
    Points : 16
    Points
    16
    Par défaut Une aide sur la modification d'un code HTML/CSS d'un blog
    Bonjour tout le monde,

    Je vous demande une petite aide svp pour une newbie HTML/CSS.

    Tout d'abord, en allant sur ce blog http://annouss.blogspot.com, vous verrez que que le cadre n'est pas bon car il traverse le texte en plein milieu. Idem pour les bannières haut et bas, elles ne sont pas arrondies sur les coins coté droit ainsi que le fond blanc du texte n'est pas arrondi non plus du coté droit.

    Je vous insère le code HTML généré. Pouvez-vous me dire ce qui doit etre changé svp ?

    Code : 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
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    <?xml version="1.0" encoding="UTF-8" ?>
    <!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' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
     
    <head>
      <b:include data='blog' name='all-head-content'/>
      <title><data:blog.pageTitle/></title>
      <b:skin><![CDATA[/*
    -----------------------------------------------
    Blogger Template Style
    Name:     Rounders 2
    Designer: Douglas Bowman
    URL:      www.stopdesign.com
    Date:     27 Feb 2004
    Updated by: Blogger Team
    ----------------------------------------------- */
     
    /* Variable definitions
      ====================
       <Variable name="mainBgColor" description="Main Background Color"
                 type="color" default="#fff" value="#ffffff">
       <Variable name="mainTextColor" description="Text Color" type="color"
                 default="#000" value="#000000">
       <Variable name="postTitleColor" description="Post Title Color" type="color"
                 default="#333" value="#333333">
       <Variable name="dateHeaderColor" description="Date Header Color"
                 type="color" default="#810" value="#881100">
       <Variable name="borderColor" description="Post Border Color" type="color"
                 default="#bbb" value="#bbbbbb">
     
     
       <Variable name="mainLinkColor" description="Link Color" type="color"
                 default="#b30" value="#bb3300">
       <Variable name="mainVisitedLinkColor" description="Visited Link Color"
                 type="color" default="#c63" value="#cc6633">
     
       <Variable name="titleBgColor" description="Page Header Background Color"
                 type="color" default="#710" value="#771100">
       <Variable name="titleTextColor" description="Blog Title Color"
                 type="color" default="#fff" value="#ffffff">
     
       <Variable name="topSidebarHeaderColor"
                 description="Top Sidebar Title Color"
                 type="color" default="#fff" value="#ffffff">
       <Variable name="topSidebarBgColor"
                 description="Top Sidebar Background Color"
                 type="color" default="#999" value="#999999">
       <Variable name="topSidebarTextColor" description="Top Sidebar Text Color"
                 type="color" default="#fff" value="#ffffff">
       <Variable name="topSidebarLinkColor" description="Top Sidebar Link Color"
                 type="color" default="#fff" value="#ffffff">
       <Variable name="topSidebarVisitedLinkColor"
                 description="Top Sidebar Visited Link Color"
                 type="color" default="#ddd" value="#dddddd">
     
       <Variable name="bodyFont" description="Text Font" type="font"
                 default="normal normal 100% 'Trebuchet MS',Verdana,Arial,Sans-serif" value="normal normal 100% 'Trebuchet MS',Verdana,Arial,Sans-serif">
       <Variable name="pageTitleFont" description="Blog Title Font" type="font"
                 default="normal bold 200% 'Trebuchet MS',Verdana,Arial,Sans-serif" value="normal bold 200% 'Trebuchet MS',Verdana,Arial,Sans-serif">
       <Variable name="descriptionFont" description="Blog Description Font" type="font"
                 default="normal normal 100% 'Trebuchet MS',Verdana,Arial,Sans-serif" value="normal normal 100% 'Trebuchet MS',Verdana,Arial,Sans-serif">
       <Variable name="headerFont" description="Sidebar Title Font" type="font"
                 default="normal bold 100% 'Trebuchet MS',Verdana,Arial,Sans-serif" value="normal bold 100% 'Trebuchet MS',Verdana,Arial,Sans-serif">
       <Variable name="postTitleFont" description="Post Title Font" type="font"
                 default="normal bold 135% 'Trebuchet MS',Verdana,Arial,Sans-serif" value="normal bold 135% 'Trebuchet MS',Verdana,Arial,Sans-serif">
    */
     
    body {
      background:#ccc;
      margin:0;
      text-align:center;
      line-height: 1.5em;
      font:x-small Trebuchet MS, Verdana, Arial, Sans-serif;
      color:$mainTextColor;
      font-size/* */:/**/small;
      font-size: /**/small;
      }
     
     
    /* Page Structure
    ----------------------------------------------- */
    /* The images which help create rounded corners depend on the 
       following widths and measurements. If you want to change 
       these measurements, the images will also need to change.
       */
    #outer-wrapper {
      width:1000px;
      margin:0 auto;
      text-align:left;
      font: $bodyFont;
      }
     
    /*La largeur du fond blanc de texte est de 735*/
    #main-wrap1 {
      width:735px;
      float:left;
      background:$mainBgColor url("http://www.blogblog.com/rounders2/corners_main_bot.gif") no-repeat left bottom;
      margin:15px 0 0;
      padding:0 0 15px;
      color:$mainTextColor;
      font-size:97%;
      line-height:1.5em;
      word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
      overflow: hidden;     /* fix for long non-text content breaking IE sidebar float */
      }
    #main-wrap2 {
      float:left;
      width:100%;
      background:url("http://www.blogblog.com/rounders2/corners_main_top.gif") no-repeat left top;
      padding:10px 0 0;
      }
    #main {
      background:url("http://www.blogblog.com/rounders2/rails_main.gif") repeat-y;
      padding:0;
      }
    #sidebar-wrap {
      width:240px;
      float:right;
      margin:15px 0 0;
      font-size:97%;
      line-height:1.5em;
      word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
      overflow: hidden;     /* fix for long non-text content breaking IE sidebar float */
      }
     
    .main .widget { 
      margin-top: 4px;
      width: 705px;
      padding: 0 13px;
    }
     
    .main .Blog {
      margin: 0;
      padding: 0;
      width: 705px;
    }
     
    /* Links
    ----------------------------------------------- */
    a:link {
      color: $mainLinkColor;
      }
    a:visited {
      color: $mainVisitedLinkColor;
      }
    a:hover {
      color: $mainVisitedLinkColor;
      }
    a img {
      border-width:0;
      }
     
     
    /* Blog Header
    ----------------------------------------------- */
    #header-wrapper {
      background:$titleBgColor url("http://www.blogblog.com/rounders2/corners_cap_top.gif") no-repeat left top;
      margin:22px 0 0 0px;
      padding:8px 0 0 0;
      color:$titleTextColor;
      }
    #header {
      background:url("http://www.blogblog.com/rounders2/corners_cap_bot.gif") no-repeat left bottom;
      padding:0 15px 8px;
      }
    #header h1 {
      margin:0;
      padding:10px 30px 5px;
      line-height:1.2em;
      font: $pageTitleFont;
      }
    #header a,
    #header a:visited {
      text-decoration:none;
      color: $titleTextColor;
      }
    #header .description {
      margin:0;
      padding:5px 30px 10px;
      line-height:1.5em;
      font: $descriptionFont;
    }
     
     
    /* Posts
    ----------------------------------------------- */
    h2.date-header {
      margin:0 28px 0 43px;
      font-size:85%;
      line-height:2em;
      text-transform:uppercase;
      letter-spacing:.2em;
      color:$dateHeaderColor;
      }
    .post {
      margin:.3em 0 25px;
      padding:0 13px;
      border:1px dotted $borderColor;
      border-width:1px 0;
      }
    .post h3 {
      margin:0;
      line-height:1.5em;
      background:url("http://www.blogblog.com/rounders2/icon_arrow.gif") no-repeat 10px .5em;
      display:block;
      border:1px dotted $borderColor;
      border-width:0 1px 1px;
      padding:2px 14px 2px 29px;
      color: $postTitleColor;
      font: $postTitleFont;
      }
    .post h3 a, .post h3 a:visited {
      text-decoration:none;
      color: $postTitleColor;
      }
    a.title-link:hover {
      background-color: $borderColor;
      color: $mainTextColor;
      }
    .post-body {
      border:1px dotted $borderColor;
      border-width:0 1px 1px;
      border-bottom-color:$mainBgColor;
      padding:10px 14px 1px 29px;
      }
    html>body .post-body {
      border-bottom-width:0;
      }
    .post p {
      margin:0 0 .75em;
      }
     
    .post-footer {
      background: #eee;
      margin:0;
      padding:2px 14px 2px 29px;
      border:1px dotted $borderColor;
      border-width:1px;
      font-size:100%;
      line-height:1.5em;
      color: #666;
    }
     
    .post-footer p { 
      margin: 0;
    }
     
    html>body .post-footer {
      border-bottom-color:transparent;
      }
     
    .uncustomized-post-template .post-footer {
      text-align: right;
    }
     
    .uncustomized-post-template .post-author,
    .uncustomized-post-template .post-timestamp {
      display: block;
      float: left;
      text-align:left;
      margin-right: 4px;
    }
     
    .post-footer a { 
      color: $mainLinkColor;
     }
    .post-footer a:hover { 
      color: $mainVisitedLinkColor;
     }
    a.comment-link {
      /* IE5.0/Win doesn't apply padding to inline elements,
         so we hide these two declarations from it */
      background/* */:/**/url("http://www.blogblog.com/rounders/icon_comment.gif") no-repeat 0 45%;
      padding-left:14px;
      }
    html>body a.comment-link {
      /* Respecified, for IE5/Mac's benefit */
      background:url("http://www.blogblog.com/rounders2/icon_comment.gif") no-repeat 0 45%;
      padding-left:14px;
      }
    .post img {
      margin:0 0 5px 0;
      padding:4px;
      border:1px solid $borderColor;
      }
    blockquote {
      margin:.75em 0;
      border:1px dotted $borderColor;
      border-width:1px 0;
      padding:5px 15px;
      color: $dateHeaderColor;
      }
    .post blockquote p {
      margin:.5em 0;
      }
     
    #blog-pager-newer-link {
      float: left;
      margin-left: 13px;
     }
     
    #blog-pager-older-link {
      float: right;
      margin-right: 13px;
     }
     
    #blog-pager {   
      text-align: center; 
     }
     
    .feed-links { 
      clear: both;
      line-height: 2.5em;
      margin-left: 13px;
    }
     
    /* Comments
    ----------------------------------------------- */
    #comments {
      margin:-25px 13px 0;
      border:1px dotted $borderColor;
      border-width:0 1px 1px;
      padding:20px 0 15px 0;
      }
    #comments h4 {
      margin:0 0 10px;
      padding:0 14px 2px 29px;
      border-bottom:1px dotted $borderColor;
      font-size:120%;
      line-height:1.4em;
      color:$postTitleColor;
      }
    #comments-block {
      margin:0 15px 0 9px;
      }
    .comment-author {
      background:url("http://www.blogblog.com/rounders2/icon_comment.gif") no-repeat 2px .3em;
      margin:.5em 0;
      padding:0 0 0 20px;
      font-weight:bold;
      }
    .comment-body {
      margin:0 0 1.25em;
      padding:0 0 0 20px;
      }
    .comment-body p {
      margin:0 0 .5em;
      }
    .comment-footer {
      margin:0 0 .5em;
      padding:0 0 .75em 20px;
      }
    .comment-footer a:link {
      color: $mainTextColor;
      }
    .deleted-comment {
      font-style:italic;
      color:gray;
      }
     
     
    /* Profile
    ----------------------------------------------- */
    .profile-img { 
      float: left;
      margin: 5px 5px 5px 0;
      border: 4px solid $topSidebarTextColor;
    }
     
    .profile-datablock {
      margin:0 15px .5em 0;
      padding-top:8px;
    }
     
    .profile-link { 
      background:url("http://www.blogblog.com/rounders2/icon_profile.gif") no-repeat 0 .1em;
      padding-left:15px;
      font-weight:bold;
    }
     
    .profile-textblock {
      clear: both;
      margin: 0;
    }
     
    .sidebar .clear, .main .widget .clear { 
      clear: both;
    }
     
    #sidebartop-wrap {
      background:$topSidebarBgColor url("http://www.blogblog.com/rounders2/corners_prof_bot.gif") no-repeat left bottom;
      margin:0px 0px 15px;
      padding:0px 0px 10px;
      color:$topSidebarTextColor;
      }
     
    #sidebartop-wrap2 { 
     background:url("http://www.blogblog.com/rounders2/corners_prof_top.gif") no-repeat left top;
      padding: 10px 0 0;
      margin:0;
      border-width:0;
     }
     
    #sidebartop h2 {
      line-height:1.5em;
      color:$topSidebarHeaderColor;
      border-bottom: 1px dotted $topSidebarHeaderColor;
      margin-bottom: 0.5em;
      font: $headerFont;
    }
     
    #sidebartop a { 
     color: $topSidebarLinkColor;
    }
     
    #sidebartop a:hover { 
     color: $topSidebarVisitedLinkColor;
    }
    #sidebartop a:visited { 
     color: $topSidebarVisitedLinkColor;
    }
    /* Sidebar Boxes
    ----------------------------------------------- */
     
    .sidebar .widget { 
      margin:.5em 13px 1.25em;
      padding:0 0px;
     }
     
    .widget-content { 
      margin-top: 0.5em;
    }
     
    #sidebarbottom-wrap1 {
      background:$mainBgColor url("http://www.blogblog.com/rounders2/corners_side_top.gif") no-repeat left top;
      margin:0 0 15px;
      padding:10px 0 0;
      color: $mainTextColor;
    }
     
    #sidebarbottom-wrap2 {
      background:url("http://www.blogblog.com/rounders2/corners_side_bot.gif") no-repeat left bottom;
      padding:8px 0px 8px;
    }
     
    .sidebar h2 {
      margin:0;
      padding:0 0 .2em;
      line-height:1.5em;
      font:$headerFont;
    }
     
    .sidebar ul {
      list-style:none;
      margin:0 0 1.25em;
      padding:0 0px;
    }
     
    .sidebar ul li {
      background:url("http://www.blogblog.com/rounders2/icon_arrow_sm.gif") no-repeat 2px .25em;
      margin:0;
      padding:0 0 3px 16px;
      margin-bottom:3px;
      border-bottom:1px dotted $borderColor;
      line-height:1.4em;
      }
    .sidebar p {
      margin:0 0 .6em;
      }
     
    #sidebar h2 { 
      color: $postTitleColor;
      border-bottom: 1px dotted $postTitleColor;
     }
     
    /* Footer
    ----------------------------------------------- */
    #footer-wrap1 {
      clear:both;
      margin:0;
      padding:15px 0 0;
      }
    #footer-wrap2 {
      background:$titleBgColor url("http://www.blogblog.com/rounders2/corners_cap_top.gif") no-repeat left top;
      padding:8px 0 0;
      color:$titleTextColor;
      }
    #footer {
      background:url("http://www.blogblog.com/rounders2/corners_cap_bot.gif") no-repeat left bottom;
      padding:8px 15px 8px;
      }
    #footer hr {display:none;}
    #footer p {margin:0;}
    #footer a {color:$titleTextColor;}
     
    /** Page structure tweaks for layout editor wireframe */
    body#layout #main-wrap1,
    body#layout #sidebar-wrap,
    body#layout #header-wrapper {
      margin-top: 0;
    }
     
    body#layout #header, body#layout #header-wrapper,
    body#layout #outer-wrapper { 
      margin-left:0,
      margin-right: 0;
      padding: 0;
    }
     
    body#layout #outer-wrapper { 
      width: 730px;
    }
     
    body#layout #footer-wrap1 { 
      padding-top: 0;
     }
    ]]></b:skin>
    </head>
     
    <body>
      <div id='outer-wrapper'>
     
      <div id='header-wrapper'>
        <b:section class='header' id='header' maxwidgets='1'>
    <b:widget id='Header1' locked='true' title='Le blog d&quot;Annouss (en-tête)' type='Header'/>
    </b:section>
      </div>
     
      <div id='crosscol-wrapper' style='text-align:center'>
        <b:section class='crosscol' id='crosscol' showaddelement='no'/>
      </div>
     
      <div id='main-wrap1'><div id='main-wrap2'>
        <b:section class='main' id='main' showaddelement='no'>
    <b:widget id='Blog1' locked='true' title='Messages blog' type='Blog'/>
    </b:section>
      </div></div>
     
      <div id='sidebar-wrap'>
     
        <div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
          <b:section class='sidebar' id='sidebartop'>
    <b:widget id='Image1' locked='false' title='' type='Image'/>
    <b:widget id='Profile1' locked='false' title='Qui êtes-vous ?' type='Profile'/>
    </b:section>
        </div></div>
     
        <div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
          <b:section class='sidebar' id='sidebar' preferred='yes'>
    <b:widget id='Label1' locked='false' title='Libellés' type='Label'/>
    <b:widget id='LinkList3' locked='false' title='Blogs qu"on aime' type='LinkList'/>
    <b:widget id='LinkList2' locked='false' title='Journaux du monde' type='LinkList'/>
    <b:widget id='LinkList1' locked='false' title='Journaux marocains' type='LinkList'/>
    <b:widget id='BlogArchive1' locked='false' title='Archives' type='BlogArchive'/>
    </b:section>
        </div></div>
     
      </div>
     
      <div id='footer-wrap1'><div id='footer-wrap2'>
        <b:section class='footer' id='footer'/>
      </div></div>
     
    </div>
    <script src='http://www.google-analytics.com/urchin.js' type='text/javascript'>
    </script>
    <script type='text/javascript'>
    _uacct=&quot;UA-xxxx-x&quot;;
    urchinTracker();
    </script>
     
     
     
    </body>
    </html>
    En vous remerciant d'avance

    Inass

  2. #2
    Membre à l'essai
    Inscrit en
    Novembre 2003
    Messages
    22
    Détails du profil
    Informations forums :
    Inscription : Novembre 2003
    Messages : 22
    Points : 16
    Points
    16
    Par défaut
    Vous séchez comme moi là-dessus ?

    Ben merci en tout cas

  3. #3
    Membre actif
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    241
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 241
    Points : 267
    Points
    267
    Par défaut
    Salut,

    le soucis vient de ce que les dimensions des blocs ne correspondent pas aux dimensions des images.

    Donc dans les styles déclarés dans le head des documents il faut les modifications suivantes :
    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
     
    #outer-wrapper {
    width:1000px;/* non */
    width:740px;
    }
     
    #main-wrap1 {
    width:735px;/* non */
    width:485px;
    }
     
    #main-wrap2 {
    float:left;
    width:100%;
    /* là tu peux virer les deux, ça ne sert à rien ;) */
    }
     
    .main .widget { 
     
    width: 705px;/* non */
    width: 485px;/* voire même virer le width */
    }
    .main .Blog {
    width: 705px;/* non, à enlever carrément je pense */
    }

    Voilà, ça devrait être mieux comme ça

  4. #4
    Membre à l'essai
    Inscrit en
    Novembre 2003
    Messages
    22
    Détails du profil
    Informations forums :
    Inscription : Novembre 2003
    Messages : 22
    Points : 16
    Points
    16
    Par défaut
    Certes oui, mais tu n'es pas en train de le remettre comme il était là ?

    Justement mon but est d'élargir "la surface utilisée" de telle sorte que je n'aie pas un texte kilométrique.

    Je vais essayer de régler les zones que tu m'as montrées cela-dit !

    Merci bien

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 3
    Dernier message: 23/07/2007, 10h51
  2. Petite aide sur la comprehension d'un code
    Par Pauli dans le forum Langage
    Réponses: 2
    Dernier message: 20/05/2007, 20h24
  3. aide sur la structure d'un code
    Par durango dans le forum Langage
    Réponses: 4
    Dernier message: 11/04/2007, 18h39
  4. Une aide sur une version de SMDBGrid
    Par frmahe dans le forum Bases de données
    Réponses: 3
    Dernier message: 21/09/2006, 08h21
  5. une aide sur un regex svp :)
    Par hansaplast dans le forum Langage
    Réponses: 2
    Dernier message: 19/10/2005, 11h22

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