Easy question and one request

Support for PhpBB3. Post here to get help with any phpBB3 related issue here
There is no support here! Only Read Access!
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.
Else your topic may be ignored or locked!
Locked
Crystallas
BBCoder II
BBCoder II
Posts: 5
Joined: 16 Apr 2010, 05:39

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.
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 863
Joined: 05 Mar 2010, 01:10
BBCodes: 2000
Favourite BBCode: p**n tube
Favourite MOD: Non of Stokers

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.
Steve wrote: 14 Nov 2024, 16:45 It's happy bastard day!
Crystallas
BBCoder II
BBCoder II
Posts: 5
Joined: 16 Apr 2010, 05:39

Re: Easy question and one request

Post by Crystallas »

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