Quote:
Originally Posted by RbnJrg
1. Locate the place where is the "p3" class. You'll find something like:
Code:
.p3 {
... some declarations
... " "
}
2. Inside the p3 class, where you read the property "text-indent: any number;" change it by "text-indent: 0;". If you can't find that property, then write it yourself: "text-indent: 0;"
|
In the latter case, make sure that the property *before* your new one ends with a semicolon (;), or add your new property as the first one. (This is basic CSS syntax.)