vBulletin Search Engine Optimization
This is a discussion on Trivial Request within the Feature Requests forums, part of the vBSEO Google/Yahoo Sitemap category; On the Bot Report, can all the number fields be Right Justified?...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Social Groups | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| ||||
| ||||
| Trivial Request
On the Bot Report, can all the number fields be Right Justified?
__________________ Keith Cohen / Crawlability Inc. Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#2
| ||||
| ||||
| Re: Trivial Request
For those that want to do it, all the changes are in index.php: Code: @@ -274,30 +274,30 @@
$stat = vbseo_get_datlog(VBSEO_DAT_FOLDER_BOT.$ll);
$datepart = str_replace('.log', '', $ll);
?>
<tr class="<?=$ln%2?'altfirst':'altsecond'?>">
<td><?=$ln?></td>
<td><?=substr($datepart,0,4).'-'.substr($datepart,4,2).'-'.substr($datepart,6)?></td>
- <td><?=vbseo_val_show($stat['all']['total'])?></td>
- <td><?=vbseo_val_show($stat['all']['forumdisplay.php'])?></td>
- <td><?=vbseo_val_show($stat['all']['showthread.php'])?></td>
- <td><?=vbseo_val_show($stat['all']['showpost.php'])?></td>
- <td><?=vbseo_val_show($stat['all']['member.php'])?></td>
- <td><?=vbseo_val_show($stat['all']['total'] - (
+ <td align="right"><?=vbseo_val_show($stat['all']['total'])?></td>
+ <td align="right"><?=vbseo_val_show($stat['all']['forumdisplay.php'])?></td>
+ <td align="right"><?=vbseo_val_show($stat['all']['showthread.php'])?></td>
+ <td align="right"><?=vbseo_val_show($stat['all']['showpost.php'])?></td>
+ <td align="right"><?=vbseo_val_show($stat['all']['member.php'])?></td>
+ <td align="right"><?=vbseo_val_show($stat['all']['total'] - (
$stat['all']['forumdisplay.php']+$stat['all']['showthread.php']+$stat['all']['showpost.php']+$stat['all']['member.php']
));?></td>
<?
$mbots_tot = 0;
foreach($main_bots_list as $botname)
{
$bot_hits = $stat[$botname]['total']+0;
$mbots_tot += $bot_hits;
- echo "<td>".vbseo_val_show($bot_hits)."</td>\n";
+ echo "<td align=\"right\">".vbseo_val_show($bot_hits)."</td>\n";
}
?>
- <td><?=vbseo_val_show($stat['all']['total'] - $mbots_tot)?></td>
+ <td align="right"><?=vbseo_val_show($stat['all']['total'] - $mbots_tot)?></td>
<td>
<a href="index.php?hitdetails=<?=$ll?>">View details</a>
</td>
</tr>
<?
$pind = $stat['urls_no_tot'];
@@ -331,15 +331,15 @@
<?
$ln = 0;
foreach($pages as $pg=>$cnt)
{
?>
<tr <?=$pg=='total' ? ' bgcolor="#ccccff"' : 'class="'.($ln%2?'altfirst':'altsecond').'"';?>>
- <td bgcolor="#ccccff"><?=$pg?></td>
+ <td bgcolor="#ccccff" align="right"><?=$pg?></td>
<? foreach($bots as $bot) echo "
- <td".($bot=='all' ? ' style="font-weight:bold"':'').">".vbseo_val_show($stat[$bot][$pg])."</td>";
+ <td".($bot=='all' ? ' style="font-weight:bold"':'').' align="right">'.vbseo_val_show($stat[$bot][$pg])."</td>";
?>
</tr>
<?
$pind = $stat['urls_no_tot'];
}
?>
__________________ Keith Cohen / Crawlability Inc. Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum Last edited by Keith Cohen; 12-11-2005 at 05:56 PM. |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| GoogleGuy Says Request Re-Inclusion | Joe Ward | SEO Buzz | 0 | 04-28-2006 05:01 PM |