Re: [css-d] Choppy Scrolling in FireFox

2005-10-04 Thread Rich Points
s usually an IE issue)...or something to do with your font rules, is there a reason why you are using ems and pts? kind of hard to spot the issue w/out getting into your code deeper, as ive hit my 13 hr code day limit ;) maybe someone else can spot it quickly. On 10/3/05, *Rich Points* &l

Re: [css-d] Can't click on links in IE

2005-10-03 Thread Rich Points
This was it. Thanks Rich Thierry Koblentz wrote: Rich Points wrote: I validated it but I'm still not able to click on the links in IE http://www.clubsauce.com/3.php Did you try to remove all the "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, si

Re: [css-d] Choppy Scrolling in FireFox

2005-10-03 Thread Rich Points
October 3, 2005, at 10:57 PM, Rich Points wrote: could be your javascript, has happened to me in the past with firefox. Nope I removed it and it still happens. :-( __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/m

Re: [css-d] Choppy Scrolling in FireFox

2005-10-03 Thread Rich Points
could be your javascript, has happened to me in the past with firefox. Nope I removed it and it still happens. :-( __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-

Re: [css-d] Can't click on links in IE

2005-10-03 Thread Rich Points
Ah yes that was what it took for me to find it which I fixed by turning off position:relative on the #container. I've used this technique in the past but forgot it was an option, thanks for the reminder. Rich Steve Clason wrote: On 10/3/2005 5:35 PM Rich Points wrote: I validated i

Re: [css-d] Can't click on links in IE

2005-10-03 Thread Rich Points
;uri=http://www.clubsauce.com/3.php) returned 106 errors. I am pretty sure somewhere in there lies your problem. Rich Points wrote: Howdy, I've got a CSS design that's just about finished and I can't click on any of the links in the main content section in IE 6. I've tried a

[css-d] Can't click on links in IE

2005-10-03 Thread Rich Points
Howdy, I've got a CSS design that's just about finished and I can't click on any of the links in the main content section in IE 6. I've tried a bazillion things and I can't figure it out. I'm using only Z-index once and that's on the #header section, z-index: 1;. I've tried various combinat

[css-d] Choppy Scrolling in FireFox

2005-10-03 Thread Rich Points
Howdy, I have a design that has a choppy scroll in FF. http://www.clubsauce.com/3.php What's up with that? Rich __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-di

Re: [css-d] Writing maintainable CSS for the newbies

2005-09-27 Thread Rich Points
http://www.contentwithstyle.co.uk/Articles/12/modular-css/ http://www.contentwithstyle.co.uk/Articles/17/a-css-framework/ Thanks Mike for the above articles. I've been designing with CSS for about three years and my style sheets have been evolving to modular CSS. I've never came across an

[css-d] Background image for tag problem in IE6

2005-09-23 Thread Rich Points
Howdy, I've set up a background image with a small arrow on hyper links in my navigation. This works fine in Firefox and other Gecko browsers but I can't get it to render in IE6. Here is a page that uses it graphic-arts-schools.com/find.php H

Re: [css-d] Header problems on resizing - Repost

2005-08-21 Thread Rich Points
I don't understand what you mean by the h1 and h4 being best in the body content of the page either. I say that in reference to SEO where it's a good idea to put keywords of the page in the tags.. This is off topic for this list though. I'd be pleased to hear how it works across few bro

Re: [css-d] Header problems on resizing - Repost

2005-08-21 Thread Rich Points
Hey Peter, I put together a tweak of your page. I did so under the assumption that you wanted a static width; 820px. It's a different story if you going after a squishy layout. I also tweaked the html and made it simpler. I took out the H1 and H4 tag because those tags are often best used i

Re: [css-d] How to get one tag to inherit the same style as another

2005-08-10 Thread Rich Points
Jennifer, You will need to define the p tag first, then you can tack on the h5 like this p, h5{ styles } This will render the same style for both tags. Rich J. Kang wrote: Hi, How can I get one tag to inherit the style already set to another tag? This would be the default style NOT set

[css-d] only half of the drop downs work in IE6

2005-08-01 Thread Rich Points
Howdy, I'm working on a design and I'm having trouble getting all the drop downs to work in IE6. The first three menus are dropping like they should but the next three, starting with 'techniques' don't work. Has anyone see this problem before? http://gatewaygourmet.com/Test/index.htm Thanks

Re: [css-d] Child Seletors, Absolute Positioning, Internet Explorer

2005-07-30 Thread Rich Points
isplay: none } [added to the css] On pages where a banner is not shown use: banner image goes here I did a little demo at: http://www.jimdavis.org/test/banner_on.htm. Click "turn banner off" to switch states. hth Jim On 7/30/05, Rich Points <[EMAIL PROTECTED]> wrote: CSS Gurus,

[css-d] Child Seletors, Absolute Positioning, Internet Explorer

2005-07-30 Thread Rich Points
CSS Gurus, I'm working on a site that uses absolute positioning for the header section so I can place the header code at the bottom of the html. The client would like to have the option to put a banner/advertisement above the content section or to have no advertisement. I'm trying to use chi

Re: [css-d] conditional import to css?

2005-07-12 Thread Rich Points
You don't need a separate sheet for IE hacks, you can write the hacks into your main sheet using the following syntax. For example say there was a margin issue margin: 0 0 15px 0; _margin: 0 0 25px 0; The second style definition only works in IE :-) no need for a separate sheet. This saves