Gotcha. Please open wp-bulletin-board/php/wpbb-index.php around line 189 find:
<p class="wpbb-centered">
Replace with:
<p id="wpbb-index-links">
Save and close.
Then open wp-bulletin-board/css/wpbb-light-style.css and add at the bottom of the file below any content:
p#wpbb-index-links {
float:right;
margin-bottom:10px;
}
You can remove the “margin-bottom:10px;” line if the space increases or if it is greater than you like. Try increasing or decreasing the value to your liking.
You may also need to find (in the same file) if the menu is positioned next to the search bar:
/* Search Bar */
#wpbb-search {
float:right;
}
And replace with:
/* Search Bar */
#wpbb-search {
float:right;
clear:both;
}
But only if it doesn’t display itself above the search bar.
Let me know if you need help with this, emailing me is better, again it’s me at codebycarter.com
Thanks again.