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 :

Réglage responsive entre 800 px et 994 px


Sujet :

Responsive design en CSS

  1. #1
    Membre régulier
    Homme Profil pro
    Webplanneur
    Inscrit en
    Avril 2017
    Messages
    87
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Webplanneur

    Informations forums :
    Inscription : Avril 2017
    Messages : 87
    Points : 71
    Points
    71
    Par défaut Réglage responsive entre 800 px et 994 px
    Bonjour à chacune et chacun,

    J’ai téléchargé un template basé sur boostrap 4 (responsive) il fonctionne bien sauf dans un cas particulier.
    Quand je le teste en vue adaptative en horizontal il y à un problème dès que cela dépasse 800 px et ce jusqu’à 994 px.

    La div id="fh5co-hero-wrapper" ce superpose sur la div class="fh5co-advantages-outer" du dessous.

    Vous pouvez testez sur le lien ci-dessous.
    www.paronet.be

    voici le fichier css qui je pense manque une information concernant la mise en page entre 800 et 993 px.
    Cela fait plusieurs jour que je cherche mais je ne vois pas.

    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
    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
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    /*
    	App by FreeHTML5.co
    	Twitter: http://twitter.com/fh5co
    	URL: http://freehtml5.co
    */
    @import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800");
    * {
      margin: 0px;
      padding: 0px;
      font-family: "Montserrat", "sans-serif";
    }
     
    html {
      overflow-x: hidden;
    }
     
    .download-btn-first {
      background: #f7f7f7;
    }
     
    .download-btn-first:hover {
      background: #234197;
      color: #fff !important;
    }
     
    .features-btn-first {
      font-weight: 700;
    }
     
    .features-btn-first:hover {
      background: #f7f7f7 !important;
      color: #234197 !important;
    }
     
    #fh5co-hero-wrapper {
      height:800px;
      width: 100%;
      background: url("../img/banner-bg.jpg") no-repeat center;
      border-radius: 0 0 50% 50% / 4%;}
     
    .main-navbar-nav .navbar-brand {
      font-size: 38px;
      letter-spacing: 4px;
      position: relative;
      top: -5px;
      font-weight: 500;
    }
     
    .main-navbar-nav {
      color: #fff !important;
    }
    .main-navbar-nav li {
      color: #fff;
      opacity: .7;
    }
    .main-navbar-nav .navbar-nav .nav-item a:hover {
      color: #234197 !important;
      -webkit-transition: all .33s ease;
      -moz-transition: all .33s ease;
      -o-transition: all .33s ease;
      -ms-transition: all .33s ease;
      transition: all .33s ease;
    }
    .main-navbar-nav .active {
      color: #fff !important;
      opacity: 1 !important;
    }
    .main-navbar-nav a {
      color: #fff !important;
    }
    .main-navbar-nav .nav-link {
      opacity: 1 !important;
      margin: 0 35px;
      font-size: 14.5px;
      font-weight: 500;
    }
     
    .social-icons-header i {
      margin: 15px;
      font-size: 20px;
    }
     
    .social-icons-header a:hover i {
      opacity: .6;
      -webkit-transition: all .2s ease;
      -moz-transition: all .2s ease;
      -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
      transition: all .2s ease;
    }
     
    .fh5co-hero-inner {
     /* margin-top: 110px;*/
      margin-top: 40px;
      position: relative;
    }
    .fh5co-hero-inner > h1 {
      color: #fff;
      font-weight: 300;
      font-size: 55px;
      letter-spacing: 2px;
    }
    .fh5co-hero-inner > p {
      width: 400px;
      font-size: 14px;
      color: #fff;
      margin-top: 30px;
      margin-bottom: 30px;
      line-height: 2em;
    }
    .fh5co-hero-inner .download-btn-first {
      font-size: 15px;
      padding: 10px 15px;
      font-weight: 700;
      color: #234197;
    }
    .fh5co-hero-inner .features-btn-first {
      font-size: 15px;
      padding: 8px 13px;
      font-weight: 400;
      background: #234197;
      color: #fff;
      margin-left: 10px;
    }
    .fh5co-hero-inner .fh5co-hero-smartphone {
      position: absolute;
      right: 0px;
      top: 120px;
      height: 650px;
    }
     
    /* ==========================================================================================================
    										ADVANTAGES
       ========================================================================================================== */
    .fh5co-advantages-outer {
      padding: 70px;
      height: auto;
      width: 100%;
      overflow: hidden;
    }
    .fh5co-advantages-outer .span-perfect {
      color: #648cff;
      text-transform: uppercase;
      font-size: 27px;
      letter-spacing: 1px;
    }
    .fh5co-advantages-outer .span-features {
      text-transform: uppercase;
      font-size: 42px;
    }
    .fh5co-advantages-outer .second-title {
      text-align: center;
      display: block;
    }
    .fh5co-advantages-outer small {
      display: block;
      text-align: center;
    }
    .fh5co-advantages-outer .fh5co-advantages-grid-columns {
      margin-top: 120px;
    }
    .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-image {
      width: 30%;
      float: left;
      padding-right: 30px;
      position: relative;
      top: 1px;
      color: #648cff;
    }
    .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-title {
      float: left;
      font-size: 20px;
      font-weight: 600;
    }
    .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-desc {
      float: right;
      font-size: 13px;
      padding-right: 7%;
      width: 70%;
      color: #c7c7c7;
      margin-top: 10px;
      line-height: 1.87em;
    }
     
    .fh5co-slider-inner {
      margin-top: 50px;
      margin-bottom: 30px;
    }
     
    /* ==========================================================================================================
    										SLIDER
       ========================================================================================================== */
    .fh5co-slider-outer {
      width: 100%;
      height: auto;
      padding: 70px;
    }
    .fh5co-slider-outer h1 {
      color: #648cff;
      text-transform: uppercase;
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: center;
    }
    .fh5co-slider-outer > h1, .fh5co-slider-outer small {
      text-align: center;
      display: block;
    }
    .fh5co-slider-outer .fh5co-slider-outer {
      margin-top: 50px;
    }
    .fh5co-slider-outer .carousel-left-arrow {
      position: absolute;
      left: -100px;
      bottom: 250px;
      font-size: 60px;
      color: #ececec;
    }
    .fh5co-slider-outer .carousel-right-arrow {
      position: absolute;
      right: -100px;
      bottom: 250px;
      font-size: 60px;
      color: #ececec;
    }
    .fh5co-slider-outer .item img {
      height: 400px;
      width: 200px;
      object-fit: contain;
    }
     
    /* ==========================================================================================================
    										FEATURES
       ========================================================================================================== */
    .curved-bg-div {
      background: url("../img/curved-bgg.jpg") no-repeat;
      background-position: 0px -140px;
      background-size: cover;
      width: 100%;
      height: 300px;
    }
     
    .fh5co-features-outer {
      width: 100%;
      height: auto;
      margin-top: -180px;
    }
    .fh5co-features-outer .col-sm-6 {
      margin-top: 80px;
    }
    .fh5co-features-outer .col-sm-6 img {
      height: 550px;
    }
    .fh5co-features-outer .sm-6-content {
      margin-top: 250px;
      position: relative;
    }
    .fh5co-features-outer .sm-6-content h1 {
      color: #648cff;
      text-transform: uppercase;
      font-size: 25px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .fh5co-features-outer .sm-6-content p {
      color: #111;
      font-weight: 500;
      font-size: 14.5px;
      line-height: 1.8em;
      width: 450px;
    }
    .fh5co-features-outer .col-sm-6 .col-sm-image-container {
      position: relative;
      width: 300px;
    }
    .fh5co-features-outer .col-sm-6 .span-new {
      color: #fff;
      background: #fcec64;
      padding: 18px;
      width: 35px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      box-sizing: initial;
      position: absolute;
      font-weight: 700;
      right: 0;
      top: 140px;
    }
    .fh5co-features-outer .col-sm-6 .span-free {
      color: #fff;
      background: #6ca3ff;
      padding: 18px;
      width: 35px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      box-sizing: initial;
      position: absolute;
      left: -35px;
      bottom: -430px;
      font-weight: 700;
    }
    .fh5co-features-outer .col-sm-6 .span-data {
      color: #7e8c91;
      background: #b8faee;
      padding: 20px;
      width: 40px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      letter-spacing: 1px;
      box-sizing: initial;
      position: absolute;
      top: 140px;
      right: -2px;
      font-weight: 700;
    }
    .fh5co-features-outer .col-sm-6 .span-percent {
      color: #fff;
      background: #6ca3ff;
      padding: 18px;
      width: 35px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      box-sizing: initial;
      position: absolute;
      left: -35px;
      bottom: -430px;
      font-weight: 700;
    }
    .fh5co-features-outer .col-sm-6 .circle {
      color: #c3cfe5;
      border: 1px solid #ededed;
      background: #fff;
      padding: 10px;
      width: 35px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      box-sizing: initial;
      position: absolute;
      font-weight: 600;
      box-shadow: 0 0 0 5px #f9f9f9;
    }
    .fh5co-features-outer .col-sm-6 .circle-first {
      width: 35px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      box-sizing: initial;
      position: absolute;
      margin-left: 0px;
      font-weight: 600;
    }
    .fh5co-features-outer .col-sm-6 .circle-middle {
      width: 35px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      box-sizing: initial;
      position: absolute;
      margin-left: 50px;
      font-weight: 600;
    }
    .fh5co-features-outer .col-sm-6 .circle-last {
      width: 35px;
      display: inline-block;
      line-height: 30px;
      height: 30px;
      text-align: center;
      border-radius: 50%;
      font-size: 14px;
      box-sizing: initial;
      position: absolute;
      margin-left: 100px;
      font-weight: 600;
    }
     
    /* ==========================================================================================================
    										REVIEWS
       ========================================================================================================== */
    .fh5co-reviews-outer {
      width: 100%;
      height: 400px;
      padding: 70px;
      margin-top: 100px;
    }
    .fh5co-reviews-outer .fh5co-reviews-inner {
      margin-top: 100px;
    }
    .fh5co-reviews-outer > h1 {
      color: #648cff;
      text-transform: uppercase;
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: center;
    }
    .fh5co-reviews-outer > small {
      text-align: center;
      display: block;
    }
    .fh5co-reviews-outer .testimonial-desc {
      clear: both;
      padding-top: 30px;
      font-weight: 500;
    }
    .fh5co-reviews-outer .testimonial-2 {
      margin-left: 50px;
    }
     
    /* ==========================================================================================================
    										BOTTOM
       ========================================================================================================== */
    .fh5co-bottom-outer {
      width: 100%;
      height: 572px;
      background: url("../img/download-section-bg.jpg") no-repeat center;
      margin-top: 120px;
      overflow-x: hidden;
    }
    .fh5co-bottom-outer .fh5co-bottom-inner {
      margin-top: 270px;
    }
    .fh5co-bottom-outer .fh5co-bottom-inner .col-sm-6 h1 {
      color: #fff;
      text-transform: uppercase;
      font-size: 30px;
      margin-bottom: 30px;
    }
    .fh5co-bottom-outer .fh5co-bottom-inner .col-sm-6 p {
      width: 350px;
      color: #fff;
      font-size: 14.5px;
      line-height: 1.85em;
    }
    .fh5co-bottom-outer .fh5co-bottom-inner .col-sm-6 img {
      margin-top: 25px;
    }
     
       /* ==========================================================================================================
    										SUB FOOTER
       ========================================================================================================== */
    .img-float-left {
      float: left;
    }
     
    .img-float-right {
      float: right;
    }
     
    .footer-outer {
      width: 100%;
      padding: 50px;
      height: 250px;
      background: #2e3149;
      overflow: hidden;
    }
    .footer-outer .footer-inner {
      width: 100%;
      height: inherit;
    }
    .footer-outer .social-icons-footer i {
      margin: 15px;
      font-size: 20px;
    }
    .footer-outer .social-icons-footer a:hover i {
      opacity: .6;
      -webkit-transition: all .2s ease;
      -moz-transition: all .2s ease;
      -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
      transition: all .2s ease;
    }
    .footer-outer .footer-three-grid {
      width: 1140px;
      margin: 0 auto;
      height: 50px;
      text-align: center;
    }
    .footer-outer .column-1-3 {
      width: 20%;
      float: left;
      height: 50px;
    }
    .footer-outer .column-1-3 h1 {
      font-size: 38px;
      letter-spacing: 3px;
      position: relative;
      top: -5px;
      font-weight: 600;
      color: #fff;
    }
    .footer-outer .column-2-3 {
      width: 60%;
      float: left;
      height: 50px;
    }
    .footer-outer .column-3-3 {
      width: 20%;
      float: left;
      height: 50px;
    }
    .footer-outer .column-3-3 a {
      color: #b5b5c8;
    }
    .footer-outer .column-3-3 .social-icons-header a:hover {
      color: #fff;
      opacity: 1;
      -webkit-transition: color .2s ease;
      -o-transition: color .2s ease;
      transition: color .2s ease;
    }
    .footer-outer .footer-nav ul {
      list-style: none;
      text-align: center;
    }
    .footer-outer .footer-nav ul li {
      display: inline-block;
      line-height: 50px;
      color: #b5b5c8;
      margin: 0 30px;
      font-size: 14px;
    }
    .footer-outer .footer-nav ul li:hover {
      color: #fff;
      -webkit-transition: color .2s ease-in-out;
      -o-transition: color .2s ease-in-out;
      transition: color .2s ease-in-out;
    }
    .footer-outer .footer-nav ul .active {
      color: #fff;
    }
    .footer-outer .footer-nav ul li a {
      color: #fff;
      text-decoration: none;
    }
    .footer-outer .border-bottom-footer {
      height: 1px;
      width: 60%;
      margin: 0 auto;
      border: 1px solid #434769;
      display: block;
      margin-top: 50px;
    }
    .footer-outer .copyright {
      color: #565b87;
      text-align: center;
      font-size: 13px;
      padding: 40px 0;
    }
     
    .google-play-btn {
      margin-left: 10px;
    }
     
    /* ==========================================================================================================
                                           RESPONSIVE STYLING
      ========================================================================================================== */
    @media screen and (max-width: 1400px) {
      body {
        overflow-x: hidden;
      }
     
      .fh5co-hero-inner .fh5co-hero-smartphone {
        position: absolute;
        right: 50px;
        top: 200px;
        height: 550px;
      }
     
      .curved-bg-div {
        background-position: 100% -20px;
      }
     
      .footer-outer .footer-three-grid {
        width: 100%;
      }
    }
    @media screen and (max-width: 1200px) {
      body {
        overflow-x: hidden;
      }
     
      .fh5co-hero-inner .fh5co-hero-smartphone {
        position: absolute;
        right: -15px;
        top: 200px;
        height: 550px;
      }
    }
    @media screen and (max-width: 993px) {
      body {
        overflow-x: hidden;
      }
     
      #fh5co-hero-wrapper {
        height: 95vh;
      }
     
      .fh5co-hero-inner {
        margin-top: 30px;
      }
     
      .fh5co-hero-inner .fh5co-hero-smartphone {
        position: absolute;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        top: 270px;
        height: 460px;
        margin-top: 110px;
      }
     
      .fh5co-advantages-outer {
        margin-top: 50px;
        padding-bottom: 0;
      }
     
      .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-image {
        width: 60px;
        float: none;
        display: block;
        margin: 0 auto;
        padding-right: 0px;
        margin-bottom: 20px;
        position: relative;
        top: 1px;
      }
     
      .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-title {
        float: none;
        text-align: center;
      }
     
      .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-desc {
        float: none;
        width: 100%;
        text-align: center;
      }
     
      .fh5co-slider-outer .fh5co-slider-outer {
        margin-top: 0px;
      }
     
      .fh5co-features-outer {
        margin-top: -100px;
      }
     
      .fh5co-features-outer .sm-6-content p {
        width: 100%;
      }
     
      .footer-outer .footer-nav ul li {
        margin: 0 10px;
      }
     
      .footer-outer .social-icons-footer i {
        margin: 15px 10px;
        font-size: 20px;
      }
    }
    @media screen and (max-width: 993px) {
      .fh5co-features-grid-columns .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        text-align: center;
      }
     
      .fh5co-features-outer .col-sm-6 .col-sm-image-container {
        position: relative;
        width: 295px !important;
        text-align: center;
        margin: 15px auto 0;
      }
     
      .no-float {
        float: none !important;
      }
     
      .fh5co-slider-outer .carousel-right-arrow {
        position: absolute;
        right: -70px;
        bottom: 250px;
        font-size: 60px;
        color: #ececec;
      }
     
      .fh5co-slider-outer .carousel-left-arrow {
        position: absolute;
        left: -70px;
        bottom: 250px;
        font-size: 60px;
        color: #ececec;
      }
     
      .img-float-right {
        float: none;
      }
     
      .img-float-left {
        float: none;
      }
     
      .fh5co-features-outer .col-sm-6 .span-percent, .fh5co-features-outer .col-sm-6 .span-free {
        left: -15px;
        bottom: 140px;
      }
     
      .fh5co-features-outer .col-sm-6 .span-new {
        right: -10px;
      }
     
      .fh5co-features-outer .col-sm-6 .span-data {
        right: -15px;
      }
     
      .fh5co-features-outer .col-sm-6 .circle {
        position: static;
        display: inline-block;
        margin: 25px 5px;
      }
     
      .fh5co-advantages-outer .second-title {
        margin-top: 60px;
      }
     
      .fh5co-features-grid-columns {
        display: flex;
        flex-direction: column;
      }
      .fh5co-features-grid-columns .in-order-4 {
        order: 1;
      }
      .fh5co-features-grid-columns .in-order-3 {
        order: 2;
      }
     
      .fh5co-reviews-outer {
        padding: 0;
      }
     
      .navbar-light .navbar-toggler {
        color: #fff !important;
        border-color: #c7c7c7 !important;
      }
     
      .navbar-light .navbar-nav .nav-link {
        margin: 0;
        width: 100%;
      }
     
      .social-icons-header i:first-of-type {
        margin-right: 10px !important;
        margin-left: 0 !important;
        font-size: 30px;
      }
    }
    @media screen and (max-width: 800px) {
      .fh5co-hero-inner > h1 {
        color: #fff;
        font-weight: 300;
        font-size: 45px;
        letter-spacing: 2px;
      }
     
      #fh5co-hero-wrapper {
        height: 800px;
      }
     
      .fh5co-advantages-outer .fh5co-advantages-grid-columns {
        margin-top: 40px;
      }
     
      .fh5co-advantages-grid-columns .col-sm-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        text-align: center;
      }
     
      .fh5co-hero-inner .fh5co-hero-smartphone {
        height: 420px;
        top: 310px;
      }
     
      .fh5co-advantages-outer .second-title {
        margin-top: 60px;
      }
     
      .fh5co-bottom-outer {
        margin-top: 40px;
        overflow: hidden;
      }
     
      .fh5co-bottom-outer .fh5co-bottom-inner {
        margin-top: 50px;
      }
     
      .fh5co-slider-outer {
        padding: 0;
      }
     
      .fh5co-slider-outer .carousel-left-arrow {
        left: 50px;
        font-size: 50px;
        bottom: 190px;
      }
     
      .fh5co-slider-outer .carousel-right-arrow {
        right: 50px;
        font-size: 50px;
        bottom: 190px;
      }
     
      .fh5co-reviews-inner .col-sm-5 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        width: 75%;
        max-width: 75%;
        margin: 30px auto;
        text-align: center;
      }
     
      .fh5co-slider-outer .item img {
        height: 300px;
      }
     
      .fh5co-reviews-outer {
        height: auto;
      }
     
      .fh5co-reviews-outer .fh5co-reviews-inner {
        margin-top: 50px;
      }
     
      .fh5co-bottom-outer {
        background-position: center bottom;
        overflow: hidden;
        height: auto;
      }
     
      .fh5co-bottom-inner {
        overflow: hidden;
        padding-bottom: 50px;
        text-align: center;
      }
     
      .overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        overflow-x: hidden;
      }
     
      .fh5co-bottom-outer .fh5co-bottom-inner .col-sm-6 p {
        width: 90%;
        margin: 0 auto;
      }
     
      .footer-outer {
        height: auto;
        padding: 20px;
      }
     
      .footer-outer .column-1-3 {
        width: 100%;
        float: none;
        height: auto;
        padding-top: 30px;
      }
     
      .footer-outer .column-2-3 {
        width: 100%;
        float: none;
        height: auto;
      }
     
      .footer-outer .column-3-3 {
        width: 100%;
        float: left;
        height: auto;
        margin: 15px 0;
      }
     
      .footer-outer .copyright {
        margin-top: 30px;
        padding: 10px 0;
      }
     
      .footer-outer .border-bottom-footer {
        height: 1px;
        width: 100%;
        margin: 0 auto;
        border: 1px solid #434769;
        display: block;
        margin-top: 100px;
      }
    }
    @media screen and (max-width: 520px) {
      #fh5co-hero-wrapper {
        height: 900px;
      }
     
      .fh5co-hero-inner > h1 {
        font-size: 40px;
      }
     
      .fh5co-hero-inner > p {
        width: 100%;
      }
     
      .fh5co-hero-inner {
        text-align: center;
      }
     
      .fh5co-hero-inner .fh5co-hero-smartphone {
        height: 450px;
        top: 420px;
        margin-top: 70px;
      }
     
      .social-icons-header i:first-of-type {
        font-size: 22px;
      }
     
      .fh5co-slider-outer .carousel-left-arrow {
        left: 0;
      }
     
      .fh5co-slider-outer .carousel-right-arrow {
        right: 0;
      }
     
      .fh5co-slider-inner {
        margin-top: 50px;
        margin-bottom: 30px;
      }
     
      .fh5co-reviews-inner .col-sm-5 {
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
        width: 90%;
        max-width: 90%;
        margin: 30px auto;
        text-align: center;
      }
     
      .fh5co-advantages-outer .span-perfect {
        margin-top: 80px;
        font-size: 18px;
        margin-bottom: 15px;
        display: block;
        width: 100%;
        text-align: center;
      }
     
      .fh5co-advantages-outer .span-features {
        font-size: 24px;
        display: block;
        width: 100%;
        text-align: center;
      }
    }

    Voici la page html en question.
    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
    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
    <!DOCTYPE html>
    <!--
    	App by FreeHTML5.co
    	Twitter: http://twitter.com/fh5co
    	URL: http://freehtml5.co
    -->
    <html lang="en">
    <head>
    	<meta charset="UTF-8">
    	<title>App &mdash; Free Website Template, Free HTML5 Template by FreeHTML5.co</title>
    	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    	<meta name="description" content="Free HTML5 Website Template by FreeHTML5.co" />
    	<meta name="keywords" content="free website templates, free html5, free template, free bootstrap, free website template, html5, css3, mobile first, responsive" />
    	<meta name="author" content="FreeHTML5.co" />
     
    	<!-- Facebook and Twitter integration -->
    	<meta property="og:title" content=""/>
    	<meta property="og:image" content=""/>
    	<meta property="og:url" content=""/>
    	<meta property="og:site_name" content=""/>
    	<meta property="og:description" content=""/>
    	<meta name="twitter:title" content="" />
    	<meta name="twitter:image" content="" />
    	<meta name="twitter:url" content="" />
    	<meta name="twitter:card" content="" />
     
    	<!-- Bootstrap  -->
    	<link rel="stylesheet" href="css/bootstrap.css">
    	<!-- Owl Carousel  -->
    	<link rel="stylesheet" href="css/owl.carousel.css">
    	<link rel="stylesheet" href="css/owl.theme.default.min.css">
    	<!-- Animate.css -->
    	<link rel="stylesheet" href="css/animate.css">
    	<!-- Font Awesome -->
    	<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
     
    	<!-- Theme style  -->
    	<link rel="stylesheet" href="css/style.css">
    </head>
    <body>
     
     
    <div id="page-wrap">
     
     
    	<!-- ==========================================================================================================
    													   HERO
    		 ========================================================================================================== -->
     
    	<div id="fh5co-hero-wrapper">
    		<nav class="container navbar navbar-expand-lg main-navbar-nav navbar-light">
    			<a class="navbar-brand" href="">App</a>
    			<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
    				<span class="navbar-toggler-icon"></span>
    			</button>
     
    			<div class="collapse navbar-collapse" id="navbarSupportedContent">
    				<ul class="navbar-nav nav-items-center ml-auto mr-auto">
    					<li class="nav-item active">
    						<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
    					</li>
    					<li class="nav-item">
    						<a class="nav-link" href="#" onClick="$('#fh5co-features').goTo();return false;">Features</a>
    					</li>
    					<li class="nav-item">
    						<a class="nav-link" href="#" onClick="$('#fh5co-reviews').goTo();return false;">Reviews</a>
    					</li>
    					<li class="nav-item">
    						<a class="nav-link" href="#"  onclick="$('#fh5co-download').goTo();return false;">Download</a>
    					</li>
    				</ul>
    				<div class="social-icons-header">
    					<a href="https://www.facebook.com/fh5co"><i class="fab fa-facebook-f"></i></a>
    					<a href="https://freehtml5.co"><i class="fab fa-instagram"></i></a>
    					<a href="https://www.twitter.com/fh5co"><i class="fab fa-twitter"></i></a>
    				</div>
    			</div>
    		</nav>
     
    		<div class="container fh5co-hero-inner">
    			<h1 class="animated fadeIn wow" data-wow-delay="0.4s">A Free HTML5 App Template Built with Bootstrap 4</h1>
    			<p class="animated fadeIn wow" data-wow-delay="0.67s">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Et voluptates, aliquid soluta distinctio dolorum tenetur. </p>
    			<button class="btn btn-md download-btn-first wow fadeInLeft animated" data-wow-delay="0.85s" onClick="$('#fh5co-download').goTo();return false;">Download</button>
    			<button class="btn btn-md features-btn-first animated fadeInLeft wow" data-wow-delay="0.95s" onClick="$('#fh5co-features').goTo();return false;">Features</button>
    			<img class="fh5co-hero-smartphone animated fadeInRight wow" data-wow-delay="1s" src="img/phone-image.png" alt="Smartphone">
    		</div>
     
     
    	</div> <!-- first section wrapper -->
     
     
    	<!-- ==========================================================================================================
    													 ADVANTAGES
    		 ========================================================================================================== -->
     
    	<div class="fh5co-advantages-outer">
    		<div class="container">
    			<h1 class="second-title"><span class="span-perfect">Perfect</span> <span class="span-features">Features</span></h1>
    			<small>Only necessary</small>
     
    			<div class="row fh5co-advantages-grid-columns wow animated fadeIn" data-wow-delay="0.36s">
     
    				<div class="col-sm-4">
    					<img class="grid-image" src="img/icon-1.png" alt="Icon-1">
    					<h1 class="grid-title">Usability</h1>
    					<p class="grid-desc">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem cupiditate.</p>
    				</div>
     
    				<div class="col-sm-4">
    					<img class="grid-image" src="img/icon-2.png" alt="Icon-2">
    					<h1 class="grid-title">Parallax Effect</h1>
    					<p class="grid-desc">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem cupiditate.</p>
    				</div>
     
    				<div class="col-sm-4">
    					<img class="grid-image" src="img/icon-3.png" alt="Icon-3">
    					<h1 class="grid-title">Unlimited Colors</h1>
    					<p class="grid-desc">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem cupiditate.</p>
    				</div>
     
     
    			</div>
    		</div>
    	</div>
     
     
    	<!-- ==========================================================================================================
    													  SLIDER
    		 ========================================================================================================== -->
     
    	<div class="fh5co-slider-outer wow fadeIn" data-wow-delay="0.36s">
    		<h1>SIMPLE WIDGETS</h1>
    		<small>Drag and Drop</small>
    		<div class="container fh5co-slider-inner">
     
    			<div class="owl-carousel owl-theme">
     
    				<div class="item"><img src="img/smartphone-2.png" alt=""></div>
    				<div class="item"><img src="img/smartphone-2.png" alt=""></div>
    				<div class="item"><img src="img/iphone.png" alt=""></div>
    				<div class="item"><img src="img/smartphone-2.png" alt=""></div>
     
     
    			</div>
     
    		</div>
    	</div>
     
     
    	<!-- ==========================================================================================================
    													  FEATURES
    		 ========================================================================================================== -->
     
    	<div class="curved-bg-div wow animated fadeIn" data-wow-delay="0.15s"></div>
    	<div id="fh5co-features" class="fh5co-features-outer">
    		<div class="container">
     
    			<div class="row fh5co-features-grid-columns">
     
    				<div class="col-sm-6 in-order-1 wow animated fadeInLeft" data-wow-delay="0.22s">
    					<div class="col-sm-image-container">
    						<img class="img-float-left" src="img/smartphone-1.png" alt="smartphone-1">
    						<span class="span-new">NEW</span>
    						<span class="span-free">Free</span>
    					</div>
    				</div>
     
    				<div class="col-sm-6 in-order-2 sm-6-content wow animated fadeInRight" data-wow-delay="0.22s">
    					<h1>New Features</h1>
    					<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam dolor iste beatae ad adipisci, fugiat dignissimos pariatur, dolore nemo suscipit cum nisi earum voluptates nulla! </p>
    					<span class="circle circle-first"><i class="fab fa-instagram"></i></span>
    					<span class="circle circle-middle"><i class="fab fa-facebook"></i></span>
    					<span class="circle circle-last"><i class="fab fa-twitter"></i></span>
    				</div>
     
    				<div class="col-sm-6 in-order-3 sm-6-content wow animated fadeInLeft" data-wow-delay="0.22s">
    					<h1>REAL-TIME STATISTICS</h1>
    					<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam dolor iste beatae ad adipisci, fugiat dignissimos pariatur, dolore nemo suscipit cum nisi earum voluptates nulla! </p>
    					<span class="circle circle-first"><i class="fas fa-star"></i></span>
    					<span class="circle circle-middle"><i class="far fa-star"></i></span>
    					<span class="circle circle-last"><i class="far fa-thumbs-up"></i></span>
    				</div>
     
    				<div class="col-sm-6 in-order-4 wow animated fadeInRight" data-wow-delay="0.22s">
    					<img class="img-float-right" src="img/smartphone-2.png" alt="smartphone-2">
    				</div>
     
    				<div class="col-sm-6 in-order-5 wow animated fadeInLeft" data-wow-delay="0.22s">
    					<div class="col-sm-image-container">
    						<img class="img-float-left" src="img/smartphone-2.png" alt="smartphone-3">
    						<span class="span-data">DATA</span>
    						<span class="span-percent">100%</span>
    					</div>
    				</div>
    				<div class="col-sm-6 in-order-6 sm-6-content wow animated fadeInRight" data-wow-delay="0.22s">
    					<h1>POWERFUL BACKEND</h1>
    					<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam dolor iste beatae ad adipisci, fugiat dignissimos pariatur, dolore nemo suscipit cum nisi earum voluptates nulla! </p>
    					<span class="circle circle-first">95%</span>
    					<span class="circle circle-middle"><i class="fas fa-forward"></i></span>
    					<span class="circle circle-last"><i class="fab fa-github"></i></span>
     
    				</div>
     
     
     
     
    			</div> <!-- row -->
     
     
    		</div>
    	</div>
     
     
    	<!-- ==========================================================================================================
    													  REVIEWS
    		 ========================================================================================================== -->
     
    	<div id="fh5co-reviews" class="fh5co-reviews-outer">
    		<h1>What people are saying</h1>
    		<small>Reviews</small>
    		<div class="container fh5co-reviews-inner">
    			<div class="row justify-content-center">
    				<div class="col-sm-12 wow fadeIn animated" data-wow-delay="0.25s">
    					<img class="float-left" src="img/quotes-1.jpg" alt="Quote 1">
    					<p class="testimonial-desc">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quis similique quasi.</p>
    					<small class="testimonial-author">John Doe</small>
    					<img class="float-right" src="img/quotes-2.jpg" alt="Quote 2">
    				</div>
    				<div class="col-sm-5 testimonial-2 wow fadeIn animated" data-wow-delay="0.67s">
    					<img class="float-left" src="img/quotes-1.jpg" alt="Quote 1">
    					<p class="testimonial-desc">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quis similique quasi.</p>
    					<small class="testimonial-author">Someone</small>
    					<img class="float-right" src="img/quotes-2.jpg" alt="Quote 2">
    				</div>
    			</div>
     
    		</div>
    	</div>
     
     
    	<!-- ==========================================================================================================
                                                     BOTTOM
        ========================================================================================================== -->
     
    	<div id="fh5co-download" class="fh5co-bottom-outer">
    		<div class="overlay">
    			<div class="container fh5co-bottom-inner">
    				<div class="row">
    					<div class="col-sm-6">
    						<h1>How to download the app?</h1>
    						<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eaque suscipit, similique animi saepe, ipsam itaque, tempore minus maxime pariatur error unde fugit tenetur.</p>
    						<a class="wow fadeIn animated" data-wow-delay="0.25s" href="#"><img class="app-store-btn" src="img/app-store-icon.png" alt="App Store Icon"></a>
    						<a class="wow fadeIn animated" data-wow-delay="0.67s" href="#"><img class="google-play-btn" src="img/google-play-icon.png" alt="Google Play Icon"></a>
    					</div>
    				</div>
    			</div>
    		</div>
    	</div>
     
     
    	<!-- ==========================================================================================================
                                                   SECTION 7 - SUB FOOTER
        ========================================================================================================== -->
     
    	<footer class="footer-outer">
    		<div class="container footer-inner">
     
    			<div class="footer-three-grid wow fadeIn animated" data-wow-delay="0.66s">
    				<div class="column-1-3">
    					<h1>App</h1>
    				</div>
    				<div class="column-2-3">
    					<nav class="footer-nav">
    						<ul>
    							<a href="#" onClick="$('#fh5co-hero-wrapper').goTo();return false;"><li>Home</li></a>
    							<a href="#" onClick="$('#fh5co-features').goTo();return false;"><li>Features</li></a>
    							<a href="#" onClick="$('#fh5co-reviews').goTo();return false;"><li>Reviews</li></a>
    							<a href="#" onClick="$('#fh5co-download').goTo();return false;"><li class="active">Download</li></a>
    						</ul>
    					</nav>
    				</div>
    				<div class="column-3-3">
    					<div class="social-icons-footer">
    						<a href="https://www.facebook.com/fh5co"><i class="fab fa-facebook-f"></i></a>
    						<a href="https://freehtml5.co"><i class="fab fa-instagram"></i></a>
    						<a href="https://www.twitter.com/fh5co"><i class="fab fa-twitter"></i></a>
    					</div>
    				</div>
    			</div>
     
    			<span class="border-bottom-footer"></span>
     
    			<p class="copyright">&copy; 2018 App. All rights reserved. Design by <a href="https://freehtml5.co" target="_blank">FreeHTML5</a>.</p>
     
    		</div>
    	</footer>
     
     
     
     
    </div> <!-- main page wrapper -->
     
    	<script src="js/jquery.min.js"></script>
    	<script src="js/bootstrap.js"></script>
    	<script src="js/owl.carousel.js"></script>
    	<script src="js/wow.min.js"></script>
    	<script src="js/main.js"></script>
    </body>
    </html>

    Merci d’avance pour votre aide.

  2. #2
    Invité
    Invité(e)
    Par défaut
    Bonjour,

    Oui, il y a un souci de 801 à 993 px.

    1- Regarde dans style.css ligne 621 :
    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    @media screen and (max-width: 993px) {
    ...
    #fh5co-hero-wrapper {
        height: 95vh;
    }
    ...

    2- Sinon, tu peux aussi modifier la hauteur de l'image (puisque c'est ELLE qui passe par dessus) :
    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    .fh5co-hero-inner .fh5co-hero-smartphone { ... }


    3- A toi de rajouter une "rustine" :

    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    @media screen and (min-width: 801px) and (max-width: 993px) {
    ...
    }

  3. #3
    Membre régulier
    Homme Profil pro
    Webplanneur
    Inscrit en
    Avril 2017
    Messages
    87
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Webplanneur

    Informations forums :
    Inscription : Avril 2017
    Messages : 87
    Points : 71
    Points
    71
    Par défaut
    Merci Jreaux,

    Avant d'appliquer la rustine j'aimerais savoir pourquoi je n'arrive pas à mettre un clear: both ? qui me semble serrait plus simple, ou je me trompe ?
    J'ai tester avec la class clearfix ou directement dans la div id="fh5co-hero-wrapper" avec style="display:block; clear:both;" voir un peu partout rien n'y fait ?
    J'aurais aimé pouvoir mettre n'importe quoi comme texte ou image et que la div du-dessous suis logiquement celle du dessus sans superposition.

    Entre-temps je vais essayé la rustine, merci Msieur !

  4. #4
    Invité
    Invité(e)
    Par défaut
    L'image est en position:absolute;.
    Elle est "hors flux".

  5. #5
    Invité
    Invité(e)
    Par défaut
    Une "rustine" possible (à adapter) :

    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    @media screen and (min-width: 801px) and (max-width: 993px) {
    .fh5co-hero-inner .fh5co-hero-smartphone {
        position: absolute;
        left: auto; /* modifié */
        right: 0;
        margin-left: auto;
        margin-right: auto;
        top: 100px; /* modifié */
        height: 400px; /* modifié */
        margin-top: 110px;
    }
    }

  6. #6
    Membre régulier
    Homme Profil pro
    Webplanneur
    Inscrit en
    Avril 2017
    Messages
    87
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Webplanneur

    Informations forums :
    Inscription : Avril 2017
    Messages : 87
    Points : 71
    Points
    71
    Par défaut
    Merci !
    Ta rustine fonctionne bien, je devrais l'adapter comme tu le dis ;-) actuellement le j'ai remplacé height: 95vh; par height: 800 px. qui fonctionne bien.
    Mais comme je voulais justement mettre l'image sur le coté je regarde à ta rustine.
    Merci !

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

Discussions similaires

  1. Problème d'entrée de données dans un formulaire
    Par issam16 dans le forum Access
    Réponses: 3
    Dernier message: 05/07/2006, 11h47
  2. Réponses: 1
    Dernier message: 19/04/2006, 16h32
  3. [SQL] Problème avec Entre [] et []
    Par samlepiratepaddy dans le forum Access
    Réponses: 8
    Dernier message: 11/11/2005, 11h33
  4. Réponses: 11
    Dernier message: 13/10/2004, 00h58
  5. problème déplacement entre formulaire
    Par estancha dans le forum IHM
    Réponses: 6
    Dernier message: 07/10/2004, 15h22

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