Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Coding Forum Problems with your code? Let's hear about it.

Ezilon Directory   Perfect Money   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 11-19-2006, 04:35 AM   #1 (permalink)
Inactive
 
Join Date: 11-05-06
Posts: 29
iTrader: 0 / 0%
Latest Blog:
None

soultrader is liked by many
How Do I Add Image Next to Adsense?

I would like to place a small image to the left of this adsense code:



<script type="text/javascript"><!--
google_ad_client = "xxxxxxxx";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text";
//2006-11-16: Postbit
google_ad_channel = "7930041287";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>



Its a 468*60 text ad and I want the image directly to the left of it. How can I go about doing this? Thanks
soultrader is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 11-19-2006, 06:24 AM   #2 (permalink)
v7n Mentor
 
suzjor's Avatar
 
Join Date: 07-26-06
Location: Texas
Posts: 3,899
iTrader: 1 / 100%
suzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest order
I would create a table with 2 columns and in the left cell place your image and the right cell place your google javascript.
__________________
Looking for handmade artist vendors (the hip and trendy) for my new online consignment store. Contact me for details.
Indie Handmade Store | Custom Website Designs
suzjor is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 06:33 AM   #3 (permalink)
Inactive
 
jeet's Avatar
 
Join Date: 03-04-06
Posts: 181
iTrader: 0 / 0%
jeet is a jewel in the roughjeet is a jewel in the roughjeet is a jewel in the roughjeet is a jewel in the roughjeet is a jewel in the roughjeet is a jewel in the roughjeet is a jewel in the rough
Even I prefer tables, but you can also use 2 DIV tags instead. Also don't forget to separate the 2 with a visible border, or you may get your adsense account cancelled.
Bye
jeet is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 06:35 AM   #4 (permalink)
Inactive
 
Join Date: 11-05-06
Posts: 29
iTrader: 0 / 0%
Latest Blog:
None

soultrader is liked by many
Can you guys help me with the coding for the tables? Im a complete newbie to coding
soultrader is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 01:31 PM   #5 (permalink)
Inactive
 
ciwee's Avatar
 
Join Date: 09-24-06
Location: Brazil
Posts: 29
iTrader: 0 / 0%
Latest Blog:
None

ciwee is liked by many
Send a message via MSN to ciwee Send a message via Skype™ to ciwee
<table>
<tr>
<td>
Your image here
</td>
<td>
Your adsense code here
</td>
</tr>
</table>

To learn how to configure the table you will have to read this http://www.w3.org/TR/html4/struct/tables.html
ciwee is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 04:01 PM   #6 (permalink)
Inactive
 
Join Date: 11-05-06
Posts: 29
iTrader: 0 / 0%
Latest Blog:
None

soultrader is liked by many
Hi ciwee,

Thanks for the reply. I have one problem with the coding. The adsense appears fine but the image will only show the url path and not the actual image.

Here is the code I am using:

<table>
<tr>
<td>
http://www.traderslaboratory.com/Pic...treetretro.jpg
</td>
<td>
<script type="text/javascript"><!--
google_ad_client = "xxxxxxxx";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text";
//2006-11-19: Postbit
google_ad_channel = "7930041287";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td>
</tr>
</table>

How can I fix this to show the images? Thanks
soultrader is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 04:28 PM   #7 (permalink)
v7n Mentor
 
suzjor's Avatar
 
Join Date: 07-26-06
Location: Texas
Posts: 3,899
iTrader: 1 / 100%
suzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest order
try this:

Quote:
<table>
<tr>
<td>
<img src="http://www.traderslaboratory.com/Pictures/wallstreetretro.jpg" border="5">
</td>
<td>
<script type="text/javascript"><!--
google_ad_client = "xxxxxxxx";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text";
//2006-11-19: Postbit
google_ad_channel = "7930041287";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td>
</tr>
</table>
You can change the border size.
__________________
Looking for handmade artist vendors (the hip and trendy) for my new online consignment store. Contact me for details.
Indie Handmade Store | Custom Website Designs

Last edited by suzjor : 11-19-2006 at 04:30 PM. Reason: info about border
suzjor is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 04:49 PM   #8 (permalink)
Inactive
 
Join Date: 11-05-06
Posts: 29
iTrader: 0 / 0%
Latest Blog:
None

soultrader is liked by many
Hi suzjor,

There is a slight problem. The images will now appear after every post. The table itself looks fine though. Any tweek to this? Thank
soultrader is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 08:48 PM   #9 (permalink)
Inactive
 
ciwee's Avatar
 
Join Date: 09-24-06
Location: Brazil
Posts: 29
iTrader: 0 / 0%
Latest Blog:
None

ciwee is liked by many
Send a message via MSN to ciwee Send a message via Skype™ to ciwee
I didnt get your problem but,
Do you know how to deal with BitTorrent?

Download this video http://www.torrentspy.com/torrent/78...Learning_XHTML

It's gonna give a light in HTML
ciwee is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-19-2006, 09:14 PM   #10 (permalink)
Inactive
 
Join Date: 11-05-06
Posts: 29
iTrader: 0 / 0%
Latest Blog:
None

soultrader is liked by many
The problem is that the image now appears after every post. I am trying to get a image in a table next to an adsense code after the first post only.

And I dont use bitorrent.
soultrader is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-20-2006, 07:52 AM   #11 (permalink)
v7n Mentor
 
suzjor's Avatar
 
Join Date: 07-26-06
Location: Texas
Posts: 3,899
iTrader: 1 / 100%
suzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest ordersuzjor is a web professional of the highest order
That I don't have any idea...that would be a certain code within vb right? I would think there would need to be a certain script or something for that to limit the number of ads that would go between posts.
__________________
Looking for handmade artist vendors (the hip and trendy) for my new online consignment store. Contact me for details.
Indie Handmade Store | Custom Website Designs
suzjor is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
What do you think works better for adsense - text links or image ads? gregdavidson Webmaster Revenue 31 06-25-2008 11:04 PM
'Unable to save image' error for sig image danparks V7N Forum Support 20 02-22-2008 04:13 PM
Google AdSense: Text links / Image links sniperhiga Google Forum 8 07-25-2007 09:59 AM
Adding one image to another image via script Pimpen 2010 Coding Forum 19 08-07-2004 11:41 AM
Can a 'swap image' graphic contain image mapping? lizbeth Coding Forum 2 04-22-2004 02:32 AM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 01:16 AM.
© Copyright 2008 V7 Inc