MyBB Community Forums

Full Version: Edit this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How can I remove buttons from my Homepage???? I want to remove Calender & Memberlist button from the header of my homepage.and I want to add some buttons at my header & How can I edit them???
can anyone help???? my forum http://www.banglapdf.com/
ACP >> Templates & Stlye >> Templates >> yourthem >> Header Templates >> header

You'll see the links for the Member List and Calendar in there, edit or delete them as required.
thanks AJS, but what about my 2nd question????
how can I Add buttons at header??? and can I give different color???
because I don't like my current color
see at http://www.banglapdf.com/
You can change how they're styled in your global.css

This what you're looking to change:
.menu {
    color:#000000;
    float:right;
    padding:0;
    list-style:none;
    margin:0;
}

.menu li {
    display:inline;
    padding:0 0 0 15px;
    text-transform:uppercase;
    text-shadow:0 -1px #fff;
    float:left;
    position:relative;
}

.menu a:link, .menu a:visited {
    color:#adadad;
    text-decoration:none;
}

.menu a:hover, .menu a:active {
    color:#3f98b3;
    text-decoration:underline;
}
YES THAT WORKS, BUT WHEN I LEAD MY MOUSE ON IT!!!
THERE IS NO PERMANENT COLOR CHANGE METHOD???
There's no need to shout.
Can you please elaborate, I don't know what you're asking in your third post. (There's no need to yell either)
when I take my mouse pointer over the buttons, then it changes color.
otherwise remains same boring #000000 color.
@AJS, I didn't shout dude.caps lock was on,didn't recognize that.
Thanks
Change the color value in this:
.menu {
    color:#000000; /* <-------- */
    float:right;
    padding:0;
    list-style:none;
    margin:0;
}

Pick a color here and copy the hex value the color attribute.
Change the color code here:
.menu a:link, .menu a:visited {
    color:#adadad;
    text-decoration:none;
}
Pages: 1 2