Java Java script to stop advertisment pop-ups

  • Thread starter Thread starter KLscilevothma
  • Start date Start date
  • Tags Tags
    Java
AI Thread Summary
Building a website on a free hosting provider like Angelfire often leads to unavoidable advertisement pop-ups. Users are seeking solutions to eliminate these pop-ups, including potential code snippets to overlay content and obscure ads. One suggested method involves using a high z-index HTML layer to cover the ads, though this may not be a foolproof solution. Additionally, recommendations for alternative free hosting services include Fortunecity, which offers a paid option at $5 per month to remove pop-ups, provide more bandwidth, and grant FTP access. Overall, while Angelfire is appreciated for its user-friendliness, users are encouraged to consider paid options for a better experience without advertisements.
KLscilevothma
Messages
315
Reaction score
0
I want to build a website and signed up in a free web-hosting provider, Angelfire. Because it is free of charge, advertisment pop-ups can't be avoided. Is there any code which I can paste in my website so as to stop the pop-ups? (I don't mind if I need to paste the code in every page of my homepage) Or do you have any web hosting service to recommend which is free, good and without the pop-up problem?
 
Technology news on Phys.org
any ideeas? I'm interested too...
 
Don't know about popups but most the time you can wipe the page clean by putting all of your HTML code on layer, use a high z-order e.g.

<div id="main" style="position:absolute; width:100%; height:300px; z-index:999; left: 0px; top: 0px;">
<table width="100%" height="100%">
<tr>
<td> My Content </td>
</tr>
</table>
</div>

I use fortunecity.com
 
Last edited:
It's easy,

pay'em $5.00 a month and you won't have any popups, you'll get more bandwidth plus you get FTP access and can hotlink your files. I highly reccomend Angelfire to any small website builder.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top