Pelican Parts
Parts Catalog Accessories Catalog How To Articles Tech Forums
Call Pelican Parts at 888-280-7799
Shopping Cart Cart | Project List | Order Status | Help



Go Back   Pelican Parts Forums > Miscellaneous and Off Topic Forums > Off Topic Discussions


Reply
 
LinkBack Thread Tools Rate Thread
Author
Thread Post New Thread    Reply
Cars & Coffee Killer
 
legion's Avatar
 
Join Date: Sep 2004
Location: State of Failure
Posts: 32,246
Best No-Frills HTML Editor?

I tried to throw together a quick web page for selling my 951. Some people can see the images, some cannot. (Link is labeled "FOR SALE" in my signature.)

I built it with Word and it does some pretty weird stuff--like the way it links images.

Does anyone know of a simple HTML editor that doesn't do the funky, propriety, Microsoft HTML?

__________________
Some Porsches long ago...then a wankle...
5 liters of VVT fury now
-Chris

"There is freedom in risk, just as there is oppression in security."
Old 05-07-2008, 05:14 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #1 (permalink)
Registered
 
mikester's Avatar
 
Join Date: Mar 2002
Location: My House
Posts: 5,345
Send a message via AIM to mikester
notepad
__________________
-The Mikester

I heart Boobies
Old 05-07-2008, 05:19 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #2 (permalink)
Registered
 
robs944's Avatar
 
Join Date: Dec 2000
Location: Aiken, SC
Posts: 343
Garage
In your code it looks like the image files are pointing to your workstation.
I've seen it before when the link points to the folder on your workstation after you
publish it.
(src="For%20Sale_files/image035.jpg")

If this is the case then you need to make sure your files are uploaded to the web server and your code points to their location.
example: www myserver/pictures/image1.jpg

Just a thought.

Comcast should have web building tools.
__________________
Rob
87 944 * 89 951
"When I die, I want to go peacefully like my Grandfather did, in his sleep -- not screaming, like the passengers in his car."
Old 05-07-2008, 05:39 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #3 (permalink)
Cars & Coffee Killer
 
legion's Avatar
 
Join Date: Sep 2004
Location: State of Failure
Posts: 32,246
That's what I thought at first too, but some people can see the images...

And I did put a For Sale_files folder on my server space.
__________________
Some Porsches long ago...then a wankle...
5 liters of VVT fury now
-Chris

"There is freedom in risk, just as there is oppression in security."
Old 05-07-2008, 05:40 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #4 (permalink)
Registered
 
robs944's Avatar
 
Join Date: Dec 2000
Location: Aiken, SC
Posts: 343
Garage
oops sorry, forgot you already mentioned that.
I don't see them either, it looks like it may be truncating the link, have you looked at your code and see if the link shows the entire url or just part of it?

I do see the for sale_files folder,
It's possible the links don't like the space in the url path
home.comcast.net/~cdcihak/For Sale_files/

Rename the folder for sale_files to for_sale_files or something like that and redirect your links to point to that location???
__________________
Rob
87 944 * 89 951
"When I die, I want to go peacefully like my Grandfather did, in his sleep -- not screaming, like the passengers in his car."
Old 05-07-2008, 05:57 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #5 (permalink)
Registered
 
MrScott's Avatar
 
Join Date: Oct 2007
Location: North Carolina
Posts: 1,025
Images fail to load in Internet Explorer.

Using notepad or any plain text editor remove < ![if !vml] > and its corresponding < ![endif] > tag everywhere you find it.
That should fix it. Ironic that the MS generated HTML works everywhere but the MS browser.
__________________
1980 911SC
Old 05-07-2008, 06:40 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #6 (permalink)
 
Back in the saddle again
 
masraum's Avatar
 
Join Date: Oct 2001
Location: Central TX west of Houston
Posts: 55,852
I see them in Firefox.

In a web page, you don't have to put the whole link for an image, you can, if the images are in the folder or a subfolder of the folder that the webpage itself is in, just use the end of the link as he did.

The real problem is the space in the folder name. (src="For%20Sale_files/image035.jpg") <-- in that code the "%20" stands for a space. If you change the folder to For_Sale_files and then change your pointers to, (src="For_Sale_files/image035.jpg"), then the images should work for everyone.
__________________
Steve
'08 Boxster RS60 Spyder #0099/1960
- never named a car before, but this is Charlotte.
'88 targa SOLD 2004 - gone but not forgotten
Old 05-07-2008, 07:14 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #7 (permalink)
Back in the saddle again
 
masraum's Avatar
 
Join Date: Oct 2001
Location: Central TX west of Houston
Posts: 55,852
Oops, didn't notice that Rob already covered that.
__________________
Steve
'08 Boxster RS60 Spyder #0099/1960
- never named a car before, but this is Charlotte.
'88 targa SOLD 2004 - gone but not forgotten
Old 05-07-2008, 07:14 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #8 (permalink)
Gon fix it with me hammer
 
svandamme's Avatar
 
Join Date: Sep 2003
Location: In Flanders Fields where the poppies blow
Posts: 23,537
Garage
write all code in small case
write all filenames in small case
it matters
__________________
Stijn Vandamme
EX911STARGA73EX92477EX94484EX944S8890MPHPINBALLMACHINEAKAEX987C2007
BIMDIESELBMW116D2019
Old 05-07-2008, 09:11 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #9 (permalink)
Monkey with a mouse
 
kstar's Avatar
 
Join Date: Oct 2000
Location: SoCal
Posts: 6,006
Quote:
Originally Posted by MrScott View Post
Images fail to load in Internet Explorer.

Using notepad or any plain text editor remove < ![if !vml] > and its corresponding < ![endif] > tag everywhere you find it.
That should fix it. Ironic that the MS generated HTML works everywhere but the MS browser.
Ironic? It's a feature.

BTW, I get the ad and pictures fine on Safari, FWIW.

Edit: Seems like an amazing amount of HTML code for that page!

Best,
__________________
Kurt

http://starnes.com/

Last edited by kstar; 05-07-2008 at 09:17 PM..
Old 05-07-2008, 09:13 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #10 (permalink)
Cars & Coffee Killer
 
legion's Avatar
 
Join Date: Sep 2004
Location: State of Failure
Posts: 32,246
Well, I broke down and manually edited the HTML. Haven't done that since 1998. (I wrote my first web page before there was a such thing as an HTML editor back in '96.) Took me two hours. Now it works.
__________________
Some Porsches long ago...then a wankle...
5 liters of VVT fury now
-Chris

"There is freedom in risk, just as there is oppression in security."
Old 05-08-2008, 06:06 AM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #11 (permalink)
Too big to fail
 
widebody911's Avatar
 
Join Date: Jan 2002
Location: Carmichael, CA
Posts: 33,894
Garage
Send a message via AIM to widebody911 Send a message via Yahoo to widebody911
/usr/bin/vi
__________________
"You go to the track with the Porsche you have, not the Porsche you wish you had."
'03 E46 M3
'57 356A
Various VWs
Old 05-08-2008, 06:36 AM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #12 (permalink)
 
Registered
 
jriera's Avatar
 
Join Date: Nov 2001
Location: Las Vegas, NV, USA
Posts: 1,587
Send a message via AIM to jriera Send a message via Yahoo to jriera
emacs
__________________
Jordi Riera
'84 930 (modified)
Old 05-08-2008, 07:55 AM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #13 (permalink)
Cars & Coffee Killer
 
legion's Avatar
 
Join Date: Sep 2004
Location: State of Failure
Posts: 32,246
Quote:
Originally Posted by jriera View Post
emacs
Sorry, I don't play Pokemon.

__________________
Some Porsches long ago...then a wankle...
5 liters of VVT fury now
-Chris

"There is freedom in risk, just as there is oppression in security."
Old 05-08-2008, 07:58 AM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #14 (permalink)
Reply


 


All times are GMT -8. The time now is 12:38 AM.


 
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0
Copyright 2025 Pelican Parts, LLC - Posts may be archived for display on the Pelican Parts Website -    DMCA Registered Agent Contact Page
 

DTO Garage Plus vBulletin Plugins by Drive Thru Online, Inc.