PDA

View Full Version : Question about Queries?


Tsuntsun
11-03-2011, 11:42 AM
Hello! I have a question concerning queries (the little white text on the bottom of your page?). Is there any way to change the color of it so it doesn't stand out so much on a dark background? :hmmm: Or is there any way to hide it together? I'm not that good at coding so I tried to find it but am not sure where it is.

And example of what I'm talking about can be found at my site: http://pockettu.site11.com/index.php

Any help on the matter would be greatly appreciated! Thank you!

Inf3rnal
11-03-2011, 01:31 PM
Open inc/functions.php and around line 1684 (or so)

Find:
$template .= "<div style='position: fixed; bottom: 0; left: 0; color: white; font-size: 10px; width: 380px; '>A total of {$GLOBALS['numberofqueries']} queries were used in this page. They were: {$GLOBALS['queries']}</div>";

Replace:
color: white; with what ever you want.

To remove it all together just erase the whole div so it looks like this:
$template .= "";

Tsuntsun
11-03-2011, 01:57 PM
Thank you so much! :meow: