Sorry, I was meaning adding the word "OR" like the image attached.
I have tried to add the word in the header.php file but it didn't came out right.
<div class="wrapper">
<div id="logo">
<?php echo logo_header(); ?>
<span id="description"><?php echo osc_page_description(); ?></span>
</div>
<ul class="nav">
<?php if( osc_is_static_page() || osc_is_contact_page() ){ ?>
<li class="search"><a class="ico-search icons" data-bclass-toggle="display-search"></a></li>
<li class="cat"><a class="ico-menu icons" data-bclass-toggle="display-cat"></a></li>
<?php } ?>
<?php if( osc_is_web_user_logged_in() ) { ?>
<li class="first logged">
<span><?php echo sprintf(__('Hi %s', 'bender_red'), osc_logged_user_name() . '!'); ?> ·</span>
<strong><a href="<?php echo osc_user_dashboard_url(); ?>"><?php _e('My account', 'bender_red'); ?></a></strong> ·
<a href="<?php echo osc_user_logout_url(); ?>"><?php _e('Logout', 'bender_red'); ?></a>
</li>
<?php } else { ?>
<li><a id="login_open" href="<?php echo osc_user_login_url(); ?>"><?php _e('Login', 'bender_red') ; ?></a></li>
<?php if(osc_user_registration_enabled()) { ?>
<li><a href="<?php echo osc_register_account_url() ; ?>"><?php _e('Register for a free account', 'bender_red'); ?></a></li>
<?php }; ?>
<?php } ?>
<li class="publish"><a href="<?php echo osc_item_post_url_in_category() ; ?>"><?php _e("Publish your ad for free", 'bender_red');?></a></li>
</ul>
</div>