Hi. You can make registration button look like login button, move search field to the left and welcome message to guests to right by this codes:
Your
header_welcomeblock_guest template:
<!-- Continuation of div(class="upper") as opened in the header template -->
<div class="welcome">
<form method="post" action="{$mybb->settings['bburl']}/member.php">
<input name="action" type="hidden" value="do_login" />
<input name="url" type="hidden" value="" />
<input name="quick_login" type="hidden" value="1" />
<input name="quick_username" id="quick_login_username" type="text" value="" class="textbox initial_focus" />
<input name="quick_password" id="quick_login_password" type="password" value="" class="textbox" />
<input name="submit" type="submit" class="button" value="{$lang->login}" />
<span class="registration_button"><a href="{$mybb->settings['bburl']}/member.php?action=register" class="register">{$lang->welcome_register}</a>
</form>
</div>
</div>
</div>
Also, put this in your
global.css file:
.registration_button {
background: #3f3f3f;
color: #ededed;
padding: 3px 8px;
cursor: pointer;
border: none;
outline: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 13px;
border-radius: 5px;
}
Than find in your
global.css tag
#search and under it you will find
float: right;
change it to:
float: left;
Have you some bigger image of that image? I don't see what everything is under green circle And I don't know what you thing exactly with blue one, isn't that here by default?
And you want only Home, Members and other links to be on top, nothing changed on them, right? With or without some border around them and their own background color?