MyBB Community Forums

Full Version: save space on top of the home page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Dear Friends,

In my forums home page on the top right side of my website logo, there is lot of space which is blank.

Is there any way i can move "Search" and "Welcome Back" strip which is below logo to that top right blank space so that entire content can move up.

Home page image below:

[attachment=31579]
Move:
<div id="panel">
<div class="menu">

Above:
<div class="logo">

Use this CSS

.menu {
    clear: both;
    float: right;
}

#panel {
    background: none repeat scroll 0 0 #EFEFEF;
    border: 1px solid #D4D4D4;
    color: #000000;
    float: right;
    font-size: 11px;
    margin-top: -10px;
    padding: 8px;
    width: 500px;
}

It's not pretty but make it pretty Smile