- Photoshop Image Editing Basics For Bloggers
- 25 “Vertical” Navigation Menus For Blogger – CSS-H...
- How To Inter-link Pages Smartly To Flow The PR Jui...
- Add a Customized Three Column Footer Widget In Blo...
- Update:- How Childish Of EntreCard! Is This What T...
- Color Code Generator & Color Wheel For Bloggers
- How To Drive Traffic To Your Blogs From Facebook?
- Editing The Song or Track Title and Artist Name In...
- Top 10 Widely Used Image Hover Effects In Blogosph...
- Show / Display Skype Emoticons In Blogger Comment ...
- AIRTEL FREE SMS TRICKS 2010
- Show Off Follower Counts For RSS, Twitter and Face
- Surprisingly MBT Blessed With Page-Rank 3.0!!
- Facebook and YouTube Banned in Pakistan For Promot
- Creating Customized HTML Text Area Boxes
- Meta Tag Generator Tool For Blogger
- HTML Form For Blogger
- Google Crawls This Blog Every Minute!
- Blogger Post Editor Keyboard Shortcuts
- Windows Live Writer Keyboard Shortcuts
- Surprisingly MBT Blog Finally added to DMOZ Direct
- 5 Easy Ways to Make Money from Your Blog
- How To Use Special Keyboard Characters In Comments
- All Brilliant Minds Invited For Guest Posting At
- Random Ad Banners Widget For Blogger
- Nokia forum experts bashing clients
- Samsung Galaxy S accesories
- Symbian 3 impressions
- Samsung Galaxy 3 and Galaxy Apollo : The constella...
- Samsung Wave wins European Social Media Phone 2010
- Samsung Galaxy S wins EISA smartphone 2010-2011
- Samsung Galaxy S first impression
- SPB Shell review
- Samsung Wave first impressions
- Samsung Bada impressions
- Nokia 5230, owner's review
- Samsung I5500 Galaxy 5 first glance
- Noka 5230 overclocked to 800MHz
- Bada developer challenge results
- Nokia World reveals three more S^3 smartphones
- Nokia forum experts bashing clients - continued(2)...
- Samsung Wave the best rated phone on GSMArena
- Nokia forum experts bashing clients - continued
- How to get portrait Mini QWERTY on Nokia 5230
- Nokia plans progressive updates from S^3 to S^4
- SPB Mobile Shell, in depth review
- Samsung S8530 Wave II announced
- SPB Weather review
- Multi Column Footer Widget For Blogger –The Hot!
- Add Customized PayPal Donate Button Below Blogger
- How to Create a Table Of Contents Page For Blogger
- Add Drop Shadows to Images and Expand them
- Add Facebook Like Button, Retweet, Stumble and Digest
- Create Slideshow In Blogger With Navigation - V2
- How To Create Stunning Image Slideshows In Blogger
- Nokia updates Ovi store: much appreciated
- How to use Nokia N8 on holidays
- Symbian^3 in-depth review
- Phones stolen - going back to Nokia 1680
- How To Write Search Engine Friendly Blog Post Titl...
- Samsung Ace S5830 - Is this the real iPhone killer...
- How to Show and Hide Widgets in Blogger?
- How To track Downloads On your Website?
- Dell Mobile Prices India
- INQ Mobile Prices India
- Micromax Mobile Prices India
- Spice Mobile Prices India
- Blackberry Mobile Prices India
- Motorola Mobile Prices India
- Samsung Mobile Prices India
- Sony Ericsson Mobile Prices India
- Nokia C7 hands on preview
- 3G Mobiles Phone Prices India
- Add WordPress Style Menu Tabs Widget To Blogger!
- Nokia completely ignores non-ass-kissing emails an...
- Earn $20 Dollars Plus 300 Free EntreCard Credits
- Is Directory Submission a Waste of Time?
- Nokia Facebook C7 contest results delayed - suspic...
- Hide Read More Link In Blogger Static Pages
- How to Customize Each Sidebar Header Differently?
- How To Use Google Fonts In Blogger? Part-1
- Create a Cute Subscription Form
- How to Customize Layout of Facebook Profile Page?
- How to link text and Image in Blogger posts?
Photoshop Image Editing Basics For Bloggers
Random Ad Banners Widget For Blogger
This widget is exactly similar to our previous 125 by 125 AD Banner Widget and in fact it is the most awaited one and have been requested several times by our readers. Just last night I succeeded in creating a simple Java script that uses Array of images and thus displays random images on Page refresh.
Lets have a demo of the widget before jumping to the tutorial. Note:- Refresh the page to see new Ad banners.
How To Add Random Ad Banner Widget To Your Blogs?
Simply follow these steps,
- Go To Blogger > Design > Page Elements
- Choose HTML/JavaScript Widget
- And Paste the following code inside it,
<div align="center">
<table border="0" cellpadding="2" cellspacing="6" width="265" bgcolor="#ffffff">
<tbody><tr>
<td><center>
<!-- BANNER#1 -->
<script language="JavaScript">
images = new Array(2);
images[0] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-1' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
images[1] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-2' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>
</center></td>
<td><center>
<!-- BANNER#2 -->
<script language="JavaScript">
images = new Array(2);
images[0] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-1' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
images[1] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-2' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>
</center></td>
</tr>
<tr>
<td><center>
<!-- BANNER#3 -->
<script language="JavaScript">
images = new Array(2);
images[0] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-1' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
images[1] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-2' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>
</center></td>
<td><center>
<!-- BANNER#4 -->
<script language="JavaScript">
images = new Array(2);
images[0] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-1' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
images[1] = "<a href = 'URL OF ADVERTISER' rel='nofollow' ><img src='URL OF BANNER’S IMAGE-2' border='0' height='125' width='125' alt='AD DESCRIPTION'></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>
</td></center>
</tr>
</tbody></table>
<table border="0" bordercolor="#0084ce" cellpadding="2" cellspacing="6" width="265" bgcolor="#ffffff">
<tbody>
<tr>
<td><center><a href="URL OF ADVERTISER" rel="nofollow"><img width="265" height="37" border="0" alt="Advertise Now!" src="file:///C:/Documents%20and%20Settings/Mohammad/Desktop/ADVERTISE-HERE.gif" /></a></center></td>
</tr>
</tbody></table>
</div>
MAKE THE FOLLOWING CHANGES:-
1. Replace URL OF ADVERTISER with the website link of the advertiser
2. Replace URL OF BANNER’S IMAGE-1 and URL OF BANNER’S IMAGE-2 with the Image links of the Advertiser’s banners
3. Replace AD DESCRIPTION with some information related to the Ad. The description appears on mouse hover.
4. If you want to increase the distance between the ad blocks then edit width="265"
Now after making the necessary customization view your blog to see a beautiful 125 by 125 Banner widget that will change Banners on every different page.
Download Animated AD Banners
To ad spice to the widget may be you will prefer some of our previously designed animated banners -> Animated 125 by 125 AD Banners
Do let me know how did you find this new and useful widget. Take care! :D
Subscribe to:
Posts (Atom)
Related post
- uc browser 9.5 | uc browser 9.5 free download for mobile | uc browser for android
- PicsArt - Photo Studio 3.14.0 | Download PicsArt 3.14.0 Java Mobile App Free
- Top Link Audit Tools for offsite SEO Audit
- Mobo Market 2.0 | Download Mobo Market 2.0 For Mobile Free | android app free download
- Facebook 3.4.1 | Download Facebook 3.4.1 Mobile App Free | Facebook 3.4.1 Software free Download
- My Boy! Free - GBA Emulator 1.5.21 Apk Free Download
- Play KBC 7 : HINDI | Download Play KBC 7 : HINDI Game For Free
- The Sims™ 3 1.5.21 Apk Free Download
- Facebook 3.3.1 | Download Facebook 3.3.1 Mobile App Free | Facebook 3.3.1 Software free Download
- Opera mini 8.5 | Download opera mini 8.5 | Opera mini for Android