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

Submitted

E-commerce product page with VueJs

@Captressketh001

Desktop design screenshot for the E-commerce product page coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
3intermediate
View challenge

Design comparison


SolutionDesign

Solution retrospective


On the mobile screen, the previous button is displaying on the sidebar when it is active. How can I resolve that? Thanks, I await your feedbacks

Community feedback

@Femi-Bright

Posted

Hi! Oluwakemi! Nice Attempts 👏. As regards the sidebar issue. I will suggest you add z-index to the sidebar to place it above the buttons

.wrapper .sidebar {
    z-index: 50;
}

I also noticed that the nav bounces whenever I hovered over a Link. You could correct that by this trick

header ul li.menus {
    border-bottom: 5px solid transparent;
}

header ul li.menus:hover {
    border-bottom-color: (255, 125, 26);
}

the bottom borders will always be there, so its not like they will be adding to the height of the nav each time you hover. I hope you find this helpful

Marked as helpful

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord