My portfolio. Feedback appreciated

Here it is: link
Thanks for taking a look! :slight_smile:

Hey good work! I like the red on your page :slight_smile:

A few points:

  • The navbar icon doesn’t work. Add bootstrap in the JS settings to fix.
  • You mentioned your instagram account. Consider making that a link.
  • The buttons are squeezed together on small screens. Consider enclosing each button in its own div with class col-sm-3 (and remove the col-xs-3 classes in the buttons), then add btn-block in your button classes. Like this:
<div class="row">
  <div class="col-sm-3">
    <a class="btn btn-block ..." href="..."> ... </a>
  </div>
  ...
  <!-- also, one of your </a>'s is typed as <a/>. -->
</div>

Other than those, yeah good job! :thumbsup:

Thank you for the feedback, kevcomedia!
When you say the icon on my navbar doesn’t work, do you mean that when you hover over “home” it doesn’t turn white? When I click on the navbar links, they do take me to their respective sections.

I meant the hamburger icon.

The navbar items don’t appear when clicking this.

1 Like

@kevcomedia is right. The good news is that the fix is frustratingly easy. If you can’t suss it out, give a holler :slight_smile:

1 Like

@JacksonBates Can you help me out with the fix? Thanks!

Bootstrap has it’s own JavaScript file for some of it’s animations.you can load it into the Codepen JS panel using the Quick Add option. Make sure it goes underneath the jquery one (it depends on jquery, so it has to load first).

@JacksonBates Awesome! It works now

1 Like