Remove PHPGrid default message -
i using free version of php grid - lite. have integrated , tool shows reports required.
the problem shows default text
"you using phpgrid lite. please consider upgrading phpgrid full version have great features including edit, master detail, , grouping, composite key, file upload, , premium themes!"
is there way can disable ?
have attached sample image of it. report view
thank you.
the div holds text belongs class named
'pg_notify'
therefore writing css class follows remove (make invisible) text.
.pg_notify{ display: none; }
or use php change css of div containing text want remove.
<?php echo '<style type = "text/css"> .pg_notify{ display: none; } </style>'; ?>
Comments
Post a Comment