MyBB Community Forums

Full Version: Replacing [hr] with an image?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I am trying to replace this:



With this:

[Image: CtrFilq.png]

Thank you.
You could probably do that with CSS, honestly. Or something pretty close to it. I'm doing the HRs on this page with CSS:

http://harajuju.net/Topic-Kiryuyrik
(2013-06-02, 05:26 AM)brad-t Wrote: [ -> ]You could probably do that with CSS, honestly. Or something pretty close to it. I'm doing the HRs on this page with CSS:

http://harajuju.net/Topic-Kiryuyrik

How exactly would I go about doing this?
the easiest way to achieve this is to change the "Merge Separator" from ACP >> Configuration >> Posting >> Merge Separator

change [hr] to [img]your image link[/img] 

Big Grin
A better way to do this would be with CSS.

hr {
border:0;
outline:0;
background: url(IMAGE LINK) center no-repeat;
}