Re: [css-d] Footerstick, and transparent absolute background

2007-08-21 Thread Gunlaug Sørtun
Arnold Gregory wrote: I am trying to combine the footer stick technique with faux columns and opacity on this page: http://sandboxv3.erau.edu/pr/0pr-dev/index.html Code borrowed from: http://www.themaninblue.com/writing/perspective/2005/08/29/ You haven't copied it properly - the #page

[css-d] Beginner: text distance ;-)

2007-08-21 Thread Ingo
Dear list, another issue where my understanding is limited: http://web-bereiter.de/chobocca.com/test03/index.html I inspected #heading and h1 with Firebug or Webdeveloper Toolbar. There is a certain vertical space between the beginning of #heading and h1. I tried to eliminate that by throwing

Re: [css-d] Beginner: img distances

2007-08-21 Thread ananda kumar c
Hi Ingo - I think the spaces between the images are because of the whitespace chars between the anchor tags that surround each image and not because of styles. Regards, Anand Ingo wrote: Dear list, obviously a simple matter, but I'm stuck. On

[css-d] Good default font-family stacks?

2007-08-21 Thread Timothy Kelty
I'm trying to find a good reference to set up some good font-family default stacks with fonts that share similar enough characteristics. Ideally, I'm looking for some examples that contain all your basic web fonts, then a couple at the top of the top of the stack for more common but not

[css-d] Web Coding Advice Needed

2007-08-21 Thread WEZ!
After trying to develop a fluid CSS only layout entirely em based with min and max-width's I'm unsurprisingly stumped. I'm trying to get a Layout functioning from IE5 and up on all browsers/platforms. If anyone could give me any advice on these problems I would be very much appreciated. This

[css-d] Background image getting cut off in link hover (IE7)

2007-08-21 Thread Justin Bergson
In IE7, the background image on my main navigation (the orange arrow) is getting cut off at the bottom. If you look at it in FF or IE6 you can see how it should look. I've tried everything but can't get it to display as it should. This is only happening in IE7 and I can not figure out why.

[css-d] Web Coding Advice needed update

2007-08-21 Thread WEZ!
Heya all again, Still waiting on my other post to get through as I'm new to the list and awaiting moderation. Had an update to the website to fix a couple of the IE display bugs. The website is available here: http://www.newearthpermaculture.com.au/bm/BusMentorMenu14.htm I thought I had the

Re: [css-d] Beginner: text distance ;-)

2007-08-21 Thread Philippe Wittenbergh
On Aug 21, 2007, at 8:10 PM, Ingo wrote: another issue where my understanding is limited: http://web-bereiter.de/chobocca.com/test03/index.html I inspected #heading and h1 with Firebug or Webdeveloper Toolbar. There is a certain vertical space between the beginning of #heading and

Re: [css-d] Beginner: text distance ;-)

2007-08-21 Thread Ingo
Ingo schrieb am 21.08.2007 13:10 http://web-bereiter.de/chobocca.com/test03/index.html is a certain vertical space between the beginning of #heading and h1. I Found the solution myself (thanks to firebugs layout view) - h1 {margin-top:0px} fixes that space. Ingo

[css-d] Floated Images disappear in IE6

2007-08-21 Thread Scott Povlot
I recently redesigned one of my websites. Now some images (floated right) are no longer showing on Internet Explorer 6 (IE6). I think this may be a box model issue. But the hacks I have tried haven't fixed it. This site works in IE7 and Firefox. Can someone please help me fix this? The page

[css-d] float right vs. absolute position right: 0; in IE6

2007-08-21 Thread Christian Kirchhoff
Hallo, please take a look at: http://www.digitale-bibliothek.de/zenotest/test.htm http://www.digitale-bibliothek.de/zenotest/main.css The relevant CSS definitions are at the end of the css file. I'd like the numbers and prices to be right aligned. Thus I set the position of the containing

Re: [css-d] Floated Images disappear in IE6

2007-08-21 Thread Gunlaug Sørtun
Scott Povlot wrote: I recently redesigned one of my websites. Now some images (floated right) are no longer showing on Internet Explorer 6 (IE6). I think this may be a box model issue. But the hacks I have tried haven't fixed it.

Re: [css-d] Floated Images disappear in IE6

2007-08-21 Thread Scott Povlot
Thanks very much, Georg. Just wondering how you determined this (so that I can learn a little for next time). Is this a documented bug? Any links you can provide would be helpful. Regards, Scott --- Gunlaug Sørtun [EMAIL PROTECTED] wrote: Nothing to do with the box model, but everything to

Re: [css-d] Good default font-family stacks?

2007-08-21 Thread David Hucklesby
On Mon, 20 Aug 2007 10:32:47 -0400, Timothy Kelty wrote: I'm trying to find a good reference to set up some good font-family default stacks with fonts that share similar enough characteristics. Ideally, I'm looking for some examples that contain all your basic web fonts, then a couple at

[css-d] Firefox IE Scaling Issue Goes Deeper than Fonts

2007-08-21 Thread css man
Firefox IE SCALING ISSUE If you set your screen resolution to 800x600 and run a test on the CSS and code below, you'll quickly discover Firefox and IE have scaling issues aside from font size. The image GIF (245x216) looks remarkably larger in IE6 than it does in Firefox 2.0.0.6. Can anyone

[css-d] Content is being pushed outside container in FireFox

2007-08-21 Thread Michael Stevens
http://nancyray.accountsupport.com/ http://nancyray.accountsupport.com/bct.css http://nancyray.accountsupport.com/menu.css http://nancyray.accountsupport.com/footer.css Finally getting around to attempting to convert this site to XHTML/CSS and I'm slowly adding content here and there so I can get

Re: [css-d] Floated Images disappear in IE6

2007-08-21 Thread Gunlaug Sørtun
Scott Povlot wrote: Just wondering how you determined this (so that I can learn a little for next time). Sounds like I simple enough question, but I'm not sure if I can give you a good answer. The fact is: I see such 'stacking' bugs so often that I usually just apply one of a few normal

Re: [css-d] Content is being pushed outside container in FireFox

2007-08-21 Thread Gunlaug Sørtun
Michael Stevens wrote: http://nancyray.accountsupport.com/ You can see the content outside of the page. Try adding... table#ads {clear: both;} regards Georg -- http://www.gunlaug.no __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Firefox IE Scaling Issue Goes Deeper than Fonts

2007-08-21 Thread WEZ!
You are probably finding there are default margins around elements in your document you aren't aware of. body often gains margins as do other block level elements. Two tests you can do: Kill all margins, paddings and borders * {margin:0; padding:0; border:0;} OR add a tiny border to everything