Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase font size of SQL query box

Tags:

phpmyadmin

The font-size of the textarea that accepts SQL queries on my phpMyAdmin installation is too small. One workaround I found is to increase the minimum font size in Chrome, but it's breaking the look of other websites.

How can the font size be increased?

like image 941
ankush981 Avatar asked Apr 02 '14 16:04

ankush981


1 Answers

I Had the same problem using phpMyAdmin with xampp.

to fix, go to

xampp > phpMyAdmin > themes > pmahomme > css

open the following file with your text editor

codemirror.css.php

and add the following line to the very bottom of the file

.CodeMirror pre {font-size:1.4em;}

Now save the file and that should do it!

(if phpMyAdmin is using a different theme to pmahomme then just add that line

of code to every codemirror.css.php file you can find!

like image 179
john riley Avatar answered Sep 28 '22 09:09

john riley