Gå til mappen phpmydamin, som ville være i wamp\apps
normalt.
Og hvis du for eksempel vil ændre størrelsen på inline editor i phpmyadmin, gå til:
C:\wamp\apps\phpmyadmin4.1.14\themes\pmahomme\css\codemirror.css.php
Åbn filen codemirror.css.php
Find denne blok i den fil.
#inline_editor_outer .CodeMirror {
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] *0.4; ?>em;
}
og ændre den 0.4
til et større tal som 2.0
i mit tilfælde
#inline_editor_outer .CodeMirror {
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] *2.0; ?>em;
}
Og du er god til at gå.