Re: [css-d] IE7 list jumps on hover

2006-10-03 Thread Ian Young
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Harry Love Sent: 02 October 2006 23:40 To: css-d@lists.css-discuss.org Subject: Re: [css-d] IE7 list jumps on hover It seems to be a position relative problem. This seems to do the trick #menu #linklist_nav li {

Re: [css-d] Rigt align text fields

2006-10-03 Thread Bradley Wright
On 03/10/2006 00:15, Deckard wrote: But as you can see, the lines are one line below the text :( The mind bogles :( http://www.wordlife.eu/wizard.php Floating elements makes them sit adjacent to the object below them in the markup, so a simple fix would be to place the inputs above their

[css-d] @import or link href=css/buttons.css /

2006-10-03 Thread ross
Is an @import in between the style tags considered a better technique link href=myfile.css rel=stylesheet type=text/css / You thoughts please. R. __ css-discuss [EMAIL PROTECTED]

Re: [css-d] @import or link href=css/buttons.css /

2006-10-03 Thread Dave Goodchild
When you use @import you hide the css from browsers that do not support it well (hello N4). When you use link, all browser will access the css. I my daily work I no longer cater for N4 unless the majority audience uses it. It seems that IE5/5.5. is becoming the new N4. One way link rel comes in

Re: [css-d] @import or link href=css/buttons.css /

2006-10-03 Thread Christian Heilmann
When you use @import you hide the css from browsers that do not support it well (hello N4). When you use link, all browser will access the css. I my daily work I no longer cater for N4 unless the majority audience uses it. It seems that IE5/5.5. is becoming the new N4. One way link rel comes

Re: [css-d] @import or link href=css/buttons.css /

2006-10-03 Thread Gunlaug Sørtun
[EMAIL PROTECTED] wrote: Is an @import in between the style tags considered a better technique link href=myfile.css rel=stylesheet type=text/css / The question is: better for what? All valid techniques are 'better' if they get the job done, and the only difference is that especially older

[css-d] can someone tell me why I am getting theses warnings?

2006-10-03 Thread ross
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.blue-fly.co.uk%2Fjunction%2Fcounselling.php I have a background colour in my body Ross __ css-discuss [EMAIL PROTECTED]

Re: [css-d] can someone tell me why I am getting theses warnings?

2006-10-03 Thread Rimantas Liubertas
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.blue-fly.co.uk%2Fjunction%2Fcounselling.php I have a background colour in my body Yes, you do. But read carefully: validator wants COLOR, not background-color for body: Line : 4 (Level : 1) You have no color with your

Re: [css-d] can someone tell me why I am getting theses warnings?

2006-10-03 Thread Arno @ Raketnet
CSS validator wants you to define a (text-) color every time you define a background color. It's supposed to be for contrast reasons, if I understood correctly. Arno - Original Message - From: [EMAIL PROTECTED] To: css-d@lists.css-discuss.org Sent: Tuesday, October 03, 2006 2:57 PM

[css-d] ISO: MovableType or WordPress Guru?

2006-10-03 Thread swap
Hello... IN SEARCH OF a developer or programmer FOR HIRE who is fully knowledgeable in deployment of MovableType or Wordpress installations. My apologies, if this is not an appropriate post to this list. A discussion of work, rates, etc., would not be appropriate to the list, so I respectfully

[css-d] float clearing problem

2006-10-03 Thread Matt Tibbits
Hello all, I have a page with a left floated menu and a main content area. In the content area I have a series of images that are left floated. Since the text around the images is in some cases very short, I clear the end of the paragraph so that the next paragraph is lined up with the next

Re: [css-d] float clearing problem

2006-10-03 Thread ~davidLaakso
Matt Tibbits wrote: If my explanation doesn’t make any sense you can see the page here: HYPERLINK http://www.easterseals.nb.ca/prog_previewcntr.php This appears to be fine in IE6, however when I view in FF1.5 the first clear in the content, clears down past the left menu, leaving a gap.

Re: [css-d] Problem- Style Sheet for IE in a Conditional Comment

2006-10-03 Thread Rodney Toliver
In my attempts to attach two style sheets- one for Internet Explorer and one for other browsers- I have encountered a problem. On an earlier project, I was able to link one style sheet to handle the presentation on IE by linking it within a conditional comment, which only IE would recognize, and

Re: [css-d] Problem- Style Sheet for IE in a Conditional Comment

2006-10-03 Thread Bradley Wright
On 03/10/2006 16:27, Rodney Toliver wrote: Yet, for this new TEMPLATE I have been unsuccessful, as the style sheet linked within the conditional comment gets ignored completely. Your version of IE might not be exactly matching 6--try something like: !--[if GT IE 5] and see if that helps. Also,

Re: [css-d] Problem- Style Sheet for IE in a Conditional Comment

2006-10-03 Thread ~davidLaakso
Rodney Toliver wrote: In my attempts to attach two style sheets- one for Internet Explorer and one for other browsers- I have encountered a problem. Page: http://www.accd.edu/spc/distance/test/about.html CSS(IE): http://www.accd.edu/spc/distance/test/style/iestyle.css CSS(Other):

[css-d] Using divs transparent corners for rounded images... but

2006-10-03 Thread Tim Ware
I am having a problem with this page: http://help.hyperarts2.com/papilia/ Near the bottom is a brown empty image. The basic idea of what I'm trying to do is have a div (.roundimg) that contains an image tag (both the div image with no dimensions specified), and 4 divs that are absolutely

Re: [css-d] Using divs transparent corners for rounded images... but

2006-10-03 Thread Ian Young
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Tim Ware Sent: 03 October 2006 16:55 To: CSS Discuss Subject: [css-d] Using divs transparent corners for rounded images... but I am having a problem with this page: http://help.hyperarts2.com/papilia/ Near the bottom is a

Re: [css-d] Problem- Style Sheet for IE in a Conditional Comment

2006-10-03 Thread Dejan Kozina
Rodney, you're looking for the IE stylesheet one folder above its true position. Try this: @import url(style/iestyle.css); djn Rodney Toliver wrote: Page: http://www.accd.edu/spc/distance/test/about.html CSS(IE): http://www.accd.edu/spc/distance/test/style/iestyle.css CSS(Other):

Re: [css-d] Using divs transparent corners for rounded images... but

2006-10-03 Thread Tim Ware
ohmygod. That was a test during high frustration. It relates to nothing and I'll remove it! And then I'll use the validator. Thanks for that. The offending class is now history! And I closed all the image tags and now the page validates. But there's still The Problem. Thanks! Tim

Re: [css-d] Problem- Style Sheet for IE in a Conditional Comment

2006-10-03 Thread Rodney Toliver
Thanks Mr. Wright for your prompt response. Still nothing. I edited the statement as you suggested though. The page responds to the style sheet that I attached in the conventional form of attaching style sheets in both IE and Firefox. However, this one that I wanted to be recognized by IE so that

Re: [css-d] Problem- Style Sheet for IE in a Conditional Comment

2006-10-03 Thread Rodney Toliver
WOW... That simple? You found it. That was like calling the TV repair man and him finding the TV unplugged. Thanks a million. I'd still be interested in knowing how you and others link multiple style sheets to a page. -Original Message- From: Dejan Kozina [mailto:[EMAIL PROTECTED]

[css-d] Div that fills in the empty space on a page

2006-10-03 Thread Peter Beckman
I have content that spans about 400px from the top of the page to the end of the content. I want to have a nice footer exactly below the content all the way to the bottom of the page, but without enabling the scroll bars. Right now I have it working with height:1000px; but it causes the page to

Re: [css-d] works in IE6, not in IE7

2006-10-03 Thread Vlad Perlov
.clearfix { display: inline-block;} _ Share your special moments by uploading 500 photos per month to Windows Live Spaces http://clk.atdmt.com/MSN/go/msnnkwsp010001msn/direct/01/?href=http://spaces.live.com/signup.aspx

Re: [css-d] float clearing problem

2006-10-03 Thread Gunlaug Sørtun
~davidLaakso wrote: http://www.easterseals.nb.ca/prog_previewcntr.php This appears to be fine in IE6, however when I view in FF1.5 the first clear in the content, clears down past the left menu, leaving a gap. PS If it works, someone else will have to explain the theory stuff :-) .

Re: [css-d] p tag inside table

2006-10-03 Thread Dave Goodchild
table.table-events td p On 03/10/06, Eliana Berlfein [EMAIL PROTECTED] wrote: How do I change the padding on a p tag inside of a table? My table is class .table-events. I have tried .table-events p and .table-events td p, but those don't work. Thank you, Eliana

[css-d] IE6 and negative top margin

2006-10-03 Thread Mike Strong
I'm working on a tutorial that Eric Meyer did for lynda.com titled CSS Site Design. IE6 doesn't seem to like the negative top margin for #today. Most of the navbar disappears, though it works fine in Firefox. What's happening and what do I need to change to make it work in IE6? Below, I have

Re: [css-d] p tag inside table

2006-10-03 Thread Eliana Berlfein
Do you use padding to make the space between paragraphs smaller? I tried your code and the space didn't change. I put table.table-events td p { padding: 0; } Thanks, Eliana On Oct 3, 2006, at 1:34 PM, Dave Goodchild wrote: table.table-events td p

Re: [css-d] p tag inside table

2006-10-03 Thread Dave Goodchild
Space between paragraphs? Use margin in that case. Padding controls space inside the element. -- http://www.web-buddha.co.uk __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub

Re: [css-d] Problem- Style Sheet for IE in a Conditional Comment

2006-10-03 Thread Ian Young
Thanks Mr. Wright for your prompt response. Still nothing. I edited the statement as you suggested though. The page responds to the style sheet that I attached in the conventional form of attaching style sheets in both IE and Firefox. However, this one that I wanted to be recognized by IE so

[css-d] Pain in the footer (and the side)

2006-10-03 Thread Leigh Baker-Foley
Hello list, The (validated) page in question is located here: http://notlimitednyc.com/COSA/footpain.shtml Its (validated) CSS is here: http://notlimitednyc.com/COSA/style/footpain.css Pains: 1. FOOTER: IE7 (7.0b3 on WinXP and 7.0rc1 on WinVista) floats the footer up and over the content that

Re: [css-d] p tag inside table

2006-10-03 Thread Eliana Berlfein
I figured out why mine isn't responding. I set the line-height, the margin and the padding all to 0, and nothing happened. I realized that there is a p tag for the whole page that sets these things. When I remove that, the p shrinks to 0. Shouldn't the table one take precedence over the

[css-d] floating fields

2006-10-03 Thread MarcLuzietti
Is it possible, in Internet Explorer 6, to make fields expand and contract based up focus, without changing the rest of the layout of the page? I know it would require JavaScript, because IE6 doesn't support :hover on non-anchor elements, but I've had little luck with using z-index to float an

Re: [css-d] IE6 and negative top margin

2006-10-03 Thread Gunlaug Sørtun
Mike Strong wrote: IE6 doesn't seem to like the negative top margin for #today. Most of the navbar disappears, though it works fine in Firefox. What's happening and what do I need to change to make it work in IE6? Unless I've overlooked something; the addition of... #today {position:

Re: [css-d] p tag inside table

2006-10-03 Thread david
ID trumps class. Eliana Berlfein wrote: I figured out why mine isn't responding. I set the line-height, the margin and the padding all to 0, and nothing happened. I realized that there is a p tag for the whole page that sets these things. When I remove that, the p shrinks to 0.

[css-d] deactivating bullets in firefox

2006-10-03 Thread Raumin Dehghan
Does anybody know how to deactivate bullets in firefox? I think they occur because I am using lists... but they don't show up in int. explorer. Thanks, Raumin Dehghan __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Using divs transparent corners for rounded images... but

2006-10-03 Thread francky
Tim Ware wrote: [...] But there's still The Problem. ... and to finish this thread: On Oct 3, 2006, at 19:12 NL time, Francky wrote off-list: Hi Tim, I'm sending this off list for I'm at my office now, while my

Re: [css-d] deactivating bullets in firefox

2006-10-03 Thread francky
Raumin Dehghan wrote: Does anybody know how to deactivate bullets in firefox? I think they occur because I am using lists... but they don't show up in int. explorer. Thanks, Raumin Dehghan Hi Raumin, Probably not showing in IE because of margins/paddings styles. The official way is: ul {

Re: [css-d] floating fields

2006-10-03 Thread francky
[EMAIL PROTECTED] wrote: Is it possible, in Internet Explorer 6, to make fields expand and contract based up focus, without changing the rest of the layout of the page? I know it would require JavaScript, because IE6 doesn't support :hover on non-anchor elements, but I've had little luck with

Re: [css-d] Div that fills in the empty space on a page

2006-10-03 Thread ~davidLaakso
Peter Beckman wrote: I have content that spans about 400px from the top of the page to the end of the content...] I want to have a nice footer exactly below the content all the way to the bottom of the page, but without enabling the scroll bars...] Beckman Your users may need a pair of

[css-d] Can't nail this one little element

2006-10-03 Thread Adam Helweh
I of course would be done updating this site if it was not for one tiny issue. Directly above the right hand home button there is something causing a space to poke out on both IE and FF. I tried a dozen different things, but could not isolate the issue. Any ideas how to fix it? Thanks in

[css-d] Validation assistance

2006-10-03 Thread Delos Woodruff
Hello folks! I tried to validate a page and got a particular error. Specifically, because I'm using a strict html doctype, it didn't like the final in the css link. link rel=stylesheet type=text/css href=test.css / I followed the help info on this and it says that the final is not

Re: [css-d] Validation assistance

2006-10-03 Thread Bjoern Hoehrmann
* Delos Woodruff wrote: I tried to validate a page and got a particular error. Specifically, because I'm using a strict html doctype, it didn't like the final in the css link. link rel=stylesheet type=text/css href=test.css / If you use HTML, use link rel=stylesheet type=text/css