Admin > Layout
from Available widgets section click on add widget link after Ask Box
and select pages you want and for place Main area - Top
>>>EDIT 1<<<
You need to modify classes below in qa-styles.css file of your theme..
.qa-ask-box{
background:#0087CA;
border:1px solid #005782;
border-radius: 3px;
}
.qa-ask-box .qa-form-tall-label{
font-weight:bold;
color: #fff;
text-transform: uppercase;
}
.qa-ask-box tr:hover{
background: none;
}
So in above classes you can change background color, text color etc..
>>>EDIT 2<<<
Add width property to .qa-ask-box
.qa-ask-box{
background:#0087CA;
border:1px solid #005782;
border-radius: 3px;
width:400px; //here change the value what you want
}