Latest solutions
responsive article signup page
Submitted 5 months agoI want help in the local storage method and the error while handling the email input
Responsive Article preview page
Submitted 5 months agoWith js as when Im hovering above the share button its not showing the other icons
Responsive Testimonial Grid sectional css
Submitted 5 months agoI want to help in responsiveness and grid sections sizing
Latest comments
- @chanwinharold@Belamana-Harshitha
I want help in the BEM and the other aspects of js
- @shubhamprakash911@Belamana-Harshitha
can you help me with that pop up for that social links in js..
- @romanhordiienko131What specific areas of your project would you like help with?
P tags inside the white testimonials take more space than the text inside. Wasn't able to understand why that happens so I would be very grateful if someone could help me with that.
@Belamana-HarshithaI want a help in grid sizing ..
- @ardolynk-rebornWhat are you most proud of, and what would you do differently next time?
For larger screens I used a grid layout and
<section class="cards"> <div class="card supervisor"> <h3>Supervisor</h3> <p>Monitors activity to identify project roadblocks</p> <img src="./images/icon-supervisor.svg" alt="Supervisor" /> </div> <div class="card team-builder"> <h3>Team Builder</h3> <p>Scans our talent network to create the optimal team for your project</p> <img src="./images/icon-team-builder.svg" alt="Team Builder" /> </div> <div class="card karma"> <h3>Karma</h3> <p>Regularly evaluates our talent to ensure quality</p> <img src="./images/icon-karma.svg" alt="Karma" /> </div> <div class="card calculator"> <h3>Calculator</h3> <p>Uses data from past projects to provide better delivery estimates</p> <img src="./images/icon-calculator.svg" alt="Calculator" /> </div> </section>
@media (min-width: 48em) { .cards { display: grid; grid-template-columns: repeat(3, 1fl); grid-template-rows: repeat(4, 1fl); } .card { margin: 16px; } .supervisor { grid-row: 2 / 4; grid-column: 1; } .team-builder { grid-row: 1 / 3; grid-column: 2; } .karma { grid-row: 3 / 5; grid-column: 2; } .calculator { grid-row: 2 / 4; grid-column: 3 } } ### What challenges did you encounter, and how did you overcome them? Grid layout and elements positioning (see above).
@Belamana-HarshithaI want help with the responsiveness please
- @Ghozy165What are you most proud of, and what would you do differently next time?
Responsiveness
What challenges did you encounter, and how did you overcome them?making it responsive
@Belamana-Harshithacan you help me with the responsiveness and media queries..
- P@jeffgrahamcodesWhat are you most proud of, and what would you do differently next time?
I’m most proud of how well the structure and design align with the mockup provided. The use of semantic HTML, such as <article>, <section>, and <figure>, ensures the content is accessible and meaningful. The CSS refactor introduced reusable design tokens for colors, typography, and spacing, which improved maintainability and made the code easier to scale. Additionally, the layout adapts seamlessly across different screen sizes, preserving the design’s visual hierarchy and user experience.
If I were to approach this project again, I’d dedicate more time to enhancing accessibility by adding descriptive alt text to images and considering screen reader optimizations like aria-labels for interactive elements. I would also explore adding subtle animations or transitions to improve interactivity and make the user experience more engaging. Finally, further testing for edge cases, such as very narrow viewports or long text strings, could help identify areas for fine-tuning.
What challenges did you encounter, and how did you overcome them?One of the main challenges was ensuring the text content remained visually balanced and aligned across different screen sizes. Initially, text wrapping issues and inconsistent spacing caused the layout to deviate slightly from the design mockup. This was resolved by refining the typography styles, adjusting line heights, and using consistent padding and margins defined by CSS variables. Another challenge was managing the list styles, particularly ensuring markers and text alignment matched the mockup’s aesthetic. By using ::marker styling and centralizing spacing rules, I achieved a clean and organized list layout.
What specific areas of your project would you like help with?I’d appreciate feedback on the responsive design, particularly how well it performs on smaller screens. Additionally, guidance on optimizing accessibility for screen readers and ensuring a smooth experience for keyboard navigation would be valuable. If there are any opportunities to further reduce CSS redundancy or improve the semantic structure of the HTML, I’d love to hear suggestions. Finally, any ideas for enhancing interactivity, such as subtle animations or hover effects, would be helpful to make the design more dynamic and engaging.
@Belamana-HarshithaThanks this was my first challenge learnt a lot