![]() | |
![]() |
| | Thread Tools | Display Modes |
#11
| |||
| |||
|
|
Hi Everyone, I am Jim Plaxco, a volunteer member of the National Space Society's Internet Development Team. I was hoping that some of you here could give us some feedback on our web site, particularly our home page. Our URL is http://www.nss.org snip! |
#12
| |||
| |||
|
|
On Sat, 11 Sep 2004 20:53:17 -0500, Jim wrote: Hi Everyone, I am Jim Plaxco, a volunteer member of the National Space Society's Internet Development Team. I was hoping that some of you here could give us some feedback on our web site, particularly our home page. Our URL is http://www.nss.org snip! The image in the left column of someone floating is resized using widht and height attributes in the browser! This is a Bad Idea (TM). Hmmm... On further look, it seems like the image of the Astra ad is resized like this as well. NEVER NEVER EVER use image width and height to resize an image -- that's not what those attributes are for. Use an image editing program (e.g. PhotoShop, Paint Shop Pro, The GIMP) to resize the image. Image width and height should *always* be the actual image pixel dimensions. By doing what you did you are (1) wasting bandwidth and (2) making the image look like crap. later... |
#13
| |||
| |||
|
|
Gazing into my crystal ball I observed Jim <Jim (AT) nospamwanted (DOT) com> writing in news 4dok01vpspgnv21tidkrjpm2g3svvjkeg (AT) 4ax (DOT) com:(c) There's no way to bypassing the (repetitive) navigation on each page and getting to the main content. Not sure that I follow you here. Can you elaborate please? You should have a "skip navigation" link. You can either have it visible, or you can use CSS to hide it from visual browsers. Eg: style type="text/css" /*this would be better in an external stylesheet*/ @media screen { .skip {display:none} } /*the following will cause the menu not to print*/ @media print { #menu {display:none} } /style /head body div id="menu" a href="#content" class="skip">Skip navigation</a /div div id="content" h1>The Page Title</h1 Lorem ipsum.... /div |
![]() |
| Thread Tools | |
| Display Modes | |
| |