Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Samira 50

    @SamiraAliGaal

    Submitted

    So I've tried my best, but the cart icon is off, it happened when I tried sizing it down, that it got cut off. Anyway this is my best result, tried to stay as close to the design as possible.

    Eren 210

    @for-dev9

    Posted

    Hi, Nice job. You can change your CSS class when screen size change by using @media

    Example // effect when screen size is <= 600px and then change flex-direction from row to column

    @media (max-width: 600px) {
      .yourClass {
        flex-direction: column;
      }
    }
    
    For more information https://www.w3schools.com/cssref/css3_pr_mediaquery.php
    

    Marked as helpful

    1
  • @vilnislv

    Submitted

    There were no problems with this project, everything came easily and it just took time to polish it. In my opinion, the task should have been complicated by adding more interactivity.

    Eren 210

    @for-dev9

    Posted

    Hi, Nice work But i think u miss something. when click 'mark all as read' background color & Dot should disappear.

    Marked as helpful

    0
  • Eren 210

    @for-dev9

    Posted

    1. add modal div --> <div id="modal" class="modal"></div>
    2. set modal stylesheet --> display: none; position: fixed; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5);
    3. update your menu stylesheet z-index to 2
    4. Call JS function to show modal div -- > document.getElementById('modal').style.display = 'block';

    Marked as helpful

    0
  • Eren 210

    @for-dev9

    Posted

    1. add modal div --> <div id="modal" class="modal"></div>
    2. set modal stylesheet --> display: none; position: fixed; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5);
    3. update your menu stylesheet --> z-index:2
    4. Call JS function to show modal div -- > document.getElementById('modal').style.display = 'block';

    Marked as helpful

    0