How to change the color of the text ad? :)

Status
Not open for further replies.

liamar

New Member
Messages
4
Reaction score
0
Points
0
Hello,

Is it possible to change the color of the ad?

The background of my website is gray, and to go with the color scheme I'd like to change it to white. :) Is that possible?
 

Derek

Community Support Force
Community Support
Messages
12,882
Reaction score
186
Points
63
I don't think it is possible to change the ad color to fit your needings. Sorry for the inconvenience.
 

liamar

New Member
Messages
4
Reaction score
0
Points
0
Okay, thank you. :) That was fast!

Last questions, are there any rules as to how and where the text link should be positioned?

Also, I'm planning to make pop ups that contain only a single image when clicked. Do I have to put the text ad there as well?
 

Derek

Community Support Force
Community Support
Messages
12,882
Reaction score
186
Points
63
If your talking about advanced ads you can change the color but not the text. Meaning you can edit the text so it is visible that fits your site needs. Ads must be on every single page.
 

Derek

Community Support Force
Community Support
Messages
12,882
Reaction score
186
Points
63
Wrap color and font tags around the ad code.
 

liamar

New Member
Messages
4
Reaction score
0
Points
0
You are talking to an html novice. :( Erm.

this is the code I'm using:

<div id="ad" style="position:absolute; top:300px; font-family:arial; color:#FFFFFF;">

<font=lucida grande><font color="#ffffff">
<script type="text/javascript" src="http://x10hosting.com/adserve.js?advanced"></script></font></font></div>

Help!
 

t2t2t

New Member
Messages
690
Reaction score
0
Points
0
Code:
<div id="ad" style="position:absolute; top:300px; font-family:arial; color:#FFFFFF;"><script type="text/javascript" src="http://x10hosting.com/adserve.js?advanced"></script></div>

<style type="text/css">
<!--
#ad a { color: white; }
-->
</style>


This should work
 
Last edited by a moderator:

Swiblet

New Member
Messages
1,114
Reaction score
0
Points
0
Whenever you can't change something with HTML, you should use a CSS tag. Also, you can make a whole seperate page with just that CSS code on it, title it "blah.css", and refer to "blah.css" in the HTML. That method reduces the loading time for your pages whenever the ads pop up, and if you refer EVERY ad on the page to that, it keeps the CSS loaded before the html loads, reducing the time it takes to load that code.

What the hell did I just say? o_O *tries to understand and gives up*

~~Ben
 

crazyman

New Member
Messages
1
Reaction score
0
Points
0
to change the text color insert thin html code:

Code:
<body bgcolor="#000015" text="#000020" link="#000050" vlink="#7a7777" alink="#8f8e8d">


The bgcolor is the background color text is the text color link is a link you havent selected yet vlink is links you visited and alink is what color it will be when you click it. also vist this web site to get color codes:

<a href="http://www.webmonkey.com/reference/color_codes/">click me to goto color code website</a>

 
Status
Not open for further replies.
Top