ok, I have the following code: <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_357.php'); echo $ad_network; ?> PHP: and I want to make it white. I'm coding retarded... please help me.
Try adding the following code in the head element of the page where you want to include the links. This will make all text and links white. <style type="text/css"> div.co-op, div.co-op a { color: #fff; } </style> HTML: Wrap the co-op section inside a div with the class name set to "co-op", like this: <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_357.php'); $ad_network = '<div class="co-op">' . $ad_network . '</div>'; echo $ad_network; ?> PHP: That should do the trick...