1 (edited by KamWest 2020-11-10 00:55)

Topic: Remove Warning Box in PM

Is there any way I can remove this warning box?



https://i.postimg.cc/Kzh9cgnZ/Picture0002.png




It's a local forum for users to contact each other, this message is too loud and I don't need it.

Re: Remove Warning Box in PM

#brd-formemail .warn-box {
    display: none;
}

add to the end of the css file (..min.css).

ForkBB
I speak only Russian  :P

Re: Remove Warning Box in PM

Ahh, I see exactly where I can do that.

I'm new to PunBB and learning more everyday.
With that tidbit of information I have figured out how to hide pretty much anything using CSS


@Visman, you are a gem, thank you so very much for helping me with this.

Re: Remove Warning Box in PM

I'm also trying to increase the width of the last post column on the main index page and found this:
https://punbb.info/t-1199.html

I have no idea how to do any of that, is there not a simpler way to increase the width of that column by about 25% ?

I find that a lot of the topics are being changed to 2 lines there because of the long titles. I have short forum descriptions so the space could easily be used from there.

Re: Remove Warning Box in PM

Find

.main-content .main-item {
    padding-right: 35em;
    padding-left: 3.75em;
}

and

.main-content .main-item ul {
    width: 34em;
    right: -35em;
    margin-left: -34em;
}

Edit to preserve equality:

.main-content .main-item -> padding-righ == - .main-content .main-item ul -> right
ForkBB
I speak only Russian  :P

6 (edited by KamWest 2020-11-26 20:58)

Re: Remove Warning Box in PM

I found those in css but have no idea what values to change them to.

So if I want to make that last column 25% bigger

https://i.postimg.cc/637KJKPY/Picture0008.png



What value would I put into your previous post?

Re: Remove Warning Box in PM

See mine needs to be bigger

https://i.postimg.cc/65L15QDT/Picture0009.png

Re: Remove Warning Box in PM

Open the developer tools (F12) in your browser and edit the css of the necessary elements in real time.

ForkBB
I speak only Russian  :P