Return to iWEBTOOL

Go Back   iWEBTOOL Talk > The Web and your Website > Programming > HTML
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
 
Welcome to iWEBTOOL Talk, where you talk about webmaster-related stuff.
 
Discuss topics which interest you.
With over thousands of threads (topics), we're sure you'll find something that'll interest you.
Ask for help whenever you need it.
We have thousands of members who are available to help you if you need it.
It's absolutely FREE!

 1  Register           2  Browse the board           3  Discuss whatever may interest you!
 


Closed Thread
 
Thread Tools Search this Thread Display Modes
Old 10-04-2006, 09:15 AM   #1
spenno
Junior Member
 
spenno's Avatar
 
Join Date: Jul 2006
Location: Derby
Posts: 37
spenno will become famous soon enough
Question How to stop Background imaging repeating?

Hi, Just wondering if anyone can help me stop my background image repeating. The image repeats on the right and beneath.

Many thanks
spenno is offline  
 
This is an Ad Revenue Sharing forum Place your advert here
SEO Checklist
Get yourself better ranking with
our "Do-it-Yourself" SEO Checklist.
Click Here
Old 10-04-2006, 09:56 AM   #2
Bagi Zoltán
iWEBTOOL Moderator
 Contributor 
 
Bagi Zoltán's Avatar
 
Join Date: Aug 2006
Location: Hungary
Posts: 1,859
Bagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of light
Default Re: How to stop Background imaging repeating?

You should use this css background attribute:
"background-repeat:no-repeat;"
__________________
Time may come when you will need an excellent eCommerce shopping cart software
free seo related web directory precíziós mérleg Free shopping cart
Bagi Zoltán is offline  
Old 10-04-2006, 01:08 PM   #3
Intripita-MH
Senior Member
 
Intripita-MH's Avatar
 
Join Date: Sep 2006
Posts: 280
Intripita-MH is a splendid one to beholdIntripita-MH is a splendid one to beholdIntripita-MH is a splendid one to beholdIntripita-MH is a splendid one to beholdIntripita-MH is a splendid one to beholdIntripita-MH is a splendid one to beholdIntripita-MH is a splendid one to beholdIntripita-MH is a splendid one to behold
Send a message via AIM to Intripita-MH Send a message via MSN to Intripita-MH Send a message via Yahoo to Intripita-MH
Default Re: How to stop Background imaging repeating?

Quote:
Originally Posted by Bagi Zoltán View Post
You should use this css background attribute:
"background-repeat:no-repeat;"
Yep.

More specifically:

body { background-repeat: no-repeat; }
__________________
Intripita :: web hosting | development | conferencing

Business-Grade Web Hosting, Professional Conferencing, Effective Web Development by Intripita
Intripita-MH is offline  
Old 10-04-2006, 02:55 PM   #4
Zack
Junior Guru
 
Zack's Avatar
 
Join Date: Dec 2005
Location: North Carolina
Posts: 759
Zack is a splendid one to beholdZack is a splendid one to beholdZack is a splendid one to beholdZack is a splendid one to beholdZack is a splendid one to beholdZack is a splendid one to beholdZack is a splendid one to beholdZack is a splendid one to behold
Send a message via MSN to Zack
Default Re: How to stop Background imaging repeating?

Or use this way:

body {
background: #ffffff url(image.png) no-repeat;
}

if you wanted it to just repeat on the left side of the page:

body {
background: #ffffff url(image.png) repeat-y;
}

and if you wanted it to just repeat on the top of your page:

body {
background: #ffffff url(image.png) repeat-x;
}


Hope this helps you and the others who have this question!
HTMLGuy
__________________
yaxal releases '07
Zack is offline  
Old 10-04-2006, 03:05 PM   #5
Bagi Zoltán
iWEBTOOL Moderator
 Contributor 
 
Bagi Zoltán's Avatar
 
Join Date: Aug 2006
Location: Hungary
Posts: 1,859
Bagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of light
Default Re: How to stop Background imaging repeating?

So spenno as You see, there are lot of alternatives

Choose one!
__________________
Time may come when you will need an excellent eCommerce shopping cart software
free seo related web directory precíziós mérleg Free shopping cart
Bagi Zoltán is offline  
Old 10-04-2006, 03:10 PM   #6
spenno
Junior Member
 
spenno's Avatar
 
Join Date: Jul 2006
Location: Derby
Posts: 37
spenno will become famous soon enough
Default Re: How to stop Background imaging repeating?

should i use this in css.
thanks
spenno is offline  
Old 10-04-2006, 03:19 PM   #7
spenno
Junior Member
 
spenno's Avatar
 
