Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > HTML
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 1:49 PM   #1
BORG
 
BORG's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Background help please

How can I make a picture used as the background only show the once and
not tile, its not a small picture but it still tiles a bit on my
screen. I would like it to resize to suit the browser size its being
seen on

TIA


--
E-Mail Addy obet(ng)qfy(qbg)cvcrk(qbg)pbz <---Rot13 it
watch out for spam trap in header
http://www.goodtraders.com/viewfeedback.php?nick=Borg
DONATIONS TO selling@dsl.pipex.com
Trike Power the TRUE Trinity
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-01-2007, 1:49 PM   #2
BORG
 
BORG's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Background help please

or even do the same inside a table as well please


--
E-Mail Addy obet(ng)qfy(qbg)cvcrk(qbg)pbz <---Rot13 it
watch out for spam trap in header
http://www.goodtraders.com/viewfeedback.php?nick=Borg
DONATIONS TO selling@dsl.pipex.com
Trike Power the TRUE Trinity
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:49 PM   #3
BORG
 
BORG's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Background help please

On Sun, 29 Jun 2003 16:59:07 +1000, brucie <brucie@loser.brucies.com>
wrote:

>In post <vsrsfv0po9q2rbv6i6l77gv470okg6l3sh@4ax.com>
>BORG said...
>
>> How can I make a picture used as the background only show the once and
>> not tile,

>
>no-repeat
>http://www.w3.org/TR/REC-CSS2/colors...kground-repeat



well that didn't work i typed

BODY {
background: white url("christonthecross2.jpg");
background-repeat: no-repeat;
background-position: center;
}

and now nothing on the page displays


--
E-Mail Addy obet(ng)qfy(qbg)cvcrk(qbg)pbz <---Rot13 it
watch out for spam trap in header
http://www.goodtraders.com/viewfeedback.php?nick=Borg
DONATIONS TO selling@dsl.pipex.com
Trike Power the TRUE Trinity
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:49 PM   #4
David Graham
 
David Graham's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Background help please


"BORG" <borg@deadspam.com> wrote in message
news:gartfvoqmadk1e04hi9v357urm63i9u4u1@4ax.com...
> On Sun, 29 Jun 2003 16:59:07 +1000, brucie <brucie@loser.brucies.com>
> wrote:
>
> >In post <vsrsfv0po9q2rbv6i6l77gv470okg6l3sh@4ax.com>
> >BORG said...
> >
> >> How can I make a picture used as the background only show the once and
> >> not tile,

> >
> >no-repeat
> >http://www.w3.org/TR/REC-CSS2/colors...kground-repeat

>
>
> well that didn't work i typed
>
> BODY {
> background: white url("christonthecross2.jpg");
> background-repeat: no-repeat;
> background-position: center;
> }
>
> and now nothing on the page displays


I don't know, but you have mixed the short-hand method of using background
with the long way of doing things. Try
BODY {
background: white url("christonthecross2.jpg") no-repeat center center;
}

I repeated center value so it ends up in the centre of the screen

HTH

David




 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:50 PM   #5
Jukka K. Korpela
 
Jukka K. Korpela's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Background help please

"David Graham" <david.graham16@ntlworld.com> wrote:

>> BODY {
>> background: white url("christonthecross2.jpg");
>> background-repeat: no-repeat;
>> background-position: center; }
>>
>> and now nothing on the page displays

>
> I don't know, but you have mixed the short-hand method of using
> background with the long way of doing things.


Maybe mixed, in a sense, but there's nothing wrong with using first a
shorthand, then specific properties - as long as you know what you're
doing.

Regarding the OP's problem, we need the URL to see where he actually
put it and what the whole context is. Surely if text color is set to
white and the image is not available, white on white shall it be (in
most most browsing situations).

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:50 PM   #6
BORG
 
BORG's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Background help please

problem solved. it didn't say on the web page it had to be in
<style type="text/css"> tags

I just put it in the code


<style type="text/css">
<!--
body {
background-color: #000000;
background-image: url(christonthecross2.jpg);
background-repeat: no-repeat;
background-position: center;
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
line-height: normal;
font-weight: bold;
font-variant: normal;
}
-->
</style>

I sussed it playing in Dreamweaver

URL is http://www.borg.dsl.pipex.com/poem/poem.htm




--
E-Mail Addy obet(ng)qfy(qbg)cvcrk(qbg)pbz <---Rot13 it
watch out for spam trap in header
http://www.goodtraders.com/viewfeedback.php?nick=Borg
DONATIONS TO selling@dsl.pipex.com
Trike Power the TRUE Trinity
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: ,




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
How to - background Dig Graphics in general 3 06-11-2007 11:38 PM
Can I change the background color of Photoshop 7's window for PC? - background.jpg (0/1) JugoDeCoCo Graphics in general 5 06-11-2007 6:42 PM
How do you cut out background ? Toby OCM Graphics in general 0 06-11-2007 6:38 PM
How do you cut out background ? Bobocito Graphics in general 0 05-31-2007 6:41 PM


Featured Websites




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


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98