The direct link (so you can see the source) is http://www.pcsasu.co.nr
Thanks.
Wow, hate the font under the PCSASU logo at the top.
And it would be neat if you would tell me what plug in I need somewhere
on the page. Firefox tells me I need a plug in, but I'm reluctant to
click on the "install missing plugins" for fear of actually installing
something I don't want. Hell I don't know you or your cause from a
hole in the ground, so being cautious as I am and fearful, I'm not doing it.
Just minor observations.
But other than this, it looks like its working normally and I just need
to add some plugin. Sorry, but now that I've been there and re-read
your post, I'm not sure I understand the question.
My question is how do i keep firefox from saying theres a missing
plugin?
And no its not a virus, this is a known problem, google "unknown
plugin text/html"
If you click install, it will say "Unknown Plugin (text/html)"
the /> is the only item I question. Never seen closing an img tag that
way. I usually just <img ..... > and that's it. But now you've
see my entire knowledge base, so don't take it to heart too much.
The truth is, i never learned HTML, or css stuff, or php, but by
looking at examples on Google, and copying and pasting, and guessing
what img and stuff stands for, i can modify it enough to make a rough
page. Later on i will learn HTML and actually know what I'm doing. But
for now, Google is my best friend.
<object data="information.html"
height="250" width="505">
<embed src="information.html"
height="400" width="600" /> Error: Embedded
data could
not be displayed. </object>
Looking at Tools -> Page Info -> Media, I see that the 'information' URL
is listed, both as an Object, and an Embed. I may be wrong, but I think
FF see's the <object>/<embed> tags, and looks for a plugin to handle it.
I'm certainly no expert, but that's the first time I've seen text/html
included using <object>/<embed> tags. Normally, I think you would use
either frames, or some flavor of server side scripting, if your hosting
provider offers such, to include the content of another page.
At any rate, I feel fairly certain that is the cause of the prompt.
> The truth is, i never learned HTML, or css stuff, or php, but by
> looking at examples on Google, and copying and pasting, and guessing
> what img and stuff stands for, i can modify it enough to make a rough
> page. Later on i will learn HTML and actually know what I'm doing. But
> for now, Google is my best friend.
No offense intended, but, to be bluntly honest, I think you will be much
better off, if you start learning sooner, rather than later.
The problem with your current approach is that, as you will find, there
are many (way too many) examples of 'bad' code out there. Stuff that
may work fine in one browser (IE, for instance), but not another.
As a starting point, you might try the tutorials at W3Schools (free):
http://www.w3schools.com/
--
Alex
--- Original Message ---
Please be so kind as to quote previous replies so we can follow this
without having to go back and re-read posts, thanks.
--
Jay Garcia - Netscape/Flock Champion
www.ufaq.org
Netscape - Flock - Firefox - Thunderbird - Seamonkey Support
That message usually comes up when there is an embedded object that
requires a plug-in. I'm not sure why you need to have that HTML file as
an embedded object.
Dave Pyles
I deleted that and it worked, but now i dont have an information
section, and i dont want to have to edit every page to change
something in the info section.
> may work fine in one browser (IE, for instance), but not another.
>
> As a starting point, you might try the tutorials at W3Schools (free):
> http://www.w3schools.com/
>
Serious incorrect use of the object and embed tags. Those are for inserting
multimedia into a page layout and dedicating spsce for the audio/video
content being processed by an external application, Use of an 'Include" is
the old HTML way, Modern pages use XHTML and an <iframe> tag set.
--
Ron K.
Who is General Failure, and why is he searching my HDD?
Kernel Restore reported Major Error used BSOD to msg the enemy!
No, it is the correct syntax for closing an image tag in XHTML. It just
so happens that the /> syntax is not harmful in HTML 4, and so that
style is sometimes used for both.
--
If you want HTML reference
http://htmlhelp.com/reference/html40/
Might be a bit dated, but most is there.
Also CSS reference: https://developer.mozilla.org/en/CSS_Reference
Do you think you can take the snippet of code that i use now and
convert it to the iframe thing? Please? It would be greatly
appreciated.
<iframe height="250" width="505" src="information.html"></iframe>
There are other attributes for formatting the iframe that can be added
to the tag which you can find here:
http://htmlhelp.com/reference/html40/special/iframe.html
Just play around with them until you get a frame that looks the way you
want it to.
Dave Pyles
Thanks alot.