Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[Solved] Disabling Ajax forms or changing their positions?
DirtyDog
✭✭
I have a content site with ads that I am integrating Vanilla with. Unfortunately many of the Ajax layer forms end up partly under Flash ads making them unusable. Flash ads are even pretty common in Adsense these days so these layer forms aren't a good fit for an ad-supported site. So first question is can I turn off the Ajax forms and just have each form on its own page? If not can I change the position of the layer forums so that they are not overlapping the ad space?
0
Best Answer
-
sahotataran ✭✭✭in CSS every property declaration should be once like you have
top:200px
!important andtop:0
- top property is declared twice.
you should removetop:0
There was an error rendering this rich post.
0
Answers
in your CSS just define
div.Popup { top:200px !important; }
!important to override everything
Change the 200px to the top positioning you want. also you can specify or anything you like. do not forget to add !important
There was an error rendering this rich post.
div.Popup {
top:200px !important;
position: absolute;
width: 100%;
top: 0;
left: 0;
z-index: 5000;
text-align: center;
}
Where I added your line at the top. I do not see a change in the popup position. Do I need to alter or remove another line there?
top:200px
!important andtop:0
- top property is declared twice.you should remove
top:0
There was an error rendering this rich post.
There was an error rendering this rich post.