View Single Post
Old 10-11-2012, 07:47 AM   PM User | #7
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,614
Thanks: 5
Thanked 865 Times in 842 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
Yes, you need a different selector for that specific page, for example an ID or a class at the body element (or another element that’s different from the standard), and add that specific CSS rule somewhere below the current ones. For example, if your about us page has <body id="about"> you can do:
Code:
body {font-family: 'Gill Sans', Arial, Helvetica, Sans-serif;}
#about {font-family: Palatino, 'Times New Roman', Times, Serif;}
h1, h2, h3 {
  font-family: 'Arial Black', Arial, Helvetica, Sans-serif;
  font-weight: 900;
}
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote