Re: [css-d] Blue Screen

2011-10-17 Thread Michael Geary
Tony, you don't have a CSS problem. When I look at your page in IE9 and use the F12 key to inspect the DOM, the element is empty! Why would that be? Take a look at the IE conditional comment at the end of your . Is that the right syntax? http://www.google.com/search?q=ie+conditional+comments -

Re: [css-d] Pages get weird when uploaded

2011-10-09 Thread Michael Geary
On Sun, Oct 9, 2011 at 7:05 PM, John wrote: > Here are 2 pages, each built on the SAME structure: > > http://www.coffeeonmars.com/testing/index.html > http://www.coffeeonmars.com/testing/WPR_Wire.html > > > they are SUPPOSED to look like this one: > > http://www.coffeeonmars.com/testing/redo_WPR_

Re: [css-d] Separating DIVs vertically

2011-06-04 Thread Michael Geary
On Sat, Jun 4, 2011 at 4:29 PM, Keith Purtell wrote: > This may seem really basic, but I'm trying to figure out best practice > for stacking DIVs vertically. The first idea I had was a page with two > fixed-width DIVs inside a wrapper DIV of that same width. I thought the > second DIV would be fo

Re: [css-d] Use of <> brackets

2011-06-02 Thread Michael Geary
It's an easy mistake to make. Remember that CSS is a browser-side language, just like HTML and JavaScript. The code you're looking at on your server is not CSS code - it's a template (or PHP code, or whatever) that your server uses to *generate* HTML, CSS, and JavaScript. The browser doesn't see

Re: [css-d] Odd PHP/CSS Combo

2011-03-10 Thread Michael Geary
On Thu, Mar 10, 2011 at 5:46 PM, Christian Ziebarth wrote: > > Working on a site now that was developed by somebody else and am trying to > fix some of the styles. Some of the CSS is referenced in the following line > in the header: > > href="combine.php@type=css&files=widgets.std.css,basefonts

Re: [css-d] How to replace tables?

2011-02-18 Thread Michael Geary
On Fri, Feb 18, 2011 at 1:43 PM, Geoff Lane wrote: > ...if I can manipulate the innerHTML of a tbody element > then that would do the job. > > FWIW, Sarah Giles suggested another mechanism via pm, which is to get > the server-side script to send XML which is then parsed by client-side > Javascrip

Re: [css-d] How to 'unvisited' links?

2010-12-10 Thread Michael Geary
On Mon, Dec 6, 2010 at 8:07 PM, David Hucklesby wrote: > Using Firefox or Google Chrome, you have another option. Install Chris > Pederick's Web Developer extension. From the "Miscellaneous" menu, > choose the last option: "Visited Links." This lets you set all links as > "visited" or "unvisited"

Re: [css-d] Quirks compendium?

2010-11-07 Thread Michael Geary
On Sun, Nov 7, 2010 at 2:53 PM, David McGlone wrote: > > Sorry :-( I was trying to help. > > -- > Blessings > David M. > Hey, my goodness, you didn't do anything wrong! If it saves the list from one "browser check please" message it's worth it. :-) For testing how CSS and JavaScript interact, I

Re: [css-d] Quirks compendium?

2010-11-07 Thread Michael Geary
> > Michael Geary wrote: > > That looks like a session ID or some such in the URL. You probably don't >> want that. I'd recommend using just the base host/domain name: >> >> https://browserlab.adobe.com/ >> >> That would also let Adobe present

Re: [css-d] Quirks compendium?

2010-11-07 Thread Michael Geary
> > > "Michael Geary" wrote: > > >That would also let Adobe present the BrowserLab UI in your own language > >instead of English if they support it (and it looks from the URL like they > >may have other languages besides English). > On Sun, Nov 7, 201

Re: [css-d] Quirks compendium?

2010-11-07 Thread Michael Geary
On Sun, Nov 7, 2010 at 11:45 AM, David McGlone wrote: > sorry about that, that was the URL from google, but when I click on it, > it isn't the same. here's the correct one > > https://browserlab.adobe.com/en-us/index.html?sdid=EWRQH&# That looks like a session ID or some such in the URL. You pr

Re: [css-d] "Legal" format lists

2010-09-24 Thread Michael Geary
On Fri, Sep 24, 2010 at 3:36 AM, Geoff Lane wrote: > BTW, switching my doctype declaration to 4.01 strict and then running > the page through W3C's validator jogged my memory as to why I've > stayed with the transitional standard: the target attribute of the > anchor tag is deprecated and my page

