X10 ad help

AgX007

New Member
Messages
8
Reaction score
0
Points
0
Site:agx007.exofire.net
Plan:advanced ad enhanced.
I placed the ad for X10 hosting at the bottom and the colour of the ad is blue and i want to make it come in a different color.Is it possible to do this?:nuts:
Ad code
Code:
 <script type="text/javascript" src="http://x10hosting.com/adserve.js?advanced"></script>
 
Last edited:

Russ

<b>Retired *****</b>
Messages
3,168
Reaction score
2
Points
38
At this time, it's not. Maybe in the future we'll support the changing of the main ad scheme.
 

AgX007

New Member
Messages
8
Reaction score
0
Points
0
So there isnt any way out?
The problem is it is not so visible on a black backgound
 

orthiac

New Member
Messages
30
Reaction score
0
Points
0
one way to change it would be to create a ID entry in the css then assign the ID to the <p>.
so the css entry you would add might be like:
Code:
#xAD a:link, #xAD a:visited {
	color: #FFFF00;
}
#xAD a:active, #xAD a:hover{
	color: #00FF00;
}

then you just add the ID to the html code:
HTML:
<p align="center" id="xAD"> 
  <script type="text/javascript" src="http://x10hosting.com/adserve.js?advanced"></script>
</p>

change the colors or separate the classes to your taste.
(btw: you may want to move that up on the page a little)
 
Last edited:
Top