|
I have spent many hours reading how to implement Google Adsense in Dragonfly CPGNuke. To my disbelief, the information is limited. With that being said, Google adsense is a great way for webmasters to earn income while creating web pages. What better way for Dragonfly CPG Nuke to be used.
This article covers the basic concepts I use for implementing google adsense code into my Dragonfly CPGNUKE news articles. I do not consider myself a programmer and would consider this process very simple.
For starters, you must create a google adsense account with Google Adsense.
Once you have registered and created a google adsense account, you must decide where to place your ads.
There is plenty of information available on covering google adsense placement and this will not be one of them. The article covers how to use google ads in your Dragonfly CPG Nuke site. With that being said, lets take a look at a few options.
There is a simple piece of script available that can be used to place the google adsense code where you want within your news on your cpg nuke website. In fact, the code is so simple to use, someone should make a BBcode button to accomplish this tack. The banner you see to the left is a 200x200 square banner. This code was simply created by inserting your google adsense code in the middle of my script. Notice how the text from this news article just wraps around the google ad? You can make this ad appear on the left side of the page, the right side of the page, and even in the center of the page. We could even put text in the middle of two separate ads if we wants. Remember, Google Adsense has a rule that you can only display three ads per page. Don't overdue it!
The Dragonfly CPGNuke code that I use is considered a floating format. Here is the code.
| Code:: |
<div style=”display:block;float:center;margin: 5px 5px 5px 5px;”> INSERT YOUR GOOGLE ADSENSE CODE HERE </div> | Pretty simple, huh? Notice where the text above says center? You can change this to right or even left. Here is an example of the code with right.
| Code:: |
<div style=”display:block;float:right;margin: 5px 5px 5px 5px;”> INSERT YOUR GOOGLE ADSENSE CODE HERE </div> |
Google Adsense Ad below
Notice the 468x60 banner ad above this text and below the text "Google Adsense Ad below". This ad was created by using the following code.
| Code:: |
<div style=”display:block;float:center;margin: 5px 5px 5px 5px;”>
INSERT YOUR GOOGLE GENERATED ADSENSE CODE HERE </div><p> |
The above code snippets should also work with you PHPNuke , Post Nuke, and Blog websites. Remember, this is how "I" implemented google adsense into Dragonfly CPGNuke. More articles to come.
|