FE Edit: Hide black border


/ Published in: TYPO3
Save to your folder(s)

Da hilft nur: Quick&Dirty Code-Änderung

Öffne die Datei /typo3/sysext/feedit/class.tx_feedit_editpanel.php und suche folgenden Abschnitt:


Copy this code and paste it in your HTML
  1. original:
  2. $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 />' : '';
  3.  
  4. new:
  5. $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 />' : '';

URL: http://blog.exites.de/2011/04/typo3-adminpanel-gibt-unschone-schwarze-tabellen-aus/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.