site critique

Out of context: Reply #2

  • Started
  • Last post
  • 10 Responses
  • orrinward0

    I quite like the simple look of the front page but it tells me nothing about what the product is.

    Little note on possibly improving the left nav - When I scroll down the links I don't like that the border-right doesn't form a solid line. It just doesn't move well.

    li a {
    border-right:10px solid rgba(255,255,255, 0.05);
    display:block;
    list-style-type:none;
    overflow:hidden;
    padding-right:20px;
    width:330px;
    -webkit-transition: 0.3s linear all;
    }

    li a:hover {
    border-right:10px solid rgba(255,255,255,1);
    }

    and remove the 'a:hover' css. Not perfect but giving the list items a set width to keep the border-right neat improves the look, in my opinion of course...

View thread