Join Date: Jul 2006
Location: Derby
Posts: 37
spenno will become famous soon enough
Default Re: How to stop Background imaging repeating?

this is my css:

/* CSS Document */

.links { font-family:arial; font-size:10px; font-weight:bold; color:#9D014B; text-decoration:none ;} a.links:hover { color:#073A74; }

.header-text {font-family:Arial, Helvetica, sans-serif; font-size:18px; font-weight:bold; color:#9D014B; text-decoration:none;}

.address {font-family:Arial, Helvetica, sans-serif; font-size:10px; font-weight:bold; color:#ffffff; text-decoration:none;}

.subheader-text {font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:bold; color:#9D014B; text-decoration:none;}

.text {font-family:Arial, Helvetica, sans-serif; font-size:11px; color:#073A74; text-decoration:none;}

.table-bg {background-color:#005793;}

#dropmenudiv{
position:absolute;
background-color: #ffffff;
border:1px solid black;
border-bottom-width: 0;
font:normal 10px arial;
line-height:18px;
z-index:100;
}

#dropmenudiv a{
width: 100%;
display: block;
color: #073A74;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
}

#dropmenudiv a:hover{ /*hover background color*/
background-color: #E8C4C6;
}

Can you tell me where to add it thanks
spenno is offline  
Old 10-04-2006, 03:20 PM   #8
spenno
Junior Member
 
spenno's Avatar
 
Join Date: Jul 2006
Location: Derby
Posts: 37
spenno will become famous soon enough
Post Re: How to stop Background imaging repeating?

this is my css:

/* CSS Document */

.links { font-family:arial; font-size:10px; font-weight:bold; color:#9D014B; text-decoration:none ;} a.links:hover { color:#073A74; }

.header-text {font-family:Arial, Helvetica, sans-serif; font-size:18px; font-weight:bold; color:#9D014B; text-decoration:none;}

.address {font-family:Arial, Helvetica, sans-serif; font-size:10px; font-weight:bold; color:#ffffff; text-decoration:none;}

.subheader-text {font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:bold; color:#9D014B; text-decoration:none;}

.text {font-family:Arial, Helvetica, sans-serif; font-size:11px; color:#073A74; text-decoration:none;}

.table-bg {background-color:#005793;}

#dropmenudiv{
position:absolute;
background-color: #ffffff;
border:1px solid black;
border-bottom-width: 0;
font:normal 10px arial;
line-height:18px;
z-index:100;
}

#dropmenudiv a{
width: 100%;
display: block;
color: #073A74;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
}

#dropmenudiv a:hover{ /*hover background color*/
background-color: #E8C4C6;
}
spenno is offline  
Old 10-04-2006, 03:34 PM   #9
Bagi Zoltán
iWEBTOOL Moderator
 Contributor 
 
Bagi Zoltán's Avatar
 
Join Date: Aug 2006
Location: Hungary
Posts: 1,859
Bagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of lightBagi Zoltán is a glorious beacon of light
Default Re: How to stop Background imaging repeating?

When the picture, which repeats- is the background of the body, than You should attach a class attribute to it in the html code e.g. <body class="body">.

After this you should add some row into Your css document, something like this:
.body{
background: url(image.png) no-repeat;
}
__________________
Time may come when you will need an excellent eCommerce shopping cart software
free seo related web directory precíziós mérleg Free shopping cart
Bagi Zoltán is offline  
Old 10-04-2006, 03:37 PM   #10
spenno
Junior Member
 
spenno's Avatar
 
Join Date: Jul 2006
Location: Derby
Posts: 37
spenno will become famous soon enough
Default Re: How to stop Background imaging repeating?

Thanks a lot for that
spenno is offline  
 
This is an Ad Revenue Sharing forum Place your advert here
Webmaster Tools Webmaster Tools Click Here
Closed Thread

(Threads which have no activity for more than 30 days are automatically closed.)



Quick Reply
Message:

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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 Off
Pingbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Most Search users stop at page three midlandi Marketing and Promotion 0 11-16-2006 08:55 PM
Does .9 Repeating = 1? Intripita-MH General Talk 4 10-28-2006 09:41 PM
Background check record search, background search unlimited davidfrank Advertise your website 1 10-24-2006 01:55 AM
results repeating for each user meth0d420 PHP 1 09-20-2006 07:53 AM
WebmasterTrades.com - Stop paying $9.95 to sell your site! Skribblez Advertise your website 0 04-21-2006 10:50 AM


All times are GMT. The time now is 08:01 PM.


Powered by vBulletin v3.6.7 © 2008, Jelsoft Enterprises Ltd. SEO by vBSEO © 2006, Crawlability, Inc.