Re: [css-d] Links work but Parts of Div is hidden

2009-03-27 Thread David Laakso
Christopher R wrote: I've got the images to load now the problem is that the images are hiding behind the white box. Post to: http://csscreator.com/css-forum/ __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] Links work but Parts of Div is hidden

2009-03-27 Thread david
Answer below where it belongs! ;-) Christopher R wrote: I've got the images to load now the problem is that the images are hiding behind the white box. On Thu, Mar 26, 2009 at 4:52 AM david gn...@hawaii.rr.com wrote: Christopher R wrote: Alright, I have gotten my links to work but if you

[css-d] IE and png transparency

2009-03-27 Thread hairball
How can I set .png transparency for ie7. I thought is was something like this. code: filter:alpha(opacity=50); But I guess I'm wrong it doesn't seem to work, am I missing something ? __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] List-style-type in IE

2009-03-27 Thread Mike Davies
On Thu, 2009-03-26 at 11:16 -0700, Mark Senff wrote: --- On Thu, 3/26/09, Mike Davies m...@integrawebdesign.co.uk wrote: I am trying to remove the bullets from an unordered list, which works fine in Firefox using list-style-type:none;. But this doesn't appear to be supported by IE and the

Re: [css-d] List-style-type in IE

2009-03-27 Thread Climis, Tim
This seems to remove the bullet but the indent remains as though the bullet still exists. I haven't looked at the page to verify/test, but FF does the indents with padding, while IE does it with a margin. It sounds like you might be running into that. ---Tim

Re: [css-d] IE and png transparency

2009-03-27 Thread Ian Young
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of hairball Sent: 27 March 2009 10:11 To: CSS-D Subject: [css-d] IE and png transparency How can I set .png transparency for ie7. I thought is was something like

Re: [css-d] styling select drop down in IE

2009-03-27 Thread Mark Senff
--- On Thu, 3/26/09, Angela French afre...@sbctc.edu wrote: Can CSS be applied to the select tag in IE? I can't get mine to remove the 3D effect. I remember something about the styling of selects being an operating system style that can't be overwritten. To my knowledge, this is indeed

Re: [css-d] IE and png transparency

2009-03-27 Thread Mark Senff
--- On Fri, 3/27/09, hairball stop.the8th...@gmail.com wrote: How can I set .png transparency for ie7. I thought is was something like this. code: filter:alpha(opacity=50); But I guess I'm wrong it doesn't seem to work, am I missing something ? With PNGs, the transparency is part of

Re: [css-d] List-style-type in IE

2009-03-27 Thread Mark Senff
--- On Fri, 3/27/09, Mike Davies m...@integrawebdesign.co.uk wrote: ul,li { list-style-type: none; list-style-position: outside; } The list-style-position should help there. This seems to remove the bullet but the indent remains as though the bullet still exists.

Re: [css-d] styling select drop down in IE

2009-03-27 Thread Nick Fitzsimons
On Thu, March 26, 2009 10:18 pm, Angela French wrote: Can CSS be applied to the select tag in IE? I can't get mine to remove the 3D effect. I remember something about the styling of selects being an operating system style that can't be overwritten. It depends which version of IE. IE 6 and

[css-d] IE list problem

2009-03-27 Thread Climis, Tim
I just noticed this today, and I can't figure out what's going on. It looks right in FF and IE8. But in IE7, all the menu text is indented from the graphic. http://www.indiana.edu/~intlserv/ The margins and padding are all explicitly set, I think. My only guess currently is that the text

Re: [css-d] styling select drop down in IE

2009-03-27 Thread Angela French
This is interesting, but I have IE7 and a border: 1px solid color, still gets me a 3D effect unfortunately., -Original Message- From: Nick Fitzsimons [mailto:n...@nickfitz.co.uk] Sent: Friday, March 27, 2009 7:32 AM To: Angela French Cc: 'css discuss' Subject: Re: [css-d] styling select

Re: [css-d] styling select drop down in IE

2009-03-27 Thread Mark Senff
--- On Fri, 3/27/09, Nick Fitzsimons n...@nickfitz.co.uk wrote: On Thu, March 26, 2009 10:18 pm, Angela French wrote: Can CSS be applied to the select tag in IE? I can't get mine to remove the 3D effect. I remember something about the styling of selects being an operating system style

Re: [css-d] IE list problem

