Sun, 2012-02-26 20:02
Hello
I have a 'test'site here:
http://proofreading4students.com/index_test.asp
I am trying to change the font face (to Ariel, verdana, or whatever), maybe the font colour, and dcertainly its size (it's too small at the moment), but I am unsure how to do it.
The index_test.asp file look like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <head> <title>mySite</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <LINK REL=StyleSheet HREF="index1.css" TYPE="text/css" MEDIA=screen> </head> <body> <%@ Language="VBScript" %> <% Dim suffix Select Case Day(Date()) Case 1,21,31: suffix = "st" Case 2,22: suffix = "nd" Case 3,23: suffix = "rd" Case Else: suffix = "th" End Select Response.Write "<p class=""show_date"">" & WeekdayName(Weekday(Date())) _ & " " & Day(Date()) & "<sup>" & suffix & "</sup> " _ & MonthName(Month(Date())) & "</p>" %> </body> </html>
And the index1.css file which it links to has the following:
p.show_date { font-size: x-small; text-align: right; } p.show_date sup { font-size: xx-small; }
Can anyone advise, please?:
Thanks.
Bluenose
Sun, 2012-02-26 21:19
#1
Something like?
body { color: #333; font: 100%/1.5 verdana, arial, sans-serif; /* 100% = font-size / 1.5 = line-height */ }
Tue, 2012-02-28 15:30
#2
Hello Tyssen Very many
Hello Tyssen
Very many thanks! That's done it. I have been trying for an age to resolve that!
Cheers
Bluenose