You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no button for the navbar on small devices. Something along the lines of <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> is missing.
There appears to be a redundant second navbar as well as seen here:
2. Row classes aren't enclosed by container / container-fluid:
Bootstrap documentation details that the grid system can only work inside a container.
3. Faulty Image Scaling:
Due to the lack of a boundary on the image, it scales to occupy a large portion of the page.
Fixes:
These should be pretty simple fixes. Just a few tweaks to the existing code should be required.
The text was updated successfully, but these errors were encountered:
1. NavBar Issues:
There is no button for the navbar on small devices. Something along the lines of
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
is missing.There appears to be a redundant second navbar as well as seen here:
2. Row classes aren't enclosed by container / container-fluid:
Bootstrap documentation details that the grid system can only work inside a container.
3. Faulty Image Scaling:
Due to the lack of a boundary on the image, it scales to occupy a large portion of the page.
Fixes:
These should be pretty simple fixes. Just a few tweaks to the existing code should be required.
The text was updated successfully, but these errors were encountered: