View previous topic :: View next topic |
Author |
Message |
Pookie -
Joined: 05 Jan 2005 Posts: 60 Location: Citrus Heights, CA
|
Posted: Wed Apr 27, 2005 9:07 am Post subject: Loop-back |
|
|
Im now aware that my cable modem doesn't support looping, to where i can see my own page on the same global IP address. Is there a way around this?
Also i was told by a few friends that they dont see my images on my page, just the letters. Does my pictures have to be uploaded to a hosting site? _________________ ~TRU~ |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Wed Apr 27, 2005 12:55 pm Post subject: Re: Loop-back |
|
|
Pookie wrote: | Im now aware that my cable modem doesn't support looping, to where i can see my own page on the same global IP address. Is there a way around this?
|
You can access your site locally using 127.0.0.1 . You can also use the idea explained in http://www.aprelium.com/forum/viewtopic.php?p=39485#39485 .
Quote: |
Also i was told by a few friends that they dont see my images on my page, just the letters. Does my pictures have to be uploaded to a hosting site? |
This is usually because your IMG tags reference bad URLs. Please post here some IMG tags you use and that do not work for your friends and we will tell you how to fix them. _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
cmxflash -
Joined: 11 Dec 2004 Posts: 872
|
Posted: Wed Apr 27, 2005 10:54 pm Post subject: Re: Loop-back |
|
|
Pookie wrote: | Im now aware that my cable modem doesn't support looping, to where i can see my own page on the same global IP address. Is there a way around this?
Also i was told by a few friends that they dont see my images on my page, just the letters. Does my pictures have to be uploaded to a hosting site? |
1. Connect trough a proxy-server, you can find one @ proxy4free.com
2. Yes, you must upload your image to the same directory (unless you have another adress in the IMG-tag) as the HTML-page.
Same directory:
Code: | <img scr="image.jpg"> |
Another directory:
Code: | <img scr="/mydirectory/images/image.jpg"> |
|
|
Back to top |
|
 |
Pookie -
Joined: 05 Jan 2005 Posts: 60 Location: Citrus Heights, CA
|
Posted: Thu Apr 28, 2005 12:27 pm Post subject: Re: Loop-back |
|
|
aprelium wrote: | Pookie wrote: | Im now aware that my cable modem doesn't support looping, to where i can see my own page on the same global IP address. Is there a way around this?
|
You can access your site locally using 127.0.0.1 . You can also use the idea explained in http://www.aprelium.com/forum/viewtopic.php?p=39485#39485 .
Quote: |
Also i was told by a few friends that they dont see my images on my page, just the letters. Does my pictures have to be uploaded to a hosting site? |
This is usually because your IMG tags reference bad URLs. Please post here some IMG tags you use and that do not work for your friends and we will tell you how to fix them. | heres how my html coding for my main page looks......
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<meta name="GENERATOR" content="PageBreeze Free HTML Editor (http://www.pagebreeze.com)">
<title></title>
</head>
<body text="#ffffff" link="#0000ff" alink="#ff0000" vlink="#05dff8" type="text/css" background="first3d6.jpg"
<p >
<p background-attachment:fixed;} >
<font
face="Maiandra GD" size="5"><strong>HOME OF BP INC....................UNDER
CONSTRUCTION</strong></font>
<p></p>
<p><input type="image" src="USflag.gif" name="FLAG"><input
type="image" src="T.R.U..gif" name="TRU"></p>
<p><input type="image" src="Pookie235003.jpg" name="FOUNDER">Founder of BP
INC.</p>
<p><input type="image" src="bella17[1].jpg" name="Carmen">CO-Founder of BP INC</p>
<p> </p>
<p> </p>
<p> </p>
</body>
</html> _________________ ~TRU~ |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Thu Apr 28, 2005 3:18 pm Post subject: Re: Loop-back |
|
|
Pookie,
Your HTML code has no errors.
The files: first3d6.jpg, USflag.gif, T.R.U..gif, Pookie235003.jpg, and bella17[1].jpg must be copied in the directory where the HTML file is. _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
Pookie -
Joined: 05 Jan 2005 Posts: 60 Location: Citrus Heights, CA
|
Posted: Tue May 03, 2005 8:49 pm Post subject: |
|
|
I got it to work now :-)
Now does anybody know the code to make my background FIXED so it doesn't move when people scroll the page?
But 1 more thing. I got it to where when people go to my site my INDEX comes up, and i got a folder with all my pics in it, is there a way i can make them pictures thumbnailed instead of them seeing only links?
Thankx _________________ ~TRU~ |
|
Back to top |
|
 |
Tim1681 -
Joined: 17 Jan 2005 Posts: 160 Location: Bristol, CT, USA
|
Posted: Tue May 03, 2005 9:43 pm Post subject: |
|
|
Fixed Background:
(In the <head> section of your file)
Code: | <style type="text/css">
body {background-image: url(PICTURE.GIF); background-attachment: fixed;}
</style> |
When you put this in Remove the background="" in your body tag so they dont cancel each other out.
For the Pics Page I would take the Pics into an Image Editor & Resize them to something like 100x100 then make an Index.htm file in that folder with the <img> tags in it so they're layed out nice. Then <a href> the pics so it goes to the origional files. |
|
Back to top |
|
 |
moengiant -
Joined: 05 May 2005 Posts: 3 Location: us, IL
|
Posted: Thu May 05, 2005 4:51 am Post subject: thumbnail's |
|
|
google gallery constructor2, It's a nice freeware for creating thumbnail galleries. |
|
Back to top |
|
 |
|