Re: [WSG] Comment mark

2007-12-10 Thread Hayden's Harness Attachment
Matthew
Thank you for the help.

Angus



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



RE: [WSG] padding on the bottom ;-)

2007-12-10 Thread Taco Fleur
 Thanks Philippe,

That fixed the issue. Although I can't seem to get the space I want at the
bottom. I guess I'll have to live with that. Cheers.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Philippe Wittenbergh
Sent: Friday, 7 December 2007 5:59 PM
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] padding on the bottom ;-)


On Dec 7, 2007, at 4:31 PM, Taco Fleur wrote:

 Having the same issue with another layout, but in FireFox  
 http://www.clickfind.com.au/ the 3 panels at the bottom of the page.

The issue is also visible in Safari and Opera 9.5b, if what you mean a a
kind of vertical lines under those 3 boxes.

That comes from the margin on the p that is collapsing through the divs
(div#box-1-c p, div#box-2-c p, div#box-3-c p {... margin-bottom:  
0.5em;})
Set the margin to 0 and that issue disappears.

That is the correct behaviour, btw.



Philippe
---
Philippe Wittenbergh
http://emps.l-c-n.com





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



RE: [WSG] padding on the bottom ;-)

2007-12-10 Thread Taco Fleur
I've tried the same thing here that Philippe suggested, but removing the
padding on
ul#result p.link {
 background: url(/_resource/image/result/bg_summary_b.gif) left bottom
no-repeat;
 padding: 0 0 0.2em 22px;
 height: 29px;
}
still did not do the trick.

  _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of ? ??
Sent: Friday, 7 December 2007 6:13 PM
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] padding on the bottom ;-)


Hello



In internet explorer
http://www.clickfind.com.au/browse-business-sub-category.cfm?categoryIdentit
y=270

The results (the box above the filter) have this padding at the bottom which
I can't seem to get rid of.


Try 'padding' instead of 'margin', i.e.
ul#result li {
...
padding: 1em 0 1em 0;
...
}
instead of
{
...
margin: 1em 0 1em 0;
...
}
If I need some padding at the top and/or bottom I use padding. Usually it
works in IE/Win 


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

Re: [WSG] Comment mark

2007-12-10 Thread Ben Buchanan
On 10/12/2007, Hayden's Harness Attachment [EMAIL PROTECTED] wrote:

 I would like to appologize if I am off topic. I am not sure who to ask. I
 am using !-- ... --! to comment out a line in a PHP file. Firefox2.xwill 
 use it to comment out a link and IE7 will not use. Am I doing the
 commenting a line out right?


For an HTML comment, you should use !-- ... -- (no ! in the closing tag).
The reason it worked in Firefox is that it interprets *any* instance of --
as a closing comment tag. As far as I know, all other browsers will wait
until they get the standard --.

cheers,
Ben

-- 
--- http://weblog.200ok.com.au/
--- The future has arrived; it's just not
--- evenly distributed. - William Gibson


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

RE: [WSG] Comment mark

2007-12-10 Thread Thierry Koblentz
 I would like to appologize if I am off topic. I am not sure who to ask. I
am using !-- ... --!

 to comment out a line in a PHP file. Firefox2.x will use it to comment
out a link and IE7 will not use. 

 Am I doing the commenting a line out right? 

 

 For an HTML comment, you should use !-- ... -- (no ! in the closing
tag). The reason it worked in 

 Firefox is that it interprets *any* instance of -- as a closing comment
tag. As far as I know, 

 all other browsers will wait until they get the standard --. 



Firefox gets it right since these (--) are the  comment delimeters.  !
and  are markup declaration delimiters. 

 

http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.4

 

-- 

Regards,

Thierry | http://www.TJKDesign.com

 

 



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***