100-300 credits: [How-To] Recoler Templates

XGI Admin

New Member
Messages
207
Reaction score
1
Points
0
I have a template (style as called on phpBB) and was wondering how to change the colors of cerntain areas of my style. i'll give up to 100 credits to anyone who can help me select the correct codes to change.

>> I already know html colors.
>> I already know how to edit the template.

I will offer 300 credits to anyone who can change the template for me.
 

Zenax

Active Member
Messages
1,377
Reaction score
4
Points
38
its simple. All you have to do is to look at the source coude of the template and match the css titles given in the html or php docs or whatever they are, to what is listed in the css file.

Example:

Code:
<div class="style1">
Blah
</div>

matches this in the CSS document

Code:
.style1 {
background-color: #FFFFFF;
}

Post back if you want further assitance
 
Last edited:
Top