Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other My New Portfolio Site

  • This topic is empty.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #23059
    HJ05
    Member

    Hi everyone,
    I am new here to the forums. I am getting started as a freelancer and I just created my first portfolio site. I have been scouring the web and looking at other peoples sites. Now I am looking for some more critique on my site so any comments and/or criticisms are welcome and will be very much appreciated.

    My site is at http://www.JDHDevelopment.com

    Thanks in advance.

    #49075
    HJ05
    Member

    Thanks for the comments.

    The slogan I have been looking for a good place to put that from the start. I have an idea at the moment, I just need some time to implement it.

    The spirals I have wanted realistic spiral from the beginning but I have been having some trouble with it and this was what I was able to come up with. If anyone can suggest any good tutorials on it or some royalty free imagery I could chop up for it, it would be appreciated.

    I worked on the footer some removing the white areas and strengthening the shadows on all the elements. Let me know what you think.

    As always comments and criticisms are always welcome and requested.

    #49215
    HJ05
    Member

    I have updated the site again this time I put the slogan into a ribbon at the top of the page.

    Let me know what you think about this or anything else.

    HJ05

    #49842
    HJ05
    Member

    Hey everyone,

    I am having a small problem when it comes to google. I have the title tag on my site change based on what the url of the page is but for some reason google doesn’t recognize it when it crawls my site, it just goes for the default title tag for every page and then web master tools tells me I need different title tags for each page even though it works fine in normal browsers. My code is listed below. It is written in php. Any help would be appreciated as would any other comments about my site in general.

    <title>
    <?php
    $requestURI = explode(‘/’, $_SERVER);
    if ($requestURI[1] == "index.php" || $requestURI[1] == "")
    {
    echo(‘Freelance Web Developer | JDH Development’);
    }
    else if ($requestURI[1] == "portfolio.php")
    {
    echo(‘My Portfolio | JDH Development’);
    }
    else if ($requestURI[1] == "about.php")
    {
    echo(‘My Services and Technologies | JDH Development’);
    }
    else if ($requestURI[1] == "contact.php")
    {
    echo(‘Contact Me | JDH Development’);
    }
    else
    {
    echo(‘Freelance Web Developer | JDH Development’);
    }
    ?>
    </title>

    Thanks.

    #49901
    cssgirl
    Participant

    Hey I love the idea you have got going here!

    Some recommendations:

    For your menu links try using CSS Sprites. When you roll over the images, it takes nearly 3-5 seconds for the hover state background image to show up. CSS Sprites will allow this change to be instant.

    I don’t mean this in a mean way, so please don’t take it too much to heart – but it look too clip arty… like you can tell all of these are stock images and just kinda plopped in. For example the ribbon at the top doesn’t look like it belongs. You have mostly office/computery type of theme going on, and then a red ribbon shows up.

    Also, your images at the bottom of the cds and the cord need some photoshop loving. The edges are very jagged and you can see the white of where the background was. Because you are having this as a portfolio site, and you want to generate business from this it’s vitally important that you only show your best work, and leave no detail out. Otherwise people will get the idea that you don’t care enough about your own design and be skeptical about what you could do for them.

    I think what’s really throwing off the design is because the lighting/shadows are different for all the different images you’ve place in the layout, giving a kinda hectic flow to the design because your eye is bouncing around so much. Also because the background has so much detail/wood texture I would make it darker and take it down a bit so it isn’t so overwhelming. When I’m trying to read my eye keeps drawing back to the wood. And I doubt that’s what you want the focal point to be :)

    Also, you’re probably aware of this, but when you hover or click on one of the menu links a red outline appears (in firefox) that extends all the way to the left side of the screen.

    #49902
    HJ05
    Member

    When I started this design I thought it would look really cool and allow me to stand out some but after I was "done" with it I realized it wasn’t that great and I have been trying to come up with a new design maybe something more simplified but still give it some way of standing out. As for the red box around the links this is something that firefox and I think there is a simple CSS thing for it but I havn’t been able to find any way of fixing it.

    Also, I have been meaning to add a JavaScript image loader so that the images appear immediately instead of taking a second to load.

    Thanks for the feedback.

    I also think I might have figured out what Google’s problem is with the title tags: they havn’t indexed it since August they just update their site which is weird. I don’t know why they put something saying it was updated even through they haven’t actually gone back and re-indexed my site.

    #49904
    cssgirl
    Participant

    Actually I think it would still be a really cool design with just a bit of polishing. :)

    I believe the CSS for that is outline:0 — something like:

    a:active, a:hover {
    outline: 0;
    }

    #49929
    HJ05
    Member

    Thanks for the tips.

    I was able to remove the red outlines in Firefox by using:

    a:focus, a:hover, a:active { outline:none }

    I will work on polishing this design and possible work on a new design as time permits.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The forum ‘Other’ is closed to new topics and replies.