Re: [css-d] IE fails to put border on one link...

2007-07-06 Thread Ann Randall


 Richard Grevers [EMAIL PROTECTED] 7/5/2007 10:12 PM

On http://www.paen.net/en/live-interpreting.mv, links are styled with
a dashed bottom border.
= = = snip = = =

Notes on validity: The page has four validation errors. Three of them
are because the email munging javascripts are not contained in !
[CDATA[ ]] blocks.

= = = snip = = =
One of your validation errors may be because your email javascript
lacks a backslash in the /a. Try \/a and see if that helps.
--
AnnR


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] IE fails to put border on one link...

2007-07-05 Thread Richard Grevers
On http://www.paen.net/en/live-interpreting.mv, links are styled with
a dashed bottom border.
However, in IE6, the link for Berlin (last in the right-hand column)
has no border. Can anyone figure why?

Notes on validity: The page has four validation errors. Three of them
are because the email munging javascripts are not contained in !
[CDATA[ ]] blocks. That is because the scripts did not work at all
until I removed the CDATA blocks. If anyone has a theory on that, let
me know off-list (since it is not a CSS issue).
The fourth error is because someone decided noscript must contain a
block level element. Why, for deity's sake? I guess I could insert a
block element and then force it back to inline, but that is just
ridiculous

-- 
Richard Grevers, New Plymouth, New Zealand
Dramatic Design www.dramatic.co.nz
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] IE fails to put border on one link...

2007-07-05 Thread Matthew Ohlman
Hi Richard:

 On http://www.paen.net/en/live-interpreting.mv, links are styled with
 a dashed bottom border.
 However, in IE6, the link for Berlin (last in the right-hand column)
 has no border. Can anyone figure why?
   

The reason that bottom border isn't showing up is because this div:

div style=float: right; width: 160px;

that contains your list is cutting off the content and not rendering 
tall enough to show it all.  I'm not so sure why..I would guess because 
of a padding/fixed height somewhere..it is getting too late for my brain 
to function that much ;-) . 

A simple solution would be either adding a padding-bottom to the div, or 
just add a br / at the end of the div.

Here is the problem code (FWIW, you will need to change that br to br 
/ to validate as XHTML):

 Notes on validity: The page has four validation errors. Three of them
 are because the email munging javascripts are not contained in !
 [CDATA[ ]] blocks. That is because the scripts did not work at all
 until I removed the CDATA blocks. If anyone has a theory on that, let
 me know off-list (since it is not a CSS issue).
   

If you want to get rid of your Java Script validation problems, put them 
into external .js files and call them like this:

script language=javascript type=text/javascript 
src=SCRIPT.js/script

Also, you would be much better off putting /all/ your styles into your 
external stylesheets--you have a few inline styles (in other words 
calling the style like div class=width: 200px;).

HTH
Matthew
-- 
www.ohlman.com


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/