thanks , but i use this code :
.qa-template-question .qa-view-count {
position : absolute;
right : 0;
top : -20px;
float : right;
margin : 0;
padding : 0 0 2px;
width : auto;
height : auto;
color : #777;
border : 0;
background:red;
}
.qa-template-question .qa-view-count-data {
font-size : 11px;
line-height : 12px;
margin-top : 1px;
display : inline;
}
.qa-template-question .qa-view-count-pad {
font-size : 8px;
line-height : 8px;
letter-spacing : 1px;
}
it is not working !!
i check html codes , there is no qa-template-question in div classes
my theme :
http://www.question2answer.org/qa/27972/iconic-one-theme-for-q2a-beta-version?show=27972#q27972
this theme is look like my wp theme
how can i add this class to qa-theme.php ?
i found this codes in qa-theme.php :
function q_item_stats($q_item) // add view count to question list
{
$this->output('<div class="qa-q-item-stats">');
$this->voting($q_item);
$this->a_count($q_item);
qa_html_theme_base::view_count($q_item);
$this->output('</div>');
}
function view_count($q_item) // prevent display of view count in the usual place
{
if ($this->template=='question')
qa_html_theme_base::view_count($q_item);
}
??!!