Re: [css-d] First timer looking for css review

2007-02-06 Thread Mike Buettner
Awesome. Thanks. That was it. What a great forum. Now on to my other problem: My nav drop down menus go behind elements in both the right and left columns in IE 5. I have tried various z-index variables but no luck? Mike http://scottriggs.com/2007 The CSS is here: http://scottriggs.com/2007/

Re: [css-d] Help broke my template

2007-02-06 Thread francky
Stephane Bortzmeyer wrote: > On Mon, Feb 05, 2007 at 06:47:29PM -0800, > Diane Ross <[EMAIL PROTECTED]> wrote > a message of 39 lines which said: > >> SAVE EVERY STEP with an OWN VERSION NUMBER! >> > A better advice may be to use a real Version Control System, for your > HTML pages and y

[css-d] ie7 vertical space

2007-02-06 Thread Melinda Odom
Hi, Can someone tell me why the vertical line in the body doesn't go all the way down the 90% like set in the style but it does go down in Mozilla? http://www.designhosting.biz/test.html The styles are in the page. I put display: table; on the body tag also but cannot find a solution. Thanks!

Re: [css-d] First timer looking for css review

2007-02-06 Thread Brian Riley
Mike Buettner wrote: > Thanks Brian - but still not working. New CSS: http://scottriggs.com/ > 2007/css.html. > Instead of "margin-top: 0px; margin-right: auto;", you should have "margin: 0 auto;". This will set the top and bottom margins to 0 and the right and left margins to auto. That shou

Re: [css-d] Help broke my template

2007-02-06 Thread francky
Diane Ross wrote: > [...] > One of my biggest problems is knowing how to troubleshoot problems. > [...] > Recognized! Some sources I got good hints from: * In some hours without deadlines, you can read the whole PIE :-) (and the links in it) to get an idea of known browser issues an

Re: [css-d] First timer looking for css review

2007-02-06 Thread Mike Buettner
Thanks Brian - but still not working. New CSS: http://scottriggs.com/ 2007/css.html. Thanks for the tip on validating... fixing those errors now. Mike On Feb 6, 2007, at 5:06 PM, Brian Riley wrote: Mike Buettner wrote: > Working on my first CSS based site: http://scottriggs.com/2007 > > Th

Re: [css-d] First timer looking for css review

2007-02-06 Thread Bill Walton
Hi Mike, Brian Riley wrote: > Try to validate your XHTML. You'll find a few > errors that should be fixed. I like to make sure > that the XHTML markup is valid before diving > into the CSS. And in case you don't already know, you can do that at: http://validator.w3.org/ The CSS validator is

Re: [css-d] First timer looking for css review

2007-02-06 Thread paula benson
Hi mike, I'm not too sure about the drop down menus but as to your footer, it isn't aligned like your 'container'. The container is auto aligned so that it centers but your footer is floating to the left, not aligned. When I say aligned I mean: margin: auto. I havn't tested it out but I have

Re: [css-d] First timer looking for css review

2007-02-06 Thread Brian Riley
Mike Buettner wrote: > Working on my first CSS based site: http://scottriggs.com/2007 > > The site is just beginning to get laid out and this is the home page. > I'm looking for any an all input PLUS some help with: > > 1. Footer (blue bar) is out of alignment. This happened after I > started

[css-d] First timer looking for css review

2007-02-06 Thread Mike Buettner
Working on my first CSS based site: http://scottriggs.com/2007 The site is just beginning to get laid out and this is the home page. I'm looking for any an all input PLUS some help with: 1. Footer (blue bar) is out of alignment. This happened after I started adding content to the right colum

[css-d] ALA alternate style sheet flashing

2007-02-06 Thread kristin
i'm getting a flash of my default style sheet when I have my alternate style sheet selected. Does anyone have any advice on this? The site is here. http://hri.kristinlong.com/ Any advice would be greatly appreciated. kristin __

[css-d] Any way to remove MouseOver flicker in IE?

2007-02-06 Thread Michael Stevens
http://www.regencygarden.com/test/ http://www.regencygarden.com/test/regency.css I'm using CSS rollovers just like I've done for other projects. This one has a very noticable flicker of the images as they swap out. I thought it might be a file size problem but the buttons are only 24k. I checked

Re: [css-d] I can't make any fixed position tutorial on ie work, please help

2007-02-06 Thread Gunlaug Sørtun
Marcelo Wolfgang wrote: > So, I'm asking for advice on how can I make the footer of my website > to be fixed on the bottom in IE6 ( it works well on other browsers ). > http://portfolio.grillo.tk/2007 If you're not bothered by IE-expressions, then the following will work. Replace _everything_ yo

Re: [css-d] Border help - question 2

2007-02-06 Thread Gunlaug Sørtun
hiptojive @hotmail.com wrote: > Okay, so i just looked through my code and i do have the div clears > before the end of the wrapper. > yikes i'm really losing the plot on this aren't i? Nope, you're really close. You just made a small error by writing... . clearing { width: 100%; height: 1px; c

