MyBB Community Forums

Full Version: DVZ_Shoutbox & Flow Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I recently installed DVZ_Shoutbox onto my forum to find it turning out like this.

[Image: f682b5.png]

As you can see, the header goes through the announcement bar, obviously not intended. I am not sure what is causing this, it's either the theme or the plugin. I would like the header to not go through the announcement bar and have the border under it.

Thanks.
May I know your Forum link ?
It's because of your theme compatibility with the DVZ plugin, you need to modify templates to make it adjust according to the theme.
(2017-06-11, 02:42 PM)WallBB Wrote: [ -> ]It's because of your theme compatibility with the DVZ plugin, you need to modify templates to make it adjust according to the theme.

I see, which template would I have to modify?

(2017-06-11, 01:41 PM)HMR Wrote: [ -> ]May I know your Forum link ?

Sure, dropped it in your DMs.
At flow.css's 456 line..
replace the news class with this one:
.news {
    margin: 10px 0px 25px 0px;
    width: 100%;
    height: 40px;
    line-height: 50px;
    border: 2px solid RGBA(159, 0, 255, 0);
    background: rgba(210, 210, 210, 0.6);
}
and save + hard refresh.. thats it.
(2017-06-12, 12:56 PM)HMR Wrote: [ -> ]At flow.css's 456 line..
replace the news class with this one:
.news {
    margin: 10px 0px 25px 0px;
    width: 100%;
    height: 40px;
    line-height: 50px;
    border: 2px solid RGBA(159, 0, 255, 0);
    background: rgba(210, 210, 210, 0.6);
}
and save + hard refresh.. thats it.

Awesome, this works perfectly! Thanks man.