Re: [css-d] IE7 Beta goes Public

2006-02-01 Thread Kevin Cannon
On Wed, Feb 01, 2006 at 06:06:13AM -0500, Randal Rust wrote: > On 2/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > http://downloads.skyzyx.com/index.php?fpp=20&did=8&fid=11 > > this is useful for testing but, only works on Window XP > I downloaded teh standalone from skyzyx. Does the

Re: [css-d] page review :: ~dL

2005-12-29 Thread Kevin Cannon
On Thu, Dec 29, 2005 at 09:32:40AM -0500, David Laakso wrote: > >On Wed, Dec 28, 2005 at 10:42:43PM -0500, David Laakso wrote: > >>Comments and suggestions appreciated. It has changed a little :-P . The > >>first person who saw it thought it was "too weird." > >>

Re: [css-d] page review :: ~dL

2005-12-29 Thread Kevin Cannon
On Wed, Dec 28, 2005 at 10:42:43PM -0500, David Laakso wrote: > Comments and suggestions appreciated. It has changed a little :-P . The > first person who saw it thought it was "too weird." > I don't understand that. What's the point? Is it one of t

Re: [css-d] what could give similar effect to line-height?

2005-12-26 Thread Kevin Cannon
On Mon, Dec 26, 2005 at 05:58:29PM -, Simon Kittle wrote: > > If any uses of line-height are specified in em or % or px you are > > asking for the trouble you describe. Remove "em" from your line-height > > rule and you'll likely see the problem disappear. See: > > http://members.ij.net/mrmaz

Re: [css-d] Background Gradient

2005-12-18 Thread Kevin Cannon
On Sun, Dec 18, 2005 at 03:12:07PM -0600, Stephen Kortz wrote: > When you are using a gradient as a background element repeating along the X > axis. Is the gradient only as tall as you make it? As Liam explained, yep. You can see an example on a site I worked on recently: www.tispol.org - Kevin

Re: [css-d] Preloading Background Images

2005-12-15 Thread Kevin Cannon
On Tue, Dec 13, 2005 at 11:54:43AM -0500, Christian Montoya wrote: > On 12/13/05, Kevin Cannon <[EMAIL PROTECTED]> wrote: > > I'm not that keen on combining the 6 images into 1 large one and changing > > the > > background position, as that would mean the

Re: [css-d] Preloading Background Images

2005-12-15 Thread Kevin Cannon
On Tue, Dec 13, 2005 at 09:38:05AM -0600, CJ Larson wrote: > > Is it possible to preload the images in anyway, via CSS or Javascript? > > I'm not that keen on combining the 6 images into 1 large one and > changing the > > background position, as that would mean the homepage would take too > long t

[css-d] Preloading Background Images

2005-12-13 Thread Kevin Cannon
Hey all, I've got a website with CSS Tabs. When a user click on a tab it changes the body class, and using that rule change it hides/shows the approproate div. Each tab has a different background image, and there is a delay after clicking each tab while the image loads. Is it possible to preload

[css-d] Background image - spanning multiple table cells?

2005-12-07 Thread Kevin Cannon
Hey all, I'm CSS-ifying this design: http://www.multiblah.com/exps/css/search_results_markup/markup_how.gif When I apply a BG image to a TR though, it works in Firefox, but in IE it wont span the whole way accross. It repeats itself in each cell. Any suggestions on how to avoid this, and keep th

Re: [css-d] #idname.classname - IE Support

2005-12-01 Thread Kevin Cannon
Hey, Thanks to everyone for the replies. It's a shame that's a bit of a problem. I've found a workaround now, which isn't ideal but not too awkward. Thanks again! :) - Kevin On Thu, Dec 01, 2005 at 03:39:42PM +0100, Ingo Chao wrote: > http://archivist.incutio.com/viewlist/css-discuss/57344 > ht

[css-d] #idname.classname - IE Support

2005-12-01 Thread Kevin Cannon
Hi, Is it possible ot use a rule with an ID and a class name in IE. e.g. like so: ... #tabs.ski { background-color: green; } That works fine in Firefox, but in IE the first rule works, but subsequent ones don't: http://www.multiblah.com/exps/css/id_clas

Re: [css-d] Styling Listboxes (in IE?)

2005-11-28 Thread Kevin Cannon
On Mon, Nov 28, 2005 at 12:42:55PM +, Kevin Cannon wrote: > Hey, > > I'm having an unusual problem with styling a listbox in IE. > www.treacymowers.ie/index2.php > > I'm just changing the font-size and colour. It works fine in Firefox. In IE, > the rendering

