HighDots Forums  

CSS style sheets not attaching in netscape

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss CSS style sheets not attaching in netscape in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #11  
Old   
Rendike
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 07:01 AM






Hi again Robert,
I have found the (<link href="file:///C|/Sites/mystylesheet.css"
rel="stylesheet" type="text/css">) now...

Does this mean that the page is not linking to the css file on my server, but
on the c drive ?

Randy


Reply With Quote
  #12  
Old   
Rendike
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 07:05 AM






Thanks all...
Let me check the help for defined site and ill be in touch soon...
Rendike

Reply With Quote
  #13  
Old   
Rendike
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 07:54 AM



Dear all,
thanks very much.. I now understand what I did wrong. Yes, the site wasnt
defined properly. I think Im now on my way. Ill be in touch if something
else goes wrong.

I do have another question, however.

why is it that with netscape, the borders of the table are showing and with
explorer, they don't ?

again in advance, thanks for your help.
Rendike




Reply With Quote
  #14  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 07:58 AM



It's because you have used IE proprietary code to specify border colors -

<table width="769" height="1070" border="2" align="center" cellpadding="0"
cellspacing="0" bordercolor="#FFF8E6" bordercolorlight="#FFF8E6"
bordercolordark="#FFF8E6" bgcolor="#FFF8E6">

Netscape doesn't support bordercolor attributes (and they are invalid HTML).
To get rid of the borders, make your table tag -

<table width="769" height="1070" border="0" align="center" cellpadding="0"
cellspacing="0">

or -

<table width="769" height="1070" align="center" cellpadding="0"
cellspacing="0" style="border:none;">

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"Rendike" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
Dear all,
thanks very much.. I now understand what I did wrong. Yes, the site wasnt
defined properly. I think Im now on my way. Ill be in touch if
something
else goes wrong.

I do have another question, however.

why is it that with netscape, the borders of the table are showing and
with
explorer, they don't ?

again in advance, thanks for your help.
Rendike






Reply With Quote
  #15  
Old   
Rendike
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 08:06 AM



Hi Murray,
so your saying that I cannot make a little border to keep things away from the edge a bit ?

Rendike

Reply With Quote
  #16  
Old   
Rendike
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 08:21 AM



Hi Murray,
okay if you take a look, the borders are gone, but you'll see the new problem ...

I can't seem to fix this ...

R

Reply With Quote
  #17  
Old   
Rendike
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 08:24 AM



Okay,
something seemed to work here...
I had to give the table bgcolor. #FFF8E6

R

Reply With Quote
  #18  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 10:01 AM



<body
onLoad="MM_preloadImages('file:///E|/CARE/Website/CARE/design/assets/images/PlasticSurgery_over.png','file:///E|/CARE/Website/CARE/design/assets/images/Dentistry_over.png','file:///E|/CARE/Website/CARE/design/assets/images/LaserEye_over.png','file:///E|/CARE/Website/CARE/design/assets/images/Medicalexams_over.png')">
<table width="769" height="1070" border="0" align="center" cellpadding="0"
cellspacing="0" bgcolor="#FFF8E6">
<!--DWLayoutTable-->
<tr>
<td height="197" colspan="4" valign="top" bordercolor="#FFF8E6"
bordercolorlight="#FFF8E6" bordercolordark="#FFF8E6">
<table width="100%" border="0" cellpadding="0" cellspacing="0"
bordercolor="#FFF8E6" bordercolorlight="#FFF8E6" bordercolordark="#FFF8E6"
bgcolor="#FFF8E6">

Your preloads are still broken links.

You are still using bordercolor attributes in your table tags.

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"Rendike" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
Okay,
something seemed to work here...
I had to give the table bgcolor. #FFF8E6

R



Reply With Quote
  #19  
Old   
Thierry | www.TJKDesign.com
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-30-2005 , 10:57 AM



Rendike wrote:
Quote:
Hi Thierry,
I dont know what MIME type means
could you explain.
thnks,
Forget about the MIME type (http://website.armmnet.net/faq/glossary.html#m),
as others said after you posted the URI, you didn't link to the style sheet
correctly.
But that doesn't really explain what you described in your original post:
things working in IE, but not in Netscape...

--
Thierry | http://www.TJKDesign.com | CSS-P Templates + Articles:
CSS Popups, CSS 3 Column Layout, CSS Tabs, CSS Dropdown Menu,
TIP Method, Sliced Images, Clean Popup Windows, Easy Maintenance.....




Reply With Quote
  #20  
Old   
Rendike
 
Posts: n/a

Default Re: CSS style sheets not attaching in netscape - 10-31-2005 , 02:32 AM



Hello again all,
thanks again for all your help. I have deleted all the bordercolor attributes
and broken links, I hope.

The page is uploaded, could something glimpse it over to see if it looks good
and there's nothing else I should do before I create all my pages.

thank you.
Rendike


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.