For the first two, add this to your stylesheet:
Code:
.innerDiv, .innerDiv * {
font-family: verdana, trebuchet, sans-serif;
color: #fc3;
}
Centering something over your page is a bit vague. However, to center a scroller, give it margin: 0 auto;, ex:
Code:
#pscroller1{
width: 200px;
height: 100px;
border: 1px solid black;
padding: 5px;
background-color: lightyellow;
margin: 0 auto;
}
In IE this requires either an HTML 5 DOCTYPE or a valid URL DOCTYPE and an explicit width (like the width: 200px; in the above).
Bookmarks