Friday 3 July 2015

How to Apply Style to a Cakephp Debug Console

We have cakephp debug on or off option in core.php file, if debug is on then all errors and query will show at the bottom of the page. we can give it some different style or UI so that it will be more readable. we can apply css like below code
  1. .cake-sql-log {
  2. position:fixed;
  3. top:99%;
  4. z-index:10;
  5. width:100%;
  6. background-color:black;
  7. color:white;
  8. border-collapse:collapse;
Read full blog at: How to Apply Style to a Cakephp Debug Console


If you have any query related to PHP language then ask at our PHP Developer Forum, which is an excellent place to post and look for PHP Programming Questions and Answers
 

No comments:

Post a Comment