MyBB Community Forums

Full Version: How to create a hidden forum..??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2022-05-03, 10:25 AM)PARADOXP Wrote: [ -> ]I Recently visited your website and what i got the

blockquote's background seems weird because of white background.

change the backgroud property of blockquote class in your global.css line 747


.blockquote {
    background: none;
}

Having a similar situation with the reactions. Looking at the global.css is mind boggling. And thoughts on what and where...??

Thanks.

[Image: Screenshot-2022-05-11-at-09-45-35-Lifer.png]
open myreaction.css and chnage the background property of classes like :- 

.myreactions-container {
    background: #393e3f;
}

.myreactions-reaction {
    background: #393e3f;
}

and donn't forget to add this css in global.css for fix the width of logo

img.logoimg {
    width: 100%;
}

For better scrollbar in shoutbox you can apply this css in global.css


.window::-webkit-scrollbar {
    width: 7px;
    background: #343434;
}

.window::-webkit-scrollbar-thumb {
    background: green;
}
(2022-05-11, 05:41 PM)PARADOXP Wrote: [ -> ]open myreaction.css and chnage the background property of classes like :- 

.myreactions-container {
    background: #393e3f;
}

.myreactions-reaction {
    background: #393e3f;
}

and donn't forget to add this css in global.css for fix the width of logo

img.logoimg {
    width: 100%;
}

For better scrollbar in shoutbox you can apply this css in global.css


.window::-webkit-scrollbar {
    width: 7px;
    background: #343434;
}

.window::-webkit-scrollbar-thumb {
    background: green;
}
Excellent stuff mate, a million thanks...!!

Might I just add that if you have any other useful tips you care to impart that would be fantastic... Smile
Pages: 1 2