I just added another site, but it's my first non-forum site. How can I change the font and color of the ads? It's a php-based site. Text links only.
So where in this file? <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_357.php'); echo $ad_network; ?> Code (markup):
There are a lot of different ways you could do it. For example: <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_357.php'); $ad_network = '<div style="whatever">' . $ad_network . '</div>'; echo $ad_network; ?> PHP:
Man, I feel like a tard... I guess I really gotta take some time and learn to code myself... if I just want the font to be white, what do I put in the "whatever" spot?
I tried that, but it didn't work. <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_357.php'); $ad_network = '<div style="color: #ffffff">' . $ad_network . '</div>'; echo $ad_network; ?> Code (markup):
Probably will need to use other CSS attributes to set link colors. I forgot for a second that most of the text is anchor text.
Post in the CSS forum, because how to change the anchor text color with CSS is really a CSS question. And I don't know off the top of my head (I'm not a web designer).