Quote:
Originally Posted by neil74
For some reason I am not able to set a minus value for the margin top, it gives me an error that the replacement is too long. Also the font is huge in the footer despite me trying values of 20, 10 and even 5.
I got the patch working via terminal though!
|
When you set the negative margin, the - replaces a space. As in GeoffR's example:
Code:
replace_string = DBDC80, `margin-top: 0px;`, `margin-top:-4px;`
if you used:
Code:
replace_string = DBDC80, `margin-top: 0px;`, `margin-top: -4px;`
you will get the string too long error.