woody
02-24-2006, 12:04 PM
I've been looking into other revenue sources for my site, thus far the subscriptions, banner advertisors, and google ads are all successful, but working with the inline text advertising is the only route I haven't experimented with as of yet.
I presently run 3.5.4 vB, php 4.4.2, MySQL 4.1.18, and all the other "current" updates on a dual server setup. Speed is great.
I'm trying to allow those with "member" status on the forum to NOT see the IntelliTXT linking, and to also have those members not have speed issues. Presently, there seems to be some javascript issue between the link generation and vB internal scripts.
Has anyone found a successful method of implementing IntelliTXT -type inline advertising on a 3.5.x version forum?
my code is as follows:
<if condition="is_member_of($bbuserinfo, 1,2,3,4,6,29)">
<!-- start IntelliTXT Tooltip style sheet -->
<style type="text/css">
.iTt{
FONT-FAMILY: Verdana, Arial, Helvetica;
FONT-SIZE: 11px;
FONT-STYLE: normal;
FONT-WEIGHT: normal;
COLOR: black;
BACKGROUND-COLOR: lightyellow;
BORDER: black 1px solid;
PADDING: 2px;
}
</style>
<!-- end IntelliTXT style sheet -->
<!-- start IntelliTXT script section -->
<script type="text/javascript"
src="http://ih8mud.us.intellitxt.com/intellitxt/front.asp?ipid=3373"></script>
<!-- end IntelliTXT script section -->
</if>
I presently run 3.5.4 vB, php 4.4.2, MySQL 4.1.18, and all the other "current" updates on a dual server setup. Speed is great.
I'm trying to allow those with "member" status on the forum to NOT see the IntelliTXT linking, and to also have those members not have speed issues. Presently, there seems to be some javascript issue between the link generation and vB internal scripts.
Has anyone found a successful method of implementing IntelliTXT -type inline advertising on a 3.5.x version forum?
my code is as follows:
<if condition="is_member_of($bbuserinfo, 1,2,3,4,6,29)">
<!-- start IntelliTXT Tooltip style sheet -->
<style type="text/css">
.iTt{
FONT-FAMILY: Verdana, Arial, Helvetica;
FONT-SIZE: 11px;
FONT-STYLE: normal;
FONT-WEIGHT: normal;
COLOR: black;
BACKGROUND-COLOR: lightyellow;
BORDER: black 1px solid;
PADDING: 2px;
}
</style>
<!-- end IntelliTXT style sheet -->
<!-- start IntelliTXT script section -->
<script type="text/javascript"
src="http://ih8mud.us.intellitxt.com/intellitxt/front.asp?ipid=3373"></script>
<!-- end IntelliTXT script section -->
</if>

