Page 1 of 1

Easy question and one request

Posted: 16 Apr 2010, 06:04
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

Posted: 16 Apr 2010, 10:22
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

Posted: 16 Apr 2010, 17:22
by Crystallas
Ah, such a simple adjustment, and everything looks so nice! Thank you kindly!