Hi,
Not by default that would not be possible.
You would need to activate your child theme, inside the functions.php
file you would need to copy and paste this:
You would need to replace this RIGHT SIDE TEXT
with your desired text and then align it to right using CSS.
/* TOP HEADER
================================================== */
if (!function_exists('sf_top_header')) {
function sf_top_header() {
$options = get_option('sf_dante_options');
$header_left_text = __($options['header_left_text'], 'swiftframework');
$top_header_output = '';
$top_header_output .= '<div id="top-header">';
$top_header_output .= '<div class="container">'. "\n";
$top_header_output .= '<div class="th-left col-sm-6 clearfix">'. "\n";
$top_header_output .= do_shortcode($header_left_text);
$top_header_output .= '</div> <!-- CLOSE .tb-left -->'. "\n";
$top_header_output .= '<div class="th-right col-sm-6 clearfix">'. "\n";
//$top_header_output .= sf_aux_links('top-header-menu');
$top_header_output .= 'RIGHT SIDE TEXT';
$top_header_output .= '</div> <!-- CLOSE .tb-right -->'. "\n";
$top_header_output .= '</div> <!-- CLOSE .container -->'. "\n";
$top_header_output .= '</div>';
return $top_header_output;
}
}
Thanks.