RE: [css-d] Why don't my images appear on site?

2005-09-23 Thread Arno @ Raketnet
images/masthead770.gif in your coding I guess refers to
originalmasthead.gif in your images folder. Filenames should be exactly
the same, otherwise they can't be found. Aside from that there are a lot
of images not in the folder you are refering to in your coding. Double
check if they are uploaded or maybe in a different folder.



a:link, a:visited, a:hover {
color:#33;
text-decoration: none;
}

#button li a {
display: block;
padding: 5px 5px 5px 2em;
color: #fff;


Some other comments
The reason why your links don't show the way they do, is I think because
in the specification you put color: #33. Those are letters o in
stead of numbers 0. Change that and it should start to work.
Furthermore, not error related, but more cleanliness related; try to be
consistent in the units you use. For example in the #button li a you use
in the padding both px and em. Here and there you use 0px or 0.
Theoretically the value 0 doesn't need a unit. Elsewhere you use #ff
and #fff. Use of uppercase and lowercase. Indentation here, no
indentation there.
Those are not errors, but it's not neat, nor clear for yourself or
anyone else who might have to update it when you can't.
As earlier mentioned, there's a lot of specifications that can be
bundled. And validate, of course! That might solve the major part of
your problems.



Arno


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Why don't my images appear on site?

2005-09-22 Thread David Laakso

Nancy Smith wrote:


I am doing my first CSS site and it is a killer.
First, it doesn't look right in Foxfire or Monzilla,
but only IE on the PC and Mac.


Code for FF. Hack IE.

 Very frustrating. 
Second, none of my jpegs show up on the site. 
 


Images that do not appear in FF seldom have to due with CSS.


http://www.wminc.biz

Any help would be greatly appreciated. 
 




FWIW, see:

and:
Captures:

Suggestion:
Read again what I sent you off-list the day before yesterday.

Best,
dL


--
David Laakso
http://www.dlaakso.com

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Why don't my images appear on site?

2005-09-22 Thread James Wanless
Clean up your stylesheet for formatting and validation. Not that I 'tested'
it, but HTML at the very top of the file is probably preventing Mozilla
based browsers from interpretting it.

As a bit of another tip, you can optimize the size of your stylesheet by
putting all the padding attributes, etc, in one declaration. Similarly with
borders, etc.

Unless your images are referred to in the stylesheet as backgrounds, and
even if they are, ensure all your paths are correct. It seems you refer to
many things from the root of the site. Organizing your architecture
logically will go a long way to preventing this.

Cheers;
jdw


On 9/22/05, Nancy Smith <[EMAIL PROTECTED]> wrote:
>
> I am doing my first CSS site and it is a killer.
> First, it doesn't look right in Foxfire or Monzilla,
> but only IE on the PC and Mac. Very frustrating.
> Second, none of my jpegs show up on the site.
>
> http://www.wminc.biz
>
> Any help would be greatly appreciated.
> __
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> Supported by evolt.org  --
> http://www.evolt.org/help_support_evolt/
>
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Why don't my images appear on site?

2005-09-22 Thread Steve Clason

On 9/22/2005 7:26 PM Nancy Smith wrote:

I am doing my first CSS site and it is a killer.
First, it doesn't look right in Foxfire or Monzilla,
but only IE on the PC and Mac.  Very frustrating. 
Second, none of my jpegs show up on the site. 


http://www.wminc.biz


Hi Nancy,

This isn't a CSS issue, but your images don't show up because they 
aren't on the server, at least not where you think they are.  This 
should be an image, according to your markup:


http://www.wminc.biz/newinside.jpg

but that URL generates a 404 error.

You might make sure the images have been uploaded to the server, and to 
what directory.


The main reason IE renders differently from Gecko browsers is that your 
host is serving your style sheet as "Content-Type: text/plain", which 
Gecko (rightly) refuses to treat as a style sheet (should be 
"Content-type:text/css", if memory serves.)


You'll have to get that stuff right and then we can help you if any CSS 
issues remain.


--
Steve Clason
Web Design and Development
Boulder, Colorado, USA
www.topdogstrategy.com
(303)818-8590

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Why don't my images appear on site?

2005-09-22 Thread Keith Sader
Could you post a pice of the problematic CSS for the list?

thanks

On 9/22/05, Nancy Smith <[EMAIL PROTECTED]> wrote:
> I am doing my first CSS site and it is a killer.
> First, it doesn't look right in Foxfire or Monzilla,
> but only IE on the PC and Mac.  Very frustrating.
> Second, none of my jpegs show up on the site.
--
Keith Sader
[EMAIL PROTECTED]
http://www.saderfamily.org/roller/page/ksader
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] Why don't my images appear on site?

2005-09-22 Thread Peter Williams
> From: Nancy Smith
> Second, none of my jpegs show up on the site. 
> http://www.wminc.biz

Nancy,



When I looked in http://www.wminc.biz/images/
I saw no such image. Looks to me like you forgot to upload them.

-- 
Peter Williams
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Why don't my images appear on site?

2005-09-22 Thread Rimantas Liubertas
2005/9/23, Nancy Smith <[EMAIL PROTECTED]>:
> I am doing my first CSS site and it is a killer.
> First, it doesn't look right in Foxfire or Monzilla,

Hi, some interesting browsers you have got ;)

> but only IE on the PC and Mac.  Very frustrating.
> Second, none of my jpegs show up on the site.

As far as I can tell your jpegs are not  on the server.
I've tried directly retrieve sidebar.jpg - it is not here,

aboutus.htm reffers to images/faucet.jpg, but there is no
faucet.jpg in the images directory...

And frankly, sorry to say that, but I wouldn't expect much of
the cross-browser compliance with the current state of your HTML.

Make it meaningfull and make if valid. Things likt that below look
confusing...:

  


Hose Bids 
  
<...>

Regards,
Rimantas
--
http://rimantas.com/
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/