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.
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 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.
Easy question and one request
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!
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!
- Steve
- 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
borders easy , but will add borders in most common fields using bg1,bg2 css code
open styles/prosilver/theme/colours.css
find:
replace with:
you can also add it too .postbody also in colours.css, but dont looks so good.
replace #000000 to colour to suit your needs.
the rest offline online image i will look into.
open styles/prosilver/theme/colours.css
find:
Code: Select all
.bg1 { background-color: #ECF3F7; }
.bg2 { background-color: #e1ebf2; }
Code: Select all
.bg1 { background-color: #ECF3F7; border:solid 1px #000000; }
.bg2 { background-color: #e1ebf2; border:solid 1px #000000; }
Code: Select all
.postbody {
color: #333333;
border: solid 1px #000000;
padding: 5px;
}
the rest offline online image i will look into.
-
- BBCoder II
- Posts: 5
- Joined: 16 Apr 2010, 05:39
Re: Easy question and one request
Ah, such a simple adjustment, and everything looks so nice! Thank you kindly!