Monie, the stylesheet is relative the the site.
e.g.
<link href="style.
css">
That would refer to a file on your site that you didn't have now that you've
stolen someone's page ha.
So you have to replace the link from relative to absolute.
You'd do it like so in
php:
- PHP: Select all
//assume $grab holds a string of the page we got
$grab = str_replace('style.css', 'http://www.sitename.com/style.css', $grab);