Forum Moderators: open

Message Too Old, No Replies

I used > rather than > in my breadcrumb table

I screwed up. Which browsers will mess this up.

         

lgn

11:32 pm on Jun 9, 2003 (gmt 0)



When I designed my breadcrumb table

ie parts > widgets > Blue Widgets

I used > literally instead of > in the html code.

Since I made this change in the master template, I how have several hundred pages to change.

Explorer 6 does not care less and displays the > properly. What browsers will mess this up and destroy my tag. Or is this something we don't need to worry about anymore.

Macguru

11:40 pm on Jun 9, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Can we know about the <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=zzz"> tag?

[edited by: Macguru at 11:41 pm (utc) on June 9, 2003]

grahamstewart

11:40 pm on Jun 9, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Yup, you definitely need to worry about it.

I suggest using a decent text editor that will let you perform search and replace over multiple files.

That way you can search for "parts > widgets > Blue Widgets" and replace with "parts &gt; widgets &gt; Blue Widgets" or whatever. At least that will save some time.

I'd also suggest that you use a validator [validator.w3.org], especially on your 'master template', so you avoid errors like this in the future.

Also you should consider using PHP or SSI to include your templates - that way you would only have one file to change :)

lgn

12:01 am on Jun 10, 2003 (gmt 0)



Macguru, since nobody uses that tag anymore, are
you saying just ignore it. In which case it is now 1 for 1.

Macguru

12:06 am on Jun 10, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I use the content tag on every pages I care for. Maybe I just got another grey hair, but I have some clues it helps on some portion of market, where language is not that simple...

grahamstewart

12:24 am on Jun 10, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



nobody uses that tag anymore

I do and it is a REQUIRED tag if you want your html to validate.

lgn

12:55 am on Jun 10, 2003 (gmt 0)



Macguru

My apology, I should have clarified myself, this tag would be useful, for non-english or multilanguage sites.

And google does brings this tag up alot on non English speaking sites.

Back to the special character entity. I know that by not using it, im not complying fully with html 4.0. What im more interested in is, which browsers will break it.

I have checked 10 big name brand box sites, and guess what, none of them are using the &xx; form for & < > anymore.

I guess IE has made a lot of web designers sloppy over the years.

g1smd

1:02 am on Jun 10, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=zzz">

This is a required element. Do not leave it out.

universalis

12:59 pm on Jun 10, 2003 (gmt 0)

10+ Year Member



<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=zzz">

This is a required element. Do not leave it out.

Strictly-speaking, it is not the meta tag which is mandatory, but the definition of the character set. If your entire site uses the same charset, you can set it in httpd.conf or .htaccess (if you are using Apache), allowing you to remove the meta tag and still have the page validate.

For example, if you are using iso-8859-1, you can add this to the .htaccess:

AddType text/html;charset=iso-8859-1 .html