[css-d] draggable images - can it be stopped?

2009-01-27 Thread Bill Walton
I'm working on a web app that, for much of the navigation, uses links with background images letting css control the button-blinking behavior. The primary use of the app will be with touch-screens and I've run into an issue where the images are being dragged instead of 'clicked'. Is there a

Re: [css-d] draggable images - can it be stopped?

2009-01-27 Thread Jack Timmons
On Tue, Jan 27, 2009 at 10:01 AM, Bill Walton bill.wal...@charter.netwrote: I'm working on a web app that, for much of the navigation, uses links with background images letting css control the button-blinking behavior. The primary use of the app will be with touch-screens and I've run into an

Re: [css-d] draggable images - can it be stopped?

2009-01-27 Thread Andrew Badera
But you should be able to capture the drag event and cancel it with JS ... Thanks- - Andy Badera - and...@badera.us - (518) 641-1280 - Tech Valley Code Camp 2009.1: http://www.techvalleycodecamp.com/ - Google me: http://www.google.com/search?q=andrew+badera On Tue, Jan 27, 2009 at 12:24 PM,

[css-d] Problem with table in a div

2009-01-27 Thread Sarah Atkinson
I have a table in a div. it¹s a pretty simple table it¹s the same no cell spacing... Just plain reg tabular data. But it fills the whole width of the div. however since both the td and the div have 1 pix table borders, it appears to have a 2px border around the table. Any suggestions?

Re: [css-d] Problem with table in a div

2009-01-27 Thread Kevin Rodenhofer
Why not remove the border on the div? Sarah Atkinson wrote: I have a table in a div. it¹s a pretty simple table it¹s the same no cell spacing... Just plain reg tabular data. But it fills the whole width of the div. however since both the td and the div have 1 pix table borders, it appears to

Re: [css-d] Problem with table in a div

2009-01-27 Thread Els
Sarah Atkinson wrote: I have a table in a div. it¹s a pretty simple table it¹s the same no cell spacing... Just plain reg tabular data. But it fills the whole width of the div. however since both the td and the div have 1 pix table borders, it appears to have a 2px border around the table. Any

Re: [css-d] Problem with table in a div

2009-01-27 Thread Sarah Atkinson
I have a table in a div. it¹s a pretty simple table it¹s the same no cell spacing... Just plain reg tabular data. But it fills the whole width of the div. however since both the td and the div have 1 pix table borders, it appears to have a 2px border around the table. Any suggestions? On

Re: [css-d] Problem with table in a div

2009-01-27 Thread Els
Sarah Atkinson wrote: I have a table in a div. it¹s a pretty simple table it¹s the same no cell spacing... Just plain reg tabular data. But it fills the whole width of the div. however since both the td and the div have 1 pix table borders, it appears to have a 2px border around the table. Any

Re: [css-d] Problem with table in a div

2009-01-27 Thread Simon MacDonald
Does it need to fill the div - can you put a width: on the table eg 95% -S --Original Message- -From: css-d-boun...@lists.css-discuss.org [mailto:css-d- -boun...@lists.css-discuss.org] On Behalf Of Sarah Atkinson -Sent: 27 January 2009 18:15 -To: Untitled -Subject: [css-d] Problem with

Re: [css-d] Problem with table in a div

2009-01-27 Thread Kevin Rodenhofer
Well, you'll have to eliminate the left border of the leading cells, and the right border of the last cells in each row. This should be fairly simple, if you have access to the code that generates the table. Sarah Atkinson wrote: There isn't a border on the table itself just the td tags

[css-d] Logo drops down in IE67

2009-01-27 Thread Emily Songster
Hi, I'm a graphic designer just learning how to code. I'm working on my first website using XHTML CSS and using Dreamweaver as a text editor, but hand coding to make sure everything is right. I need this website to show up consistently over the following browsers: * Windows / IE6 IE7

Re: [css-d] Logo drops down in IE67

2009-01-27 Thread David Laakso
Emily Songster wrote: I need this website to show up consistently over the following browsers: Emily Songster Attachments do ot go through the list. Put the page on a public serverand provide a clickable link to it in your post. -- A thin red line and a salmon-color ampersand

[css-d] Image Roll-Over (Second Attempt)

2009-01-27 Thread Matthew Stoneback
I am back with the same question (sorry, I asked last week and received no response... hoping for some help so I can stop scratching my head)... Please take a look at the following (validated): Here is the HTML: http://www.eddysound.com/dev/hangmenmc/ Here is the CSS:

[css-d] Fw: Logo drops down in IE67

2009-01-27 Thread Emily Songster
Sorry, I didn't include the images. This is my first time posting to this list, have mercy on me please! :) And the site is actually live at: http://www.emspacedesign.com/index.html - Forwarded Message From: Emily Songster shmemsp...@yahoo.com To: css-d@lists.css-discuss.org Sent:

[css-d] Logo drops down in IE67

2009-01-27 Thread Emily Songster
Hi, I'm very sorry about my prior post with attachments. I did read the posting guidelines, but it was a while ago, so I forgot about the no attachments part. Please have mercy on me and help me if you have some time. ISSUE#1 The logo is supposed to be flush top, along with the main

[css-d] FW: Logo drops down in IE67

2009-01-27 Thread MartyxM
Hello Emily, I've had a look at the code and H1 is a block level element so tries to take up 100% width. Make these changes to fix it (tested in both IE7 FF3): #logo - remove width:695px; #logo h1 - add width:205px; As for the second issue - full length spanning colums are usually a

[css-d] FW: Image Roll-Over (Second Attempt)

2009-01-27 Thread MartyxM
Hi Matt, In your HTML code on the IMG tags you've got the following: li id=homea href=# title=Homeimg src=img/home.jpg width= height=49 alt=Home //a/li Whilst FF ignores the width= and defaults to CSS, IE seems to assume that you mean the image was a width of zero. If you remove both the width

Re: [css-d] Logo drops down in IE67

2009-01-27 Thread David Hucklesby
On Tue, 27 Jan 2009 15:40:57 -0800 (PST), Emily Songster wrote: ISSUE#1 The logo is supposed to be flush top, along with the main navigation. But it drops down below the navigation in IE67. It works fine in Safari and Firefox. Seems to be a hasLayout problem, making the #logo clear the

Re: [css-d] Global Rules?

2009-01-27 Thread johny why
does anyone know how to apply !important globally to all properties of an element? like this?: a.myclass !important {... You can just be more specific in defining the selector html body a.myclass {... --not quite what i mean. i want to apply the !important rule to all the properties (height,

Re: [css-d] draggable images - can it be stopped?

2009-01-27 Thread david
Bill Walton wrote: I'm working on a web app that, for much of the navigation, uses links with background images letting css control the button-blinking behavior. The primary use of the app will be with touch-screens and I've run into an issue where the images are being dragged instead of