Welcome Guest ( Log In | Register )

Discover the best free computer help!
Learn more about Geeks to Go by taking the tour. Spyware, virus, trojan, fake security or privacy alerts? Read the malware cleaning guide.
      
3 Pages V   1 2 3 >  
Reply to this topicStart new topic
How to create own background
Nightcrawler1228
post Apr 14 2008, 08:34 PM
Post #1


Member
**
Posts: 18
OS: windows XP



Hi,

I have a webpage and I am trying to create my own backgound.

I thought this would be pretty simple but... I have been having nothing but trouble.

I have a simple black background with small yellow squares in Jpeg form.

I have text written on it and it repeats all over the screen... down and across. I would like it on there 1 time only and on the left side.

I also would like to know what the correct format would be to make sure it loads fast and fits the screen correctly.

Any help would be greatly appreciate. Thank you!

Go to the top of the page
 
+Quote Post
Sockdown
post Apr 14 2008, 08:49 PM
Post #2


Member
***
Posts: 140
OS: Windows XP, Vista



<p align="left"><img src="url" width=??? height=???></img></p>
I use .png and have no problems with it. Depends on the connection.
Hope this helps you.

This post has been edited by Sockdown: Apr 14 2008, 08:51 PM
Go to the top of the page
 
+Quote Post
Nightcrawler1228
post Apr 14 2008, 08:56 PM
Post #3


Member
**
Posts: 18
OS: windows XP



Hey thanks I appreciate it but I am using page editor. I do not know HTML.

Do I paste this in the HTML section page? And what do I put for the question marks you show.

Sorry to be a pest, I am a beginner.
Go to the top of the page
 
+Quote Post
Sockdown
post Apr 14 2008, 08:56 PM
Post #4


Member
***
Posts: 140
OS: Windows XP, Vista



Forget what I said. it won't work. Give me a few minutes and I'll answer back.

This post has been edited by Sockdown: Apr 14 2008, 08:57 PM
Go to the top of the page
 
+Quote Post
Sockdown
post Apr 14 2008, 09:04 PM
Post #5


Member
***
Posts: 140
OS: Windows XP, Vista



Ok, this is using CSS(Cascading Style Sheets).

Example:

CODE
<html>
<head>

        <title>Title</title>

<style type="text/css">
body
{
background-image: url('url of image');
background-repeat: no-repeat
}
</style>
</head>
<body>
</body>
</html>


Let me know if it helps.

This post has been edited by Sockdown: Apr 14 2008, 09:04 PM
Go to the top of the page
 
+Quote Post
Sockdown
post Apr 14 2008, 09:16 PM
Post #6


Member
***
Posts: 140
OS: Windows XP, Vista



Also, I recommend this website. It's full of tutorials for Web Building.
W3Schools

If you don't know what is CSS, then click here
Let me know if you need any help. biggrin.gif

This post has been edited by Sockdown: Apr 14 2008, 09:16 PM
Go to the top of the page
 
+Quote Post
Nightcrawler1228
post Apr 14 2008, 09:33 PM
Post #7


Member
**
Posts: 18
OS: windows XP



Hi and thanks again I have been trying to figure this out for days.

Here is the link and you will see what I mean... http://www.freewebs.com/horatio123/index.htm

I am reading about css now. Thanks
Go to the top of the page
 
+Quote Post
Major Payne
post Apr 14 2008, 09:37 PM
Post #8


Trusted Techie
Group Icon
Posts: 4,315
From: FEMA took "Tin Can" away!
OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem!



QUOTE
I would like it on there 1 time only and on the left side.
The left side of a page is a lot of territory. Using a non-tileable image as a bg image within the body will allow only so many places it can be placed on the left side. It can only be placed: top left | left center | left bottom .

If you want it placed to the left side as a bg image any other place then you have to do it one of several other ways depending on exactly where on the left you wish the image placed.

If you are happy with the above three choices, then use this:

