MyBB Community Forums

Full Version: Change the color of...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
..the line that separates a signature and a post, in a thread/post.

My forum is dark and they didn't make that line that separates the post content from a forum any lighter, so it looks like the post and signature are one.

How can I change the color?
ACP -> Templates & Styles -> Your theme -> global.css -> "Edit StyleSheet: Advanced Mode".

Find:
Quote:hr {
background-color: #000000;
color: #000000;
height: 1px;
border: 0px;
}
Replace "000000" with HEX code of your new color. Ex: "fff" for white.
Found it. Thanks!
Try searching for hr instead. Because if the theme designer has done some code edits, you can't get it by searching the full code i mentioned. Try searching for "hr" only.

If the problem still persists, let me know what's the theme.
Well to save some space maybe I could ask here too. Would you (or anyone) happen to know how to lengthen the signature bar?

As you can see in your forum it's not that long. Is there a way to stretch it to the other end of a post? It doesn't have to completely touch the other borders.

Is it possible to do?
ACP -> Templates & Styles -> Templates -> Your theme -> postbit templates -> postbit_signature.

It will be like this.
Quote:<hr size="1" width="25%" align="left" />
{$post['signature']}

Change 25% to 100%