Skip to content

Instantly share code, notes, and snippets.

View alsodenn's full-sized avatar

Lukas Hausammann alsodenn

View GitHub Profile
@alsodenn
alsodenn / typo3 feedit blackborder
Created August 17, 2012 14:42
TYPO3 FE Edit: Hide black border
http://blog.exites.de/2011/04/typo3-adminpanel-gibt-unschone-schwarze-tabellen-aus/
Öffne die Datei /typo3/sysext/feedit/class.txfeediteditpanel.php und suche folgenden Abschnitt:
original:
$blackLine = $conf['line'] ? '<img src="clear.gif" width="1" height="' . intval($conf['line']) . '" alt="" title="" /><br /><table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="black" style="border: 0px;" summary=""><tr style="border: 0px;"><td style="border: 0px;"><img src="clear.gif" width="1" height="1" alt="" title="" /></td></tr></table><br />' : '';
new:
$blackLine = $conf['line'] ? '<table border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color: #abbbb4; border: 0px; height: 1px;" summary=""><tr style="border: 0px;"><td style="border: 0px;"></td></tr></table><br />' : '';