Open our company website and test it on different devices (mobile, tablet, desktop). Identify 3 issues with responsiveness and suggest improvements.
Steps to Test Responsiveness:
- Open the website in Google Chrome → Right-click → Inspect → Select Device Toolbar (mobile/tablet/desktop).
- Test the site on different screen sizes (e.g., iPhone, iPad, Laptop, Desktop).
- Check for:
- Layout shifts (text/images overlapping).
- Navigation/menu issues.
- Font readability.
- Button sizes and clickability.
- Image scaling and alignment.
📌 Example Findings (You can adapt with your actual website):
Issue 1: Navigation Menu
- Problem: On mobile, the navigation bar items overlap and are difficult to click.
- Improvement: Implement a hamburger menu with dropdowns for better usability.
Issue 2: Image Scaling
- Problem: Homepage banner images are cut off on tablets.
- Improvement: Use responsive image scaling (CSS: object-fit: cover or contain) to auto-adjust sizes.
Issue 3: Text Readability
- Problem: Font size is too small on mobile devices, making it hard to read.
- Improvement: Set responsive font sizes using relative units (em/rem) instead of fixed px.