could it be the webeditor. Because no image will show.
Hi, I typed in <img id="model3.jpg alt="model3 src="../spencer/pictures/Mywebsites/MyGraphics.co.za/model3.jpg" style="height:173px; width:130px: border-width:0px;"/>
The editor changes it to <img id="model3.jpg" alt="model3" src="../spencer/pictures/Mywebsites/MyGraphics.co.za/model3.jpg" style="border-width:0px; height;173px width:130px;">
Ive typed this code straight after the <body> tag. CSS wont work on this computer, I dont know why.
THE IMAGE IS DEFINITELY IN THAT FILE. Im using html strict, or thats what the editor is using. Its Kompozer. do you think, I must try change the webeditor now, as Ive been trying to get images on for weeks now, or is it my program. Its windows vista, and I think its internet explorer7, not sure, the computer is over 5 years old now.
You should not be using html or css to resize the image. It will not really reduce the size of the file just the way it looks in the browser. Thus you can have a bunch of 4mb pictures on one page that you resized to 240px by 200px and they are each going to still load the full size of the file slowing down the computer. Resize the images and link them to the full size image but never resize the full size image with HTML or CSS. You can use infranview to batch resize images or something like gimp or fireworks.
----------------------------------------------------------------------------------------------
WYSIWYG editors will never beat my hand written code!!!! Learn to do it in notepad and learn how to actually control your website! Current Project http://www.jmcanineservices.com
Please keep posting in the same thread covering the same topic. This is the third thread covering this issue. I handled the CSS aspect in the 2nd one.
EDIT: You really need to simplify your file structure. If there is no web server, simply make a base folder for all of your sites and then add a folder for each site within it.
Local Path:
Code:
c:\sites\domain\images\
Since your HTML files should already be inside the domain folder, this makes the path to your images easy.
Code:
src="images\image.jpg"
This way when you upload your files online, the path to the images is still ok.
Bookmarks