Well, you have a custom theme in there so you only know how to do that :)
Anyway, I can guess you've modified the Snow theme, based on the look and feel of the search bar...
I can blindy advice you to try this:
1. Open /qa-theme/<your-theme>/qa-theme.php
2. Look for function search()
3. If it is not present (it shouldn't, as it is not present in Snow theme), then just add this function to the file:
public function search() {
$search = $this->content['search'];
$this->output(
'<div class="qa-search">',
'<form '.$search['form_tags'].'>',
@$search['form_extra']
);
$this->search_field($search);
$this->search_button($search);
$this->output(
'<span style="color: white">',
date('Y-m-d H:i:s'),
'</span>',
'</form>',
'</div>'
);
}
4. If it is present you'll have to merge the function with the one I'm giving you
Note the inline styling is just for make things easy for you. Ideally, you would apply or CSS rules to your css file.
EDIT:
Previous solution shold work in Snow theme. After taking a look at your site I can confirm you've modified it so much it is not Snow theme anymore. Without knowing your (new) theme it is very hard for me to guess. My closes try would be this:
1. Remove changes applied in the previous part of the answer
2. Locate again your qa-theme.php file
3. Edit the body_header function so that it looks like this:
public function body_header() {
$this->output('<div id="qa-login-bar"><div id="qa-login-group">');
$this->nav_user_search();
$this->output(
'<span class="qa-date-and-time">',
date('Y-m-d'),
'<br/>',
date('H:i:s'),
'</span>'
);
$this->output('</div></div>');
}
4. Edit your qa-styles.css file and add this to the bottom:
span.qa-date-and-time {
color: white;
float: left;
line-height: 1.2;
margin-left: 10px;
}
Maybe you're lucky and this fixes it.