Hey guys,
I am using a css style sheet in the website
There is a normal scroll bar on the right side of the screen, but there is also a another one in the middle that ends the website.
My question is, how do get rid of the extra tool bar and use the normal (default) one on the right?
Here's the style sheet I'm currently using
.contact
{
font-size: 10pt;
font: Arial, Verdana, Helvetica, sans-serif;
font-family: Arial, Helvetica, sans-serif;
background: #FFCC99;
border-width: 1;
border-style: solid;
border-color: black;
}
.div
{
font: Arial, Verdana, Helvetica, sans-serif;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
background-attachment: fixed;
padding-left:5px;
padding-right:3px;
}
body {
background: #FFCC99;
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
scrollbar-face-color: #ffffff;
scrollbar-shadow-color: #73062A;
scrollbar-highlight-color: #73062A;
scrollbar-3dlight-color: #73062A;
scrollbar-darkshadow-color: #73062A;
scrollbar-base-color: #73062A;
scrollbar-arrow-color: #73062A
}
p
{
font-family: arial, verdana;
font-size: 10pt;
color:#000000;
}
a {
color: #660000;
text-decoration: none;
font-weight: bold;
border-width: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
border-color: #000000;
}
ttp://people.clemson.edu/~priyad/Test
If you click on the "services" page, you will see what I'm talking about.
Thanks