Affiliate Programs
 
Search affiliate programs for: 
Affiliate Categories
» Affiliate Networks
» Ad Networks
» 2 Tier Programs
» Pay Per Sale
» Pay Per Lead
» Residual Income
» Datafeeds
» Multi Tier Programs
» Business Opps
» Other Programs

Newsletter
Get newly added affiliate programs by email. Enter your email here:
Article Categories
» Affiliate Marketing
» Business
» Ecommerce
» Hosting
» Marketing
» Sales
» Web Designing
» Webmasters
» SEO & Promotion
» Working At Home
» Other Articles
» Affiliate Glossary


Go Back   AffiliateSeeking Forum > Website Creation, Design & Maintenance > Website Design > HTML

HTML Discuss about HTML designing problems here or help others with their HTML designing issues.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-12-2009, 10:56 AM
realistic realistic is offline
Senior Member
 
Join Date: Oct 2008
Location: London
Posts: 254
realistic is on a distinguished road
Question Picture as back ground??

How do I make a picture as a background of my image??

Need a suggestion about it..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 12-16-2009, 10:45 PM
losangeles losangeles is offline
Junior Member
 
Join Date: Dec 2009
Posts: 2
losangeles is on a distinguished road
Yes, you can. with css, write that:
background-image: url(images/your_image);
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 01-01-2010, 06:44 PM
masini masini is offline
Junior Member
 
Join Date: Dec 2009
Posts: 21
masini is on a distinguished road
A senior member put it that questions?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-10-2010, 04:23 AM
mikeycane mikeycane is offline
Junior Member
 
Join Date: Apr 2010
Posts: 20
mikeycane is on a distinguished road
background picture.
The code to add a background image is..
<body background="images/plainbgrnd.jpg">
The background command is inside the body tag. You will need to point the image to reflect the folder on your server where your files are located.

(My image source resides in an image folder, then it's the image name, in this case plainbgrnd.jpg.), need to have the source as "files/plainbgrnd.jpg" or if you place your images with everything else you can simply put the image name.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-24-2010, 09:57 AM
iimmdeepak iimmdeepak is offline
Senior Member
 
Join Date: May 2010
Location: Indore,india
Posts: 249
iimmdeepak is on a distinguished road
there is background image option use it for that.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-27-2011, 06:31 PM
ross88online ross88online is offline
Member
 
Join Date: Feb 2011
Posts: 31
ross88online is on a distinguished road
Quote:
Originally Posted by masini View Post
A senior member put it that questions?
It could be happened when he was junior.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 03-10-2011, 03:27 AM
wulaishiwo wulaishiwo is offline
Junior Member
 
Join Date: Feb 2011
Posts: 21
wulaishiwo is on a distinguished road
Default CSS is the best way

Quote:
Originally Posted by losangeles View Post
Yes, you can. with css, write that:
background-image: url(images/your_image);
CSS is the best way, you have better not add contribute in element, it is not commended.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-06-2011, 01:04 PM
espejo's Avatar
espejo espejo is offline
Junior Member
 
Join Date: Apr 2011
Location: Lorca
Posts: 1
espejo is on a distinguished road
Quote:
Originally Posted by realistic View Post
How do I make a picture as a background of my image??

Need a suggestion about it..
Hello, i don´t know exctly what do u want?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-23-2011, 10:10 AM
bobwillz bobwillz is offline
Senior Member
 
Join Date: Dec 2010
Posts: 454
bobwillz is on a distinguished road
Where you want to put image ? really i didn't get your question !!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 04-25-2011, 01:18 PM
lubasha lubasha is offline
Junior Member
 
Join Date: Apr 2011
Posts: 29
lubasha is on a distinguished road
Default Picture as back ground??

The method for adding picture in the Background is as follows.

<body background="/images/image_name.gif">

But this method is very old.
You can use CSS for this purpose.

body {
background-image: url("http://yoursite.com/images/image_name.gif");
background-position: 50% 50%;
background-repeat: no-repeat;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 02-16-2012, 07:49 AM
sandeep552 sandeep552 is offline
Senior Member
 
Join Date: Feb 2012
Posts: 221
sandeep552 is on a distinguished road
In HTML you put it in body tag / body background="Url" /and you also define the size and appearance of the image.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 02-16-2012, 08:03 AM
Jashandeep's Avatar
Jashandeep Jashandeep is offline
Senior Member
 
Join Date: Jan 2012
Location: Mohali,chandigarh,punjab,india
Posts: 190
Jashandeep is on a distinguished road
Although you have got your answer ,But i will recommend you to read HTML from http://www.w3schools.com/html/default.asp . Because its just a basic thing.

Last edited by Jashandeep : 02-16-2012 at 08:04 AM. Reason: link
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 02-20-2012, 06:54 AM
Tom_141 Tom_141 is offline
Member
 
Join Date: Feb 2012
Location: INDIA
Posts: 78
Tom_141 is on a distinguished road
use background property in html of the body tag simple
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 02-22-2012, 05:24 AM
sabulba sabulba is offline
Junior Member
 
Join Date: Feb 2012
Posts: 15
sabulba is on a distinguished road
hi...
in html you can use the "img src=url.image type" in the body tag. it will enable you to set background image.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 02-22-2012, 05:44 AM
Tom_141 Tom_141 is offline
Member
 
Join Date: Feb 2012
Location: INDIA
Posts: 78
Tom_141 is on a distinguished road
Quote:
Originally Posted by sabulba View Post
hi...
in html you can use the "img src=url.image type" in the body tag. it will enable you to set background image.
as per my experience in html,their is background image attribute in Dreamweaver that helps a lot in this regards
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16 (permalink)  
Old 02-22-2012, 05:45 AM
Tom_141 Tom_141 is offline
Member
 
Join Date: Feb 2012
Location: INDIA
Posts: 78
Tom_141 is on a distinguished road
img src="url" wont work for background image as it juts pick up the image for the specified region on the web page and not for the background if it is not used in body tag
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 02-22-2012, 06:43 AM
johnnydepp johnnydepp is offline
Junior Member
 
Join Date: Feb 2012
Location: Slough
Posts: 29
johnnydepp is on a distinguished road
<body background="/images/image_name.gif">

Or using CSS

body {
background-image: url("http://yoursite.com/images/image_name.gif");
background-position: 50% 50%;
background-repeat: no-repeat;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


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



All times are GMT +1. The time now is 10:28 PM.


Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.0.0
© 2004-2011 AffiliateSeeking. All rights reserved.