Question : Drupal - changing css for only one View

Want to change the look of a specific View without changing all views.  For example the following CSS effects all Views but I only want it to effect the View's Page format and not the View's Block format.  

.views-field-title
  {
  font-size: 20px;
  font-weight:bold;
  }

Answer : Drupal - changing css for only one View

The class you are looking for is
view-id-display-id-page_4
The code below is somewhat crude, but reflects what you want. It will color "views-field-title" red, but only if it's within the "page_4" view.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
<html>
<head>
<title>A</title>
<style>
.view-id-display-id-page_4 .views-field-title {
        color: red;
}
</style>
</head>
<body>
<div class="view-id-display-id-page_4">
        <div class="views-field-title">
                Red text
        </div>
</div>
<div class="views-field-title">
        Not red text
</div>
</div>
</body>
Random Solutions  
 
programming4us programming4us