[css-d] Styling Listboxes (in IE?)

2005-11-28 Thread Kevin Cannon
Hey, I'm having an unusual problem with styling a listbox in IE. www.treacymowers.ie/index2.php I'm just changing the font-size and colour. It works fine in Firefox. In IE, the rendering is odd, but if you minimize IE and then Restore it, then it works fine. I've never seen IE behave like this, a

Re: [css-d] Who is up for a CSS challenge?

2005-11-14 Thread Kevin Cannon
On Fri, Nov 11, 2005 at 01:15:28PM +, Christian Heilmann wrote: > Now it is time we did the same for the enterprise level market, where > high level CMS vendors still consider CSS too hard or not flexible > enough to maintain the style of pages based on different templates and > with varying co

Re: [css-d] emulating tables...

2005-11-03 Thread Kevin Cannon
Hey, Why not just use an actual image in there? Or else have a link in your list like this: - artist [link] - artist [link] - artist [link] - artist [link] - artist [link] Then use image replacement on the link and float it right. You could also use Definition lists either. http://www.moro

Re: [css-d] Centered Layout + attached to left edge. Possible with CSS at all?

2005-09-23 Thread Kevin Cannon
:46PM +0100, Kevin Cannon wrote: > Hey guys, > > I'm no spring onion when it comes to CSS, but creating this has me stumped. > It's a centered layout, but with columns stretching out to the left edge. > > http://www.multiblah.com/exps/css/centered_left/left.html > &g

Re: [css-d] Centered Layout + attached to left edge. Possible with CSS at all?

2005-09-23 Thread Kevin Cannon
On Fri, Sep 23, 2005 at 07:34:02AM -0700, Jim Davis wrote: > Kevin, > > The rows will go flush to the left and right if the borders are removed and > the width is changed from 99.8% to 100%. Perhaps I don't understand you > design objective. I didn't explain well. You haven't got a background co

Re: [css-d] Centered Layout + attached to left edge. Possible with CSS at all?

2005-09-23 Thread Kevin Cannon
Hi Jim, That's almost there. The challenge i'm facing is how to get the rows to go flush to the left edge. What you've done there has got everything spot on up to that point. Do you think there's any way to persuade the those rows, to go flush to the left edge? Cheers, - Kevin On Fri, Sep 23, 2

Re: [css-d] Centered Layout + attached to left edge. Possible with CSS at all?

2005-09-23 Thread Kevin Cannon
Kristina, The HTML I posted is what I want it to look like. (minus the red borders, which are just to show the tables) The 'left column' has to stretch to fill the space. The actual content, that's 750px wide, should always be centered, and the colours on the left adjusting to fill the space. T

[css-d] Centered Layout + attached to left edge. Possible with CSS at all?

2005-09-23 Thread Kevin Cannon
Hey guys, I'm no spring onion when it comes to CSS, but creating this has me stumped. It's a centered layout, but with columns stretching out to the left edge. http://www.multiblah.com/exps/css/centered_left/left.html Is that possible to do that with CSS at all? I'm struggling to figure out how.

[css-d] Preventing Border Slant, where they join?

2005-08-03 Thread Kevin Cannon
Hi, Is it possible to prevent the border slant that happens when 2 different coloured borders meet? e.g. http://www.infimum.dk/HTML/slantinfo.html I want there to be a solid edge on both side, not an angled join. I'm expecting that it's not possible, but though to check before I give in to addi

[css-d] DL styled form causing odd gap in border

2005-07-22 Thread Kevin Cannon
Hi, I've run up against a little prolem with a form styling via DLs. I've replicated it here: http://www.multiblah.com/exps/css/form_border_issue.html In IE there's a gap in the border of the #content div on both sides. (you may need to resize yuo browser once it's loaded to see the effect) The

Re: [css-d] Content being duplicated elsewhere onscreen - Highly irregular (IE only)

2005-07-05 Thread Kevin Cannon
Hey, Thanks a bunch. What an odd bug! And good spot on the fouc, I'm kicking myself for making such an basic mistake. Cheers, - Kevin On Tue, Jul 05, 2005 at 10:59:43AM -0500, Pringle, Ron wrote: > > > I'm having a highly unusual problem that perhaps other's have > > come accross: > > > > H

[css-d] Content being duplicated elsewhere onscreen - Highly irregular (IE only)

2005-07-05 Thread Kevin Cannon
Hi, I'm having a highly unusual problem that perhaps other's have come accross: Here's the example: http://www.maynoothcampus.com/meeting-rooms-test.php The content located underneath the tables is being duplicated in the left column in IE only. It's not wholy being copied there, just portion of