Show DevBest My Portfolio design

Roon

Member
Mar 31, 2013
60
9
It's nowhere near done, but it's getting someone and it's my first official site.
I would like your opinions and suggestions for it, please :)

You can see it at (Thanks for the subdomain. <3)

It's a basic portfolio design, but it's a good start, I reckon :3
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
It is a good start, well done. I like the idea of the site, however there are a few things that could be improved (nothing drastic)

You don't have to do these, they're just suggestions:

  • Remove the "E-portfolio" title thing at the top, it doesn't do anything for the site
  • Decrease the size of the footer text
  • add some :hover effects on the navi - if there isn't already
  • Maybe lighten the background up a little? Maybe just me, but I'm not a fan of really dark designs :p
Anyway, good start. Keep it up :)
 

Roon

Member
Mar 31, 2013
60
9
It is a good start, well done. I like the idea of the site, however there are a few things that could be improved (nothing drastic)

You don't have to do these, they're just suggestions:

  • Remove the "E-portfolio" title thing at the top, it doesn't do anything for the site
  • Decrease the size of the footer text
  • add some :hover effects on the navi - if there isn't already
  • Maybe lighten the background up a little? Maybe just me, but I'm not a fan of really dark designs :p
Anyway, good start. Keep it up :)

I agree with the E-Portfolio bit.
Size of the footer text has been decreased to 17px from 30px.
There is some "mouseenter" effects which start...
Code:
$(document).ready(function(){
    $('#link').mouseenter(function(){
            $('#link').fadeTo(150, 1);
            $('#link').css("border", "2px solid #000000");       
    })
    $('#link1').mouseleave(function(){
            $('#link1').fadeTo(150, 0.30);
            $(this).css("border", "0px");
    });
});
I'm a fan of the backgrounds that look like they never end, but I can never find them :s
 

Users who are viewing this thread

Top