Style sheets not working

M

mita

Hi Guys. i have attached a couple of style sheets to my DWt page and updated
my website. These are some print sttyle sheets to produce print friendly page.
My website address is www.sissal.govt.nz
It is password protected at the moment
username: mita
P/w : sissal

Here is the code for my style sheet
body {
color : #000000;
background : #ffffff;
font-family : "Times New Roman", Times, serif;
font-size : 12pt;
}
a {
text-decoration : underline;
color : #0000ff;
}
#navigation, #advertising, #other {
display : none;
}
..printonly {
display:block;
font-size:larger;
background-color:#f0f0f0;
}


Thanks
 
T

Trevor L.

David said:
Why are you telling us this? What is your question??
David,
Yes, I also wondered about this, but I have been making comments on this
site for a little while now, so I just assumed it was adding to the info
given before.

mita,
What is it that you are expecting to happen which doesn't happen ?
--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
M

Murray

You have spaces between the style names and the colon. Don't do that.
E.g.,

body {
color: #000000;
background : #ffffff;
font-family: "Times New Roman", Times, serif;
font-size: 12pt;
}
a {
text-decoration: underline;
color: #0000ff;
}
#navigation, #advertising, #other {
display: none;
}
..printonly {
display:block;
font-size:larger;
background-color:#f0f0f0;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top