Click to See Complete Forum and Search --> : Appreciate any feedback


Daniel Klann
07-25-2004, 09:40 AM
Hi,

I reworked my personal site a few weeks back and would appreciate any feedback from you guys.

www.danielklann.com (http://www.danielklann.com)

Cheers
Dan

zingmatter
07-25-2004, 06:51 PM
Clean, and to the point. Nicely done.

Only critism would be the image/logo. I would only use the top two-thirds of that image as a jpeg. In that removed space left have your 'DanielKlann.com' logo as a gif file. Or at least figure out a way to optimise your image+logo with the pixelation you have from trying to keep file size down.

Daniel Klann
07-26-2004, 02:58 AM
Thanks for your feedback Zing. I will take a look into the image/logo problem

Cheers,
Daniel

davidbrent
07-26-2004, 12:43 PM
How about exploring another way for optimising a header and page title. You could replace the image with hidden text layered onto a background. This way you could still have you image showing but for people with basically images and styles disabled on their browsers then you could still have a header.

this would be my way to do it. many people use this.

the lovely html

<div id="head">
<h1><span>Daniel Klann</span></h1>
</div>


the oh so simple css


#header {
margin:0;
padding:0;
background:url("imagedir/header.jpg")no-repeat;
}

#header h1 {
margin:0;
padding:0; /*this prevents some browsers putting in the default margin */
}

#header h1 span {
display:none; /* alternativley visability:hidden; */
}


this would be how i would do it.
hope that helps.


Best Wishes,
David