Re: [css-d] Assorted CSS questions

2010-08-17 Thread Michael Geary
On Tue, Aug 17, 2010 at 2:42 PM, Erica Cavin wrote: > > I use transitional when I want to use have links open in a new window > with target="blank". Strict doesn't allow target="blank". If there's a > better way to have a link open in a new window under strict I'd prefer > to use that. target

Re: [css-d] IE gets me so upset

2010-08-13 Thread Michael Geary
David, I don't know the cause of the problem, but I can offer a troubleshooting tip or two... First, forget about the content of your .tpl files. They are completely irrelevant. When troubleshooting a problem with HTML, CSS, or JavaScript code, the only thing that can affect the browser is what t

Re: [css-d] IE button issues

2010-06-09 Thread Michael Geary
As long as we're at it, here is a *much* better version of the jQuery script from my earlier message. Instead of this: $(function() { $('input.button') .mousedown( function() { $(this).addClass( 'buttonActive' ); }) .mouseup( funct

Re: [css-d] IE button issues

2010-06-09 Thread Michael Geary
On Wed, Jun 9, 2010 at 2:41 PM, Michael Geary wrote: > > Unfortunately, that script has multiple problems... > Ah, Gabriele, I'm sorry, I didn't mean to sound so negative. You were definitely on the right track! Just had a few things to fix up to turn your idea into a wor

Re: [css-d] IE button issues

2010-06-09 Thread Michael Geary
From: David Laakso : Not sure what you mean unless are taking about IE/6.0? > If so, see: > > Eric's page uses the :active pseudo-class on an INPUT element. IE7 doesn't support this. I'm not sure about IE8. So, in IE7 at least, Eric's page does not have t

Re: [css-d] nested list -> horizontal stacked

2009-12-24 Thread Michael Geary
From: Michael Geary > > The JavaScript code can use a timer to avoid hiding and showing the > > wrong submenu inadvertently. > > > > One good way to do this is with the Superfish menu plugin for jQuery: > > > > http://users.tpg.com.au/j_birch/plugins/superfish/

Re: [css-d] nested list -> horizontal stacked

2009-12-23 Thread Michael Geary
On Wed, Dec 23, 2009 at 3:31 PM, Jack Bates wrote: > I have a nested list, > http://www.sfu.ca/~jdbates/tmp/css/200912230/ > > I want the first level list items to display as a horizontal, gray > stripe > > I want to hide the second level list ite

[css-d] Apologies!

2009-12-22 Thread Michael Geary
I suppose I've now earned a place in the CSS Hall of Shame for getting a thread closed because of my off topic, not to mention off color, comment. I sincerely apologize to anyone who took offense or had their time wasted. (And yes, I'm well aware that this apology may waste more of your time! Tha

Re: [css-d] :: makeready ::

2009-12-22 Thread Michael Geary
On Tue, Dec 22, 2009 at 8:56 PM, Theresa Mesa wrote: > I dunno...the site is causing some cognitive dissonance for me. I'm > also a fine artist, a commissioned portraitist, and textile artist, in > addition to being a graphic designer and web designer. Looking at > Russell Drysdale's work, there's

Re: [css-d] Getting CSS to work in HTML forms generated by Perl

2009-04-27 Thread Michael Geary
> From: mel myers >   > Some of the (HTML) forms on my website are generated ‘on the > hoof’ by a perl script. I ‘m having problems formatting these > pages using CSS within the perl script. The key here is to separate out unrelated concerns. You have two problems to work on, not one. But that

Re: [css-d] I am new to this so I do not know the names of the problemsI am having.doc

2008-12-13 Thread Michael Geary
> From: Dave Stewart > > I am new to this so I do not know the names of the problems I > am having. I am guessing float drop and something else. > > Please Help the page is > > http://www.osagecandles.com/cgi-bin/shopper.cgi?preadd=action&key=A00110 > > My Question > > 1.Why the duplicate

Re: [css-d] About The font size...

2008-12-10 Thread Michael Geary
In case anyone wonders why Felix and Chris and some of the other regulars keep emphasizing the point of respecting the user's font size - and designing your page to allow for different font sizes - I experienced a vivid illustration of this last night. I've been shopping for a car, mostly looking

Re: [css-d] links separated by a pipe ... pipe too tall

