Right. Firefox is being strange.
Here's two screenshots of the exact same website. Google Chrome, Safari, Opera, Safari for iPhone, Internet Explorer, the list goes on, all display the source code fine. But for some reason when it gets to Firefox, it won't stand it.
Chrome: http://bb.xieke.com/files/screenshotchrome.png
Firefox: http://bb.xieke.com/files/screenshotfirefox.png
I've fixed the sidebar issues, but the Breadcrumbs bar is still broken. I've tried absolutely everything. This is the code for the bar & '?' logo:
And the class Warrior;PHP Code:<center>
<div style="width: 920px; min-width: 970px; height: 19px;" align="center">
<div style="float: right; padding-top: 4px;">
<a href="/help/">
<img src="http://127.0.0.1/help.png" border="0" />
</a>
</div><div align="left" style="vertical-align: top;">
<table cellspacing='0' cellpadding='0'><tr><td style="padding-top: 9px; margin-left: 9px;" valign="bottom">
<?php
function CPbreadcrumbs() {
$CPtheFullUrl = $_SERVER["REQUEST_URI"];
$CPurlArray=explode("/",$CPtheFullUrl);
echo '<a href="/">Home</a>';
while (list($CPj,$CPtext) = each($CPurlArray)) {
$CPdir='';
if ($CPj > 1) {
$CPi=1;
while ($CPi < $CPj) {
$CPdir .= '/' . $CPurlArray[$CPi];
$CPtext = ucwords($CPurlArray[$CPi]);
$CPi++;
}
if($CPj < count($CPurlArray)-1) echo '</td><td class="warrior" style="background-image: url(\'http://127.0.0.1/arrow.png\')" width="29px" height="41px"></td><td> <a href="'.$CPdir.'">' . str_replace(" ", " ", $CPtext) . '</a> ';
}
}
echo '</td><td class="warrior" style="background-image: url(\'http://127.0.0.1/arrow.png\')" width="29px" height="41px"></td><td> '; echo wp_title('');}
CPbreadcrumbs();
?></td></tr></table></div>
Code:.warrior{ background-repeat: none; background-position: top center; padding-top: -6px; }
Please, I need this sorted. I promised readers it would be pushed out on Christmas Eve, I can't let them down.
Thanks so much in advance, Boonzeet.




Reply With Quote




