Style sheets not working

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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/
----------------------------------------
 
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;
}
 
Back
Top