2008-07-17 Thread Michael Geary
> > From: Kelly Moore > > So I have a list links, separated by a pipe, a la alistapart. My > > issue, the pipes are so darned tall! Odd from a design perspective. > > Is there a way to set a height to 'border-left' ? > From: Adam Ducker > Pipes are always too tall for me too. One solution I've

Re: [css-d] Why do fonts show like this?

2008-07-13 Thread Michael Geary
> I'm doing a site that uses a black background with white > text. You can see it here (still under development - so I > know things are messed up all over the place! And a warning > - it's for a stage musician, so there is audio and video that > plays as soon as the page loads up. I'm still

Re: [css-d] Positioning vs. Monitor Size

2008-07-01 Thread Michael Geary
> From: Steve LaBadie > > Is there a way to style positioning so it works on all > monitor sizes? I use a 22 flat screen for deevloping but have > to check my pages using a 19" square monitor to see if > everything is rendering properly. Monitor size in inches has no effect whatsoever on any b

Re: [css-d] [OT] toggling visibility using onmouseover

2008-06-13 Thread Michael Geary
> Steve, > > Can you post a link to a live page? > > Also, the issue -- whatever the solution might be -- is not a > CSS issue as far as I can see. It is an issue with > JavaScript/DHTML in response to passive events (mouseover as > opposed to enter, focus, blur, click, etc.). > > ...Rob E.

Re: [css-d] combining selectors

2007-09-06 Thread Michael Geary
> > > From: Peter Weil > > > > > > Does the selector: > > > > > > body#about-us.level2 > > > > > > combine the body ID "about-us" and and the body class "level2"? > > From: Michael Geary > > Yes. It

Re: [css-d] Valid(?) document not validating

2007-07-14 Thread Michael Geary
Robert, this isn't a CSS question, and the moderators here like to to keep the list strictly on topic. So I'll save them the trouble and suggest that we move this offlist, OK? In the meantime, check line 158 where the content div is actually closed (and where you have another comment indicating su

Re: [css-d] Explorer bug or poor css technique?

2007-07-13 Thread Michael Geary
> From: rollandburn > > Thanks everybody, I really appreciate all the help and feedback! > > Gonna go install Parallels and do some searching on if I can > have multiple IE's on the same OS. One of the beautiful things about virtual machines is that you can have more than one, and set up each

Re: [css-d] Explorer bug or poor css technique?

2007-07-13 Thread Michael Geary
> From: rollandburn > > I work on a Mac and find it fairly frustrating to design for > pc's, IE6/7, coming here to ask for 'site check please' > everyweek seems abusive. I wish there were an easier way. There is. Get VMware Fusion or Parallels and a copy of Windows XP, and run Windows in a vi

Re: [css-d] image disappears in IE

2007-06-22 Thread Michael Geary
> Sandy wrote: > > http://sandyfeldman.com/test/cbs/test02.html > > http://sandyfeldman.com/test/cbs/cbs2.css > > > > When I browsercam this page to see it in IE6 and IE7 > > the logo in the top left corner of the page disappears. > > It's in its own div, on top of two other divs. Zoe wrote: > I s

Re: [css-d] font smoothing

2007-04-20 Thread Michael Geary
> I don't think there's anything you can do in the browser. > Font smoothing is called the ClearType Tuning tool in Windows > and it wasn't included automatically in IE 6 or Win XP. It > is included automatically with IE 7. This affects the whole > OS, not just the browser. It's a utility y

Re: [css-d] IE7 special code

2007-03-26 Thread Michael Geary
> > From: david > > CSS is a powerful thing, but it is intended to work with > > valid HTML (as the W3C CSS validator reports). Clean, > > basic HTML avoids problems. And conditional comments > > don't interfere with that at all. > From: Chris Ovenden > I think it's disingenuous to call conditiona

Re: [css-d] Is there a CSS solution for a wide screen monitor?

2007-02-22 Thread Michael Geary
Let's take this offlist so we don't overstay our welcome here. :-) But basically, yeah, it really is a matter of finding out what the native resolution of the monitor is and setting the OS to match that resolution. I'll get back to you later offlist with further thoughts... > This sounds almost

Re: [css-d] Is there a CSS solution for a wide screen monitor?

2007-02-20 Thread Michael Geary
Ack, my apologies for the duplicate message. I didn't realize I'd sent the first copy - sorry about that! __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.inc

Re: [css-d] Is there a CSS solution for a wide screen monitor?

