Hi,
I am using snow theme and I want to add custom html codes to the right side of the header logo. I can see the codes related to custom html in qa-theme.php as well as the css file. But not able to see any option to do it.
How can I add custom html to the right side of the header logo, which looks blank as of now?
The codes I am able to see now are:
function header_custom() // allows modification of custom element shown inside header after logo
{
if (isset($this->content['body_header'])) {
$this->output('<DIV CLASS="header-banner">');
$this->output_raw($this->content['body_header']);
$this->output('</DIV>');
}
}
Are they related to, what I am looking for?