Jump to content

[SOLVED] CSS, Mozilla, Opera


DarkPrince2005

Recommended Posts

Why doesn't Mozillla Or Opera read the css?

 

.scrollable { 
width: 100%; 
height: 300; 
overflow: auto;
background-repeat:no-repeat;
background:"glogo.gif"; 
} 

td{background-repeat:no-repeat;
font-size:"14pt";
}

h2{
font-family:"Wide Latin";
}

body{scrollbar-face-color: "#ffffff";
scrollbar-shadow-color: "#ffffff";
scrollbar-highlight-color: "#ffffff";
scrollbar-3dlight-color: "#ffffff";
scrollbar-darkshadow-color: "#ffffff";
scrollbar-track-color: "#ffffff";
scrollbar-arrow-color: "#000000";
}

p{font-size:"12pt";
}

 

It doesn't recognize or read the linked stylesheet

Link to comment
Share on other sites

If you want help you're going to have to post all your code, not just a few lines of css.

 

However, the stuff you did post is riddled with errors:

 

- {height:300;} should contain a unit. Maybe you meant {height:300px;}

- {background:"glogo.gif";} should be {background-image:url(glogo.gif);}

- using pt as the unit for font-size is not recommended for screen media

- {font-family:"Wide Latin";} should also include a fall-back font that is sure to be on ever user's computer. Since Wide Latin is a serif, use serif: {font-family:"Wide Latin", serif;}

- all the scrollbar css properties are IE-specific. No other browser will pay attention to them.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.