> Option 4 is... interesting. There is something subtlely wrong with it,
> but I can't quite put my finger on it. Perhaps it just seems overkill?
I think at this stage i'm an option 4 convertee... unless you can
convince me otherwise!
It just seems the most semantically correct... turn off styles and it
makes the most sense.
It's a fair few lines of CSS (see below) and an image has to be
loaded, but i guess, once its done....
The other thing is that with all the options, i'd prefer to use a
character rather than an image as a separator. Characters like />\|
etc
could we use CSS to insert a character as a divider, rather than an
image? :before or something?
/* You Are Here */
#YouAreHere
{
position: relative;
width: 600px;
left: 50%;
margin: 0px 0px 0px -300px;
background-color: white;
color: Black;
font-size: 0.7em;
padding-bottom: 30px;
z-index: 100;
border-top: 1px solid #ddd;
border-left: 1px solid #ddd;
border-right: 2px solid #ddd;
background-image: url(/images/layout/back-top.gif);
background-repeat: repeat-x;
background-position: left top;
text-transform: capitalize;
}
#YouAreHere dl { margin: 0px; padding: 56px 0px 0px 150px; }
#YouAreHere dt { display:none; }
#YouAreHere dd { display: inline; margin: 0px 0px 0px 3px; }
#YouAreHere a {
background-image: url(/images/layout/arrow-bright.gif);
background-repeat: no-repeat;
background-position: right center;
font-weight: bold;
color: #E68B2C;
text-decoration: none;
padding-right: 10px;
}
#YouAreHere a:hover { text-decoration: underline; color: black; }
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************