Log in

View Full Version : Resolved My html pages got problem



xaverius
01-11-2012, 02:25 PM
Hey sory im newbie in webs building with html. I want ask why my web page can't run at explorer, google crome, safari. But if i open it with Mozilla firefox my site runing with normal. Please check this link for my web


http://kmds.co.id/pr_monin.html

Need help solution. Thanks

traq
01-11-2012, 03:10 PM
Your question is unclear.
Please provide more information, and be as specific as possible.
What do you want to accomplish? What have you already tried? What problems did you encounter?
Also, please be sure that you have included all relevant code and/or a link to the page in question.
"my web page can't run" is very vague - what is your problem? the missing images? They are missing in Firefox as well. Otherwise, the page seems to "run" just fine (although the markup has several errors (http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fkmds.co.id%2Fpr_monin.html) which may be part of the problem you are asking about).

Please explain what it is you are asking for help with.

angelicalu
01-16-2012, 02:06 AM
Hey sory im newbie in webs building with html. I want ask why my web page can't run at explorer, google crome, safari. But if i open it with Mozilla firefox my site runing with normal. Please check this link for my web


http://kmds.co.id/pr_monin.html

Need help solution. Thanks
You haven't upload your images to the right folder, your images should be in

http://kmds.co.id/kmds/images/

For example
http://kmds.co.id/kmds/images/amaretto.jpg

Note that there is a folder "kmds" in a top level of folder called images, this could be the problem, yes, I finished to try without the "kmds" folder and it works,
Try for example
http://kmds.co.id/images/amaretto.jpg
(note that "kmds" folder was deleted for this url, and it works)

so you have 2 options:
1)create a new folder in your hosting (could be via ftp through filezilla) called "kmds" and move the folder called "images" to this new folder, so you avoid to change the html code of your webs.
2) without create any folder and without move anything, you can change the code of your page and delete "kmds" folder in each url of the images, you can use ctrl+f to replace "/kmds/" to "/".

Those are your options, I hope this information could help you

Best Regards
Steven

jscheuer1
01-16-2012, 09:26 AM
Get rid of this in the head of the page:


<base href="kmds/pr_monin.html" />

The browser cache may need to be cleared and/or the page refreshed to see changes.

xaverius
02-01-2012, 07:38 AM
I designed a website, when I preview in browser like mozilla firefox all running smoothly. but when I preview using another browser like internet explorer, safari, and google crome ... page does not display the image only the text. think about what happened. I did install plugins like widgets. Please help and thanks

I attach the following screen shoot of the browser:

firefox full screen
http://i955.photobucket.com/albums/ae32/jooy_steak/firefox.jpg

safari
http://i955.photobucket.com/albums/ae32/jooy_steak/safari.jpg

ie
http://i955.photobucket.com/albums/ae32/jooy_steak/ie.jpg

coothead
02-01-2012, 12:08 PM
Hi there xaverius,

your problem is caused by this...

<base href="kmds/pr_monin.html" />
...in the head section of your document.
Either remove it or use this...

<base href="http://kmds.co.id/" />
...instead. ;)

I have also tidied up and validated your page, as it had numerous errors. :eek:

You will find it in the attachment below. ;)

Also, you should seriously consider changing your twentieth century coding methods to twenty first. :D

Why tables for layout is stupid: problems defined, solutions offered (http://www.hotdesign.com/seybold/index.html)
Ten ways to speed up the download time of your web pages (http://www.webcredible.co.uk/user-friendly-resources/web-usability/speed-up-download-time.shtml)
Nested Tables: About the (ab)use of tables as layout tools in webpages. (http://www.dorward.me.uk/www/nested/)
Why Tables Are Bad (For Layout) Compared to Semantic HTML + CSS (http://www.phrogz.net/CSS/WhyTablesAreBadForLayout.html)
Why go table free? (http://www.workingwith.me.uk/tablefree/why/)
Why avoiding tables (for layout) is important (http://davespicks.com/writing/essays/notables.html)

coothead

lfreddecolo
02-10-2012, 06:26 AM
please check the image path because you have checked in fire fox browser default and you cache was not refresh, so click control f5 then chek on fire fox.ok

xaverius
02-19-2012, 10:59 AM
yes...its works now. Thanks for helping.

Resolved