suggestions welcome
Latest solutions
Coming Soon Page
Submitted 7 months agoI'd like help with refining the image layout, especially ensuring that the images scale well and remain visually appealing across different screen sizes. While I've made progress in setting the image to be responsive using CSS techniques like
object-fit: cover
andobject-position: top
, there are still some areas where the image might not appear as intended on certain screen resolutions or aspect ratios. I would appreciate suggestions on how to make the image layout more adaptable and ensure that it doesn't get cropped or distorted on smaller devices.Preview Card Component
Submitted 8 months agoI’d like guidance on making the project more accessible for users relying on assistive technologies. While I’ve used semantic HTML, I’m unsure if I’ve covered all accessibility best practices, such as proper ARIA roles or enhanced keyboard navigation.
Order Summary Component
Submitted 8 months agoWhile I’ve made the layout responsive, I’d like feedback on how I can improve the design for smaller screens. Are there any best practices I missed or additional tweaks I can make to improve usability on mobile devices?
NFT Card Component
Submitted 8 months agoAlthough I’ve added some basic accessibility features, such as semantic HTML tags and alt text for images, I’m not entirely confident in how well the component will be understood by screen readers. I would appreciate advice on best practices for improving accessibility for users who rely on screen readers, especially with interactive elements like the hover effect and icons.
Latest comments
- @Kedar37What are you most proud of, and what would you do differently next time?@drishti1920
-
Event Targeting You're correct that adding the event listener to the entire .subtitle div (instead of just .question) would improve the user experience. It ensures users can toggle the accordion by clicking anywhere on the question's container, not just the text.
-
Improper id Usage Using the same id="answer" for all <p> elements is invalid since IDs must be unique within the document. Use classes instead.
-
Font Family Issue In the body rule:
font-family: '', sans-serif;
The font-family is empty. Include the correct font.
-
- @CarlosLDC@drishti1920
Ensure proper use of ARIA roles and attributes. Add descriptive alt text for images and ensure color contrast ratios meet WCAG guidelines.