I'm currently the admin for my program's website. Unfortunately, it was designed by somebody else. So there are sometimes some different approaches that I like to take to things that the existing structure doesn't support.
One is the CSS style sheet stuff that the last guy did. It messes everything up when I edit the pages in Dreamweaver. Fonts go haywire, formatting dies, etc. etc. I don't personally have much CSS experience so I'm not able to fix it well; I just make work-arounds.
I would appreciate if someone with some know-how could look at this style sheet and tell me if there is anything weird/awkward about it:
Feel free to suggest fixes too.
One is the CSS style sheet stuff that the last guy did. It messes everything up when I edit the pages in Dreamweaver. Fonts go haywire, formatting dies, etc. etc. I don't personally have much CSS experience so I'm not able to fix it well; I just make work-arounds.
I would appreciate if someone with some know-how could look at this style sheet and tell me if there is anything weird/awkward about it:
Code:
.linkbars {word-spacing: 10px; text-align: justify;}
font.langnavbar {font-family: geneva, arial; color: #5a6c94; font-weight: bold; font-style: normal; font-size: 10pt}
font.copy {font-family: verdana, arial; color: black; font-weight: normal; font-size: 10pt; font-style: normal}
font.navbar {font-family: geneva, arial; color: white; font-weight: bold; font-size: 11pt; font-style: normal}
font.quote {font-family: palatino, arial; color: #5a6c94; font-weight: bold; font-size: 10pt; font-style: italic}
font.quote1 {font-family: palatino, arial; color: black; font-weight: bold; font-size: 10pt; font-style: italic}
font.copyheading {font-family: verdana, arial; color: #5a6c94; font-weight: bold; font-size: 11pt; font-style: normal}
font.bullet {font-family: wingdings; color: black; font-weight:normal; font-size: 11pt font-style:normal}
.content {font-family: geneva, arial; color: black; font-weight: bold; font-style: italic; font-size: 11pt;}
font..beloitlink {font-family: geneva, arial; color: #000000; font-weight: normal; font-style: normal; font-size: 10pt}
.redtype {font-family:geneva, arial; color: #990000 font-size: 10pt; font-weight: bold;}
A:link {color:#5a6c94; }
A:visited {color:#3f8c84;}
.navbar a:link {font-family: geneva, arial; color: white; font-weight: bold; font-size: 11pt; font-style: normal; text-decoration:none;}
.navbar a:hover {font-family: geneva, arial; color: #003; font-weight: bold; font-size: 11pt; font-style: normal; text-decoration:none;}
.navbar a:visited {font-family: geneva, arial; color: white; font-weight: bold; font-size: 11pt; font-style: normal; text-decoration:none;}
.langnavbar a:link {font-family: geneva, arial; color: #5a6c94; font-weight: bold; font-style: normal; font-size: 10pt}
.langnavbar a:hover {font-family: geneva, arial; color:#003; font-weight:bold; font-size:11pt; font-style: normal;}
.langnavbar a:visited {font-family: geneva, arial; color:#3f8c84; font-weight:bold; font-size: 10pt; font-style: normal;}
.contentlinks a:link {font-family: geneva, arial; color: #5a6c94; font-weight: bold; font-style: italic; font-size: 11pt; text-decoration: underline;}
.contentlinks a:visited {font-family: geneva, arial; color:#3f8c84; font-weight:bold; font-size: 10pt; font-style: normal;}
.pagelinks a:link {font-family: geneva, arial; color: #003; font-weight: bold; font-size: 10pt; font-style: bold; text-decoration: underline;}
.pagelinks a:visited {font-family: geneva, arial; color: #003; font-weight: bold; font-size: 10pt; font-style: bold; text-decoration: underline;}
.lowbar a:link {font-family: geneva, arial; color: white; font-weight: bold; font-size: 10pt; font-style: normal; text-decoration:none;}
.lowbar a:hover {font-family: geneva, arial; color: #003; font-weight: bold; font-size: 10pt; font-style: normal; text-decoration:none;}
.lowbar a:visited {font-family: geneva, arial; color: white; font-weight: bold; font-size: 10pt; font-style: normal; text-decoration:none;}
Feel free to suggest fixes too.