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
@for-dev9All comments
- @SamiraAliGaalSubmitted almost 2 years ago@for-dev9Posted almost 2 years ago
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 helpful1 - @vilnislvSubmitted almost 2 years ago
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.
@for-dev9Posted almost 2 years agoHi, Nice work But i think u miss something. when click 'mark all as read' background color & Dot should disappear.
Marked as helpful0 - @bherna24Submitted almost 2 years ago
How to dim images in background when the menu is opened?
@for-dev9Posted almost 2 years ago- add modal div --> <div id="modal" class="modal"></div>
- 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);
- update your menu stylesheet z-index to 2
- Call JS function to show modal div -- > document.getElementById('modal').style.display = 'block';
Marked as helpful0 - @MerxibeaucoupSubmitted almost 2 years ago
can someone please teach me how to add the background tint for active mobile Navbar please thanks
@for-dev9Posted almost 2 years ago- add modal div --> <div id="modal" class="modal"></div>
- 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);
- update your menu stylesheet --> z-index:2
- Call JS function to show modal div -- > document.getElementById('modal').style.display = 'block';
Marked as helpful0