Easy question and one request

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

Easy question and one request

Post by Crystallas »

I really love how the posts here have what seems to be perfect spacing and borders.

Would you be willing to share what exactly the border colours/withs are. :D
Right now I have a pretty heavily modified prosilver, and I can't remember where, for the life of me, to find the postbody/profilebody borders settings. Do I need to add borders somewhere?

Also, quick question #2.

I want to make the Image into an online/offline status marker, with alt text/hover that says "Private Message(Offline)" ect. Then remove the existing online status image completely, so this would replace it.

Re: Easy question and one request

Post by Steve »

borders easy , but will add borders in most common fields using bg1,bg2 css code
open styles/prosilver/theme/colours.css
find:

Code: Select all

.bg1	{ background-color: #ECF3F7; }
.bg2	{ background-color: #e1ebf2;  }
replace with:

Code: Select all

.bg1	{ background-color: #ECF3F7; border:solid 1px #000000; }
.bg2	{ background-color: #e1ebf2; border:solid 1px #000000; }
you can also add it too .postbody also in colours.css, but dont looks so good.

Code: Select all

.postbody {
	color: #333333;
	border: solid 1px #000000;
	padding: 5px;
}
replace #000000 to colour to suit your needs.

the rest offline online image i will look into.

Re: Easy question and one request

Post by Crystallas »

Ah, such a simple adjustment, and everything looks so nice! Thank you kindly!