Hey everybody System_Programmer here. In this post I will tell you how to get rid of those anoying ads at the top of you freewebs.com site without upgrading.
steps:
1. First of all you need to go to you CSS Template Editor.
2. Scroll down a little (It not to far down since its at the top of the screen) and find the part that says:
/*
* This can be used to decorate around any advertisements that appear on the page (non-premium users only)
* It is STRICTLY forbidden to modify this code as to obstruct the view of the advertisement
*/
.fw-advertisement,
#fw-advertisement {
margin:0 auto;
padding-bottom: 0px;
width:10px;
text-align: left;
}
Mine looks a little different because i did more changes but basicaly look for the part that in between the /* and the */
3.
a. copy and pase this in its place:
/*
* This can be used to decorate around any advertisements that appear on the page (non-premium users only)
* It is STRICTLY forbidden to modify this code as to obstruct the view of the advertisement
*/
.fw-advertisement,
#fw-advertisement {
margin:0 auto;
padding-bottom: 0px;
width:10px;
text-align: left;
overflow:hidden;
display:none;
}
If you noticed I added to more commands to this section the 'overflow:hidden;' and the 'display:none;' these both help to hide the ads so there not really gone but
instead hiden.
b.copy and pase this in its place:
/*
* This can be used to decorate around any advertisements that appear on the page (non-premium users only)
* It is STRICTLY forbidden to modify this code as to obstruct the view of the advertisement
*/
.fw-advertisement,
#fw-advertisement {
margin:0 auto;
padding-bottom: 0px;
width:10px;
hight:10px;
text-align: left;
overflow:hidden;
}
If you noticed I added to more commands to this section the
'overflow:hidden;' and the 'hight:10px;' these both help to minimize the
ads so there not really gone but
instead small. With this way you do not go against the warning before this section but still minimize the ad.
Have fun now with you now ad free, free website.
-The_System_Programmer