Re: [css-d] I can't make any fixed position tutorial on ie work, please help

2007-02-06 Thread Marcelo Wolfgang
Hi, It don't work, the element is throw to the end of the content and it scrolls normally you can check your solution in http://portfolio.grillo.tk/2007/devon.html Thanks for the input! On 2/6/07, Devon <[EMAIL PROTECTED]> wrote: > >how can I make the footer of my website > >to be fixed on th

Re: [css-d] Border help - Browser compatibility issues

2007-02-06 Thread Gunlaug Sørtun
hiptojive @hotmail.com wrote: > Is one practice better than the other? Are div clears considered a > hack? Regarding Roger's list of options for solving box-model problems: I start by avoiding situations that cause problems, and if that isn't practical or possible and/or doesn't solve the probl

Re: [css-d] Border help - question 2

2007-02-06 Thread hiptojive @hotmail.com
Okay, so i just looked through my code and i do have the div clears before the end of the wrapper.    Welcome to The Studio for Movement, the private dance studio and personal website for Denise Mireau. If you’re looking for information about the Dance Centre for Adults in Burlin

[css-d] left nav div moves to the right in IE 6

2007-02-06 Thread Terri Hodgson
Hi: I have a template that was all good (well, mostly good) with the content and then the global horizontal nav had to be moved down into the white area just below the header. Now my left div moves right over into the main content. I think this must have to do with the setting of the negative

Re: [css-d] I can't make any fixed position tutorial on ie work, please help

2007-02-06 Thread Devon
>how can I make the footer of my website >to be fixed on the bottom in IE6 ( it works well >on other browsers ). position: fixed, doesn't work in IE 6. So...try using conditional comments in IE, and in them, put this style -- html, body {height: 100%;overflow: auto;} Then, anything you want to be

[css-d] display problems of "Simple box by Ted" rounded corners

2007-02-06 Thread Noah Learner
The page in question is at http://www.learnerdesign.com/acufamily/farm.html I am trying to implement the simple box by Ted. It displays fine in Firefox, but in IE it is a bit weird. When the page loads, it looks fine, but if you scroll down the page and then scroll back up, there is a solid bloc

Re: [css-d] Empty span problem

2007-02-06 Thread jérôme coupé
** I have aproblem with empty span element, which I can't take out of my layout unfortunately. [...] when I give it a fixed pixel width, it shows well. 100% not. *** Hello there, Not sure I understand here. Why not apply the border-bottom to the div instead ? Divs are by nature blo

Re: [css-d] Border help - Browser compatibility issues

2007-02-06 Thread hiptojive @hotmail.com
Thanks Georg! Is one practice better than the other? Are div clears considered a hack? I know in that article you sent me (http://www.456bereastreet.com/archive/200612/internet_explorer_and_the_css_box_model/) the author (Roger Johansson) suggests these options for dealing with box-model pr

[css-d] I can't make any fixed position tutorial on ie work, please help

2007-02-06 Thread Marcelo Wolfgang
Hello all, I know this is had been covered before, I've 1 quazilion demos on the web, but I could not make it work on my site, So, I'm asking for advice on how can I make the footer of my website to be fixed on the bottom in IE6 ( it works well on other browsers ). here's the link http://portfo

Re: [css-d] Help broke my template

2007-02-06 Thread Stephane Bortzmeyer
On Mon, Feb 05, 2007 at 06:47:29PM -0800, Diane Ross <[EMAIL PROTECTED]> wrote a message of 39 lines which said: > SAVE EVERY STEP with an OWN VERSION NUMBER! A better advice may be to use a real Version Control System, for your HTML pages and your CSS stylesheets. A version number does not te

Re: [css-d] Drop-down menus remain displayed in IE

2007-02-06 Thread Tim Dawson
On 05/02/2007 22:54, Ingo Chao wrote: > Tim Dawson wrote: >> I'm using the Suckerfish drop-down menu method >> (http://alistapart.com/articles/dropdowns) which uses a JS file to >> create the pseudo hover classes instead of the csshover.htc behavior >> call. >> >> My problem seems to be the obverse

[css-d] Email headers and why you should not start a thread by replying (Was: preventing table cells from expanding

2007-02-06 Thread Stephane Bortzmeyer
On Fri, Feb 02, 2007 at 06:10:14PM +, Douglas Fraser <[EMAIL PROTECTED]> wrote a message of 64 lines which said: > I did change the subject and To: headers to that of a new message > but you're telling me there is some hidden header that gets brought > over? Yes, In-Reply-To (and Reference

Re: [css-d] Border help - Browser compatibility issues

2007-02-06 Thread Gunlaug Sørtun
hiptojive @hotmail.com wrote: > [...] I looked at Francky's source code and i think i must be > misunderstanding what borders to omit and keep. Please clarify this > for me. I'm a bit still confused with this > http://www.thestudioformovement.com/index.htm You have overlooked what Franky