In this tutorial I will show you how to add a background image to the background of your posting textarea. IMO This will add more personality to your board and looks real professional if you use a watermark image.
SEE SCREEN SHOT BELOW
This is rather simple and straight forward:
OPEN:
styles/subsilver2/theme/stylesheet.css
FIND CODE:
- Code: Select all
textarea {
background-color: #FAFAFA;
color: #333333;
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.3em;
line-height: 1.4em;
font-weight: normal;
border: 1px solid #A9B8C2;
padding: 2px;
INLINE FIND:
- Code: Select all
background-color: #FAFAFA;
color: #333333;
REPLACE WITH:
- Code: Select all
background-image: url('./images/YOUR_BACKGROUND_IMAGE.gif');
background-repeat:no-repeat;
background-position:center;
Now upload your background image to:
styles/subsilver2/theme/images/
You should be all set after this:
For prosilver follow all instructions above but instead of opening subsilver/stylesheet.css DO THIS:
OPEN:
prosilver/styles/theme/forms.css
FIND CODE:
- Code: Select all
textarea {
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
width: 60%;
padding: 2px;
font-size: 1em;
line-height: 1.4em;
IN LINE FIND:
- Code: Select all
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
BEFORE ADD:
- Code: Select all
background-image: url('./images/YOUR_IMAGE.gif');
background-repeat:no-repeat;
background-position:center;
Now upload your image to styles/prosilver/theme/images









, thanks stitch626 !