2007-02-20 Thread Michael Geary
It sounds like your client simply has their monitor set to the wrong video mode, i.e. a 4:3 mode such as 1600x1200. If so, they will see this stretching in everything they do, not just web browsing. It's the same thing you see on so many widescreen TVs that are being used to watch conventional 4:3

Re: [css-d] Is there a CSS solution for a wide screen monitor?

2007-02-20 Thread Michael Geary
It sounds like your client simply has their monitor set to the wrong video mode, i.e. a 4:3 mode such as 1600x1200. If so, they will see this stretching in everything they do, not just web browsing. Also, text on the monitor must look terrible this way. If that's the case, there is nothing you can

Re: [css-d] mac testing with no mac

2007-01-31 Thread Michael Geary
> > is there a way ( some kind of emulator) to check if the > > site is safari compatible if i have no mac ? Thank you for asking instead of posting a "site check please" message! :-) > One page that I found awhile back but haven't looked into it > too much because I have a Mac is: > http://www

Re: [css-d] a:visited - font-size

2007-01-15 Thread Michael Geary
> > From: Jake Churchill > > Personally I like sites that change the weight and style of visited > > links. For example, if all links are bold, then make visited links > > normal. If all links are normal, make visited links italic. > > Something like that. I don't generally like a bunch of

Re: [css-d] FOUC problem

2007-01-10 Thread Michael Geary
> From: Zoe M. Gillenwater > > Exactly. FOUC is a very specific bug. It means that *none* of > the styles are loaded initially. I'm guessing they are, and > it's just the background image that isn't loaded > instantaneously. Again, Riva, do the styles on the fonts show > up right away? Try mak

Re: [css-d] FOUC problem

2007-01-10 Thread Michael Geary
> > I looked at your page in IE7 and FF2, and I do see a problem > > with the page loading in both browsers. The background image > > used in the sidebars flickers across the entire center area > > for a moment. I don't know if that's what you're talking > > about - I probably wouldn't call it

Re: [css-d] FOUC problem

2007-01-10 Thread Michael Geary
> Riva! Forgive me, but after your fifth message we still don't > know what "it" is. And no offense intended! There was a virtual smileyface at the end of that sentence... :-) -Mike __ css-discuss [EMAIL PROTECTED] http://www.c

Re: [css-d] FOUC problem

2007-01-10 Thread Michael Geary
Riva! Forgive me, but after your fifth message we still don't know what "it" is. I looked at your page in IE7 and FF2, and I do see a problem with the page loading in both browsers. The background image used in the sidebars flickers across the entire center area for a moment. I don't know if that'

Re: [css-d] Shadows without images

2006-11-19 Thread Michael Geary
> From: Martin Davis > > Thought you might want to check this out. This guy has made > shadows without using images. It uses a pretty good number of > divs, but it still looks pretty good. I wonder, would this > method be faster or slower than using images? I mean after > all, the browser does

Re: [css-d] Yellow input fields

2006-10-12 Thread Michael Geary
> Would someone be able to tell me why these input fields have > turned yellow...this just happened...its been looking fine > for months but today they are yellow. > > http://www.figureskatersonline.com/parkerpennington/contact.php > > http://www.figureskatersonline.com/parkerpennington/css/par

Re: [css-d] ie 7 - does it antialias text?

2006-10-01 Thread Michael Geary
> Subject: Re: [css-d] ie 7 - does it antialias text? > > It does. Well, not exactly. IE doesn't antialias text, Windows does. The only thing new in IE7 is that it turns on ClearType for IE windows by default, even if ClearType is not enabled in the Display control panel. (At least the beta did

Re: [css-d] IE display bug

2006-09-27 Thread Michael Geary
> I'm having a bit of trouble figuring out a IE bug. The main > content on the page linked below is pushed down below the > bottom of the left column. It's almost as if there was a > clear=both, but there isn't one. > There is a , but I don't have such a > class defined. This bug shows up on tw

Re: [css-d] Question re: rule syntax

2006-09-25 Thread Michael Geary
> From: Dean Champeau > > Can someone explain the difference between the following two > selectors? > > ul#navmenu > #navmenu ul ul#navmenu selects the UL element with id=navmenu. #navmenu selects the element with id=navmenu, regardless of its tagname. The only time #navmenu and ul#navmenu wo

Re: [css-d] CSS, IE, and Purity of Code -- Opinion and Question -- Thank you

