Peter77 phpBB SEO Team


Joined: 10 May 2006 Posts: 512 Location: Michigan
|
Posted: Sat Nov 10, 2007 6:04 am Post subject: [add on] add color to Google bot ( Simple show bots ) |
|
|
I added a little color to the Google bot for the Simple show bot MOD. Thought maybe it would be useful for others as well.
You should have the simple show bots MOD already installed.
Screenshot:
Note: For the blue color, I used "Royal Blue" ( #4169e1 )
Please back up your files before making any changes.
In page_header.php
| Code: |
---- [ FIND ] ----
// www.phpBB-SEO.com SEO TOOLKIT BEGIN - BOTS
$bots_online = array();
$online_botlist = '';
$bot_count = 0;
$bot_style = array( 'Google' => 'style="color:#2159D6;font-weight:bold"', 'MSN' => 'style="color:#52BA18;font-weight:bold"', 'Yahoo!' => 'style="color:#FF0031;font-weight:bold"' );
$bot_to_style = array( 'Google', 'Yahoo!', 'Yahoo!' , 'Yahoo!', 'MSN', 'MSN', 'MSN', 'MSN');
$bot_ips = array( '66.249', '74.6', '66.196', '66.142', '64.4', '65.5', '131.107', '207.46' );
// www.phpBB-SEO.com SEO TOOLKIT END - BOTS
---- [ REPLACE WITH ] ----
// www.phpBB-SEO.com SEO TOOLKIT BEGIN - BOTS
$bots_online = array();
$online_botlist = '';
$bot_count = 0;
$bot_style = array( 'Google' => 'style="color:#2159D6;font-weight:bold"', 'MSN' => 'style="color:#52BA18;font-weight:bold"', 'Yahoo!' => 'style="color:#FF0031;font-weight:bold"' );
$bot_to_style = array( '<span style="color:#4169e1;font-weight:bold">
G</span><span style="color:#ff0000;font-weight:bold">o</span><span style="color:#ffa500;font-weight:bold">o</span><span style="color:#4169e1;font-weight:bold">g</span><span style="color:#008000;font-weight:bold">l</span><span style="color:#ff0000;font-weight:bold">e</span>', 'Yahoo!', 'Yahoo!' , 'Yahoo!', '<span style="color:#00DD45;">
MSN', 'MSN', 'MSN', 'MSN');
$bot_ips = array( '66.249', '74.6', '66.196', '66.142', '64.4', '65.5', '131.107', '207.46' );
// www.phpBB-SEO.com SEO TOOLKIT END - BOTS |
|
|
|