2009-03-27 Thread Peter Hammarling
Those who know more can probably tell you what's going on and give a more elegant solution, but I solved your very problem a few days ago with a conditional comment for IE only pointing to a separate, IE7 and down, style sheet. It gives a negative left margin to ul's and ol's. I couldn't

Re: [css-d] IE list problem

2009-03-27 Thread Bobby Jack
--- On Fri, 3/27/09, Peter Hammarling pe...@artworkers.net wrote: It gives a negative left margin to ul's and ol's. I couldn't find another way to make list items line up with the rest of the text although I'd tried all combinations of margin 0 and padding 0. I use the 'position:

Re: [css-d] IE list problem

2009-03-27 Thread Gunlaug Sørtun
Climis, Tim wrote: I just noticed this today, and I can't figure out what's going on. It looks right in FF and IE8. But in IE7, all the menu text is indented from the graphic. http://www.indiana.edu/~intlserv/ Can't analyze it in depth because scripts don't survive download, but for IE7,

Re: [css-d] IE list problem

2009-03-27 Thread Peter Hammarling
I use the 'position: relative, left: -1.5em, padding-left: 1.5em' technique from http://csshowto.com/typography/hanging-punctuation-with-css/ for full IE compatibility. Not sure if it's better than a negative left margin but, given IE's tendency to screw negative margins up, I

Re: [css-d] IE list problem

2009-03-27 Thread Climis, Tim
div#menu ul.tree { float: left; } ...to isolate outer ul containers from their parent - div#menu. That will fix indentation/line-up in that IE version. Thanks Georg! That worked like a dream. But since it took me a little while to figure out what you were talking about, here's a sum

[css-d] Image stretches vertically in (that's right) IE6

2009-03-27 Thread Ian Piper
Hi all, I *think* this is a CSS issue - apologies if it is not. I have a page with two photos on it that seem to be behaving peculiarly *only* in IE6. The page is here: http://www.ruberyowen.com/rubery-owen-history.php The offending photos are styled pictureright and pictureleft. On

Re: [css-d] IE and png transparency

2009-03-27 Thread Nick Fitzsimons
On Fri, March 27, 2009 10:10 am, hairball wrote: How can I set .png transparency for ie7. I thought is was something like this. code: filter:alpha(opacity=50); But I guess I'm wrong it doesn't seem to work, am I missing something ? As others have mentioned, IE 7 and 8 support PNG

Re: [css-d] tabled thumbnail gallery to css?

2009-03-27 Thread Venditelli, Daniel - Web Development Administrator
Bill, What about treating this as a list object instead of a table? It might be a bit of work/thought to set up initially but would certainly be much easier to maintain especially when you have to reorder items. The code/layout would essentially by fixed and easily replicated for each new entry

Re: [css-d] IE and png transparency

2009-03-27 Thread divya manian
On Fri, Mar 27, 2009 at 7:22 AM, Nick Fitzsimons n...@nickfitz.co.uk wrote: If you need to support PNG transparency in IE6, you want the AlphaImageLoader filter [1] [2] [3]. [1] http://msdn.microsoft.com/en-us/library/ms532969.aspx [2] http://support.microsoft.com/kb/294714 [3]

Re: [css-d] Image stretches vertically in (that's right) IE6

2009-03-27 Thread divya manian
On Fri, Mar 27, 2009 at 11:55 AM, Ian Piper ianpi...@mac.com wrote: The offending photos are styled pictureright and pictureleft. On Safari, Firefox and IE7 these pictures appear to be fine, but in IE6 the photos are stretched vertically. I can't figure what is happening - can anyone either

Re: [css-d] Image stretches vertically in (that's right) IE6

2009-03-27 Thread Ian Piper
On 27 Mar 2009, at 10:39pm, Holly Bergevin wrote: From: Ian Piper ianpi...@mac.com two photos on it that seem to be behaving peculiarly *only* in IE6. http://www.ruberyowen.com/rubery-owen-history.php the photos are stretched vertically. Below is where the problem is coming from, I

Re: [css-d] Image stretches vertically in (that's right) IE6

2009-03-27 Thread Holly Bergevin
From: Ian Piper ianpi...@mac.com two photos on it that seem to be behaving peculiarly *only* in IE6. http://www.ruberyowen.com/rubery-owen-history.php the photos are stretched vertically. Below is where the problem is coming from, I believe. Was this hack applied for specific problems, or