Change this:
Code: Select all
.onlinelist {
width: 15%;
overflow:auto;
height:300px;
}
Code: Select all
.onlinelist {
background-color: red;
width: 15%;
overflow:auto;
height:300px;
}
find the hex number of the color you wish and instead of saying red you could post like this:
Code: Select all
.onlinelist {
background-color: #ff0000;
width: 15%;
overflow:auto;
height:300px;
}