2006-09-22 Thread Michael Geary
> Please pardon the rant I recently posted. This list consists > largely of knowledgeable, experienced CSS coders (excepting > members such as myself). Not a problem, I think experienced coders can learn from newbies too. :-) I don't know if Mark pointed you toward this, but there's a good pag

Re: [css-d] how high can z-index be reliably?

2006-09-08 Thread Michael Geary
> From: Peter Michaux > I haven't seen a specification on how high I can set the z-index. > Perhaps it is browser specific. Is going up to safe? > What happens in browsers if the number is too high? I don't think there is a specific limit - any integer will do. Browsers don't go around count

Re: [css-d] IE 5.0

2006-08-14 Thread Michael Geary
> From: Terry O'Leary > > ...does anyone know a site apart from browsercam where I > could test the site as i have problems with rollovers i need to > be able to interact with the page not just view a screen shot... > or do one of you have access to IE 5.0 and can you tell me / > screen shot the

Re: [css-d] EM calculator: Precision conversion? Rounding concerns?

2006-08-12 Thread Michael Geary
> > From: Gunlaug Sørtun > > Some round up and some round down, and some won't round at > > all. Some even dump all the em-decimals while they're at it. It even > > depends on how large an em-value you serve them. > From: Micky Hulse > Ah, wow... kinda sounds scary. It must be hard to perfect >

Re: [css-d] EM calculator: Precision conversion? Rounding concerns?

2006-08-12 Thread Michael Geary
> From: Micky Hulse > > I just found this neat tool: > > > > Looks like a great tool to help one create an EM-based layout... > > I have been wanting to make the move to EM's for layout, but > I do not see EM layouts being practical when it comes to > layouts that ar

Re: [css-d] CSS Float clear question

2006-08-08 Thread Michael Geary
> > From: Mark Wheeler and Michael Geary > > > > [Float clearing problems on these pages causing elements > > to be pushed down on the page:] > > http://mg.to/test/float.html > > http://blog.zvents.com/ > From: Gunlaug Sørtun > > Solution (one o

Re: [css-d] CSS Float clear question

2006-08-08 Thread Michael Geary
> From: Mark Wheeler > > I have a little problem I can't seem to figure out. Below is > a sample code of some floated divs. It all is as I would like > it, except the div that contains "MORE TEXT GOESE HERE...". I > want that to clear the previously floated divs that contain > dates and prices

Re: [css-d] Counting Pixels

2006-07-23 Thread Michael Geary
> > From: Jennifer Knowles: > > What method can be used to count pixels? > From: Paul Novitski > I often take a screenshot and paste it into Photoshop [just > one of many image-manipulation programs], where I can > zoom way in and measure small details more easily. That's a great idea; zooming i

Re: [css-d] win2000/ie5.5 :: no-show

2006-06-25 Thread Michael Geary
> From: David Laakso > > This extremely simple page is driving me nuts: > > It is fine on my end in ie555 on xp. > But a no-show in browsercam win2000/ie5.5. > Can someone please confirm there is, in fact, life on win2000/ie5.5? > > http://chelseacreekstudio.com/ca/ccs/p

Re: [css-d] Multiple class name support

2006-06-18 Thread Michael Geary
> > > I'm just wondering how well is the multi-class feature (i.e. > > > class="style1 style2 style3") supported in various browsers. > > > Also, is there any significant difference between browsers in > > > terms of how the order of class names affects the > > > specificity/style precedence? >

Re: [css-d] Difference between IE6 on different machines???

2006-05-23 Thread Michael Geary
> http://www.babyandbridalshowerboutique.com/favors1.asp > > This is a site I did some coding for (but did not design). On > my home monitor, as well as on my client's home monitor, no > white gap appears in the green body section. Nor does it > appear on her lap top. On our machines at our off

Re: [css-d] Paragraph links

2006-05-22 Thread Michael Geary
> From: Daniel Kessler [mailto:[EMAIL PROTECTED] > I reformatted question 1 and to me it looks like it's in > tags, but it doesn't work and the way you're saying that it's > not in tags makes me wonder what I'm misunderstanding. > The validator also says that I have hanging /p tags, on > qu

Re: [css-d] Paragraph links

2006-05-22 Thread Michael Geary
> From: Daniel Kessler > > I am trying to make all the links in my content section to be > a particular color. Since I noticed that all the content is > in tags, I tried to set the links for p tags to that color. I did: > p a{ > color: #1863B5; > text-decoration:none; > } > > That