Quote:
Originally Posted by raugusto
I have an issue.
I have installed this (marked as installed also) but I dont have any ads showing.
When looking for the source code I find the css attributes, but no ads showing.
This is workign on default tempalte tho.
PLease let us know, what modifications should we do on our custom templates/skins to get this working.
Regards
|
Quote:
Originally Posted by icekola
Having the same issue. It's showing on the default theme but not on others.
|
These are template changes.
Template printthread
Find '</head>' , before add:
Code:
<style type="text/css">
/* Angular Advertisement */
<if condition="!is_browser('ie', '6')">
.angular_advertisement {
position: fixed;
}
.angadver_left {
left: 0;
}
.angadver_right {
right: 0;
}
.angadver_top {
top: 0;
}
.angadver_bottom {
bottom: 0;
}
<else />.angular_advertisement {
position: absolute;
}
.angadver_left {
left: 0;
}
.angadver_right {
right: 0;
}
.angadver_top {
top: expression(
(document.documentElement.scrollTop || document.body.scrollTop) + (this.offsetHeight - this.offsetHeight)
);
}
.angadver_bottom {
top: expression(
((document.documentElement.scrollTop || document.body.scrollTop) + (this.offsetHeight - this.offsetHeight))+((document.documentElement.clientHeight || document.body.clientHeight) - this.offsetHeight)
);
}
</if>
</style>
Find '<body class="page">' , after add:
Template headinclude
Code:
Find '$style[css]' , after add the same code that we extra it to 'printthread' template on couple already level.
Template SHOWTHREAD_SHOWPOST and WHOPOSTED
Find '</body>' , before add:
Template header
Find '<!-- logo -->' , after add:
Good Luck