Between head tags
CODE
<style type="text/css">
body { #000 url(path/image.jpg} no-repeat left center scroll; }
</style>


That puts in a black background color, the image is at center left, does not repeat and will scroll with page contents. If you want it done another way, let me know.

With the page Editor, go to Source View and just paste the style tags as is between the head tags. What Page Editor are you using?

Ron

This post has been edited by Major Payne: Apr 14 2008, 09:43 PM
Go to the top of the page
 
+Quote Post
Nightcrawler1228
post Apr 14 2008, 09:37 PM
Post #9


Member
**
Posts: 18
OS: windows XP



Hey Sockdown, thank you very much,

But Umm, Yes please help me here. LOL

I just read this and... I could definetly use some help now. lookaround.gif
Go to the top of the page
 
+Quote Post
Sockdown
post Apr 14 2008, 09:40 PM
Post #10


Member
***
Posts: 140
OS: Windows XP, Vista



You're welcome. I see the background of CSI on the back only once as I think you wanted it. Is that what you wanted?
Go to the top of the page
 
+Quote Post
Nightcrawler1228
post Apr 14 2008, 09:48 PM
Post #11


Member
**
Posts: 18
OS: windows XP



No I just wanted the yellow to show on top with the tile and then the CSIMiami on the left one time... It is tiling everything down and across again and again.

I only want everything on the page once or the CSIM can tile down on the left but i obviously made it too big?



Oh hey Major Payne... Sorry I just saw your message. I am using freewebs page editor. So I should go into eaw HTML and paste this yes?

This post has been edited by Nightcrawler1228: Apr 14 2008, 09:51 PM
Go to the top of the page
 
+Quote Post
Major Payne
post Apr 14 2008, 09:57 PM
Post #12


Trusted Techie
Group Icon
Posts: 4,315
From: FEMA took "Tin Can" away!
OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem!



These HTML Errors need to be corrected.

These CSS Errors need to be corrected.

I love Emily Proctor! tongue.gif

Ron
Go to the top of the page
 
+Quote Post
Sockdown
post Apr 14 2008, 10:02 PM
Post #13


Member
***
Posts: 140
OS: Windows XP, Vista



Ok, try this:

CODE
<style type="text/css">
body
{
background-image:
url('url of image');
background-repeat:
no-repeat;
background-attachment:
fixed
}
</style>
Go to the top of the page
 
+Quote Post
Nightcrawler1228
post Apr 14 2008, 10:04 PM
Post #14


Member
**
Posts: 18
OS: windows XP



Hey So do I and David Caruso as well, yes.gif

This is just my practice web site... I will not test this on the real deal... i did it once and lost my entire page. LOL

I don't know HTML or CSS... I just always use to site as trial and error when i want to learn.

Like I said I thought this would be so easy. Just a simple background page... OMG!!!

When you wrote the CSS code for me do I just copy and paste that? What does BG stand for?

Thanks so much!
Go to the top of the page
 
+Quote Post
Nightcrawler1228
post Apr 14 2008, 10:10 PM
Post #15


Member
**
Posts: 18
OS: windows XP



Nope not working yet. For some reson I can not edit the home page now so I am working on this page. http://www.freewebs.com/horatio123/links.htm

Thanks for all the help. I really appreacite it all from both of you.
Go to the top of the page
 
+Quote Post

3 Pages V   1 2 3 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Collapse

> Similar Topics

    Topic Title Replies / Views Topic Information
No New Posts  
0 / 24 8th October 2008 - 01:27 AM
gr8joel started - last by gr8joel
No New Posts  
1 / 41 6th October 2008 - 12:40 AM
QuikS started - last by Egwene
No new  
16 / 462 29th September 2008 - 12:46 PM
aprindle1 started - last by Essexboy
No New Posts  
5 / 197 25th September 2008 - 10:48 AM
alexmat01 started - last by Neil Jones
No New Posts  
1 / 41 23rd September 2008 - 05:10 PM
NotAQuitter started - last by Neil Jones

RSS Time is now: 12th October 2008 - 02:03 PM
Advertisements do not imply our endorsement of that product or service. The forum is run by volunteers who donate their time and expertise. We make every attempt to ensure that the help and advice posted is accurate and will not cause harm to your computer. However, we do not guarantee that they are accurate and they are to be used at your own risk.