Re: [css-d] IE 7 Win issue

2012-07-06 Thread HallMarc Sales
> Is IE 7 for Windows still being paid attention to by developers? > If so, I have an issue at this link: www.coffeeonmars.com/testing/index.html > > with widgets being cut off at the top. IE 8 gets it right; 7 shaves off the top > portion... > > Looking in Firebug, I don't see any conflicts tha

Re: [css-d] IE 7 Win issue

2012-07-06 Thread HallMarc Sales
> Is IE 7 for Windows still being paid attention to by developers? > If so, I have an issue at this link: www.coffeeonmars.com/testing/index.html > > with widgets being cut off at the top. IE 8 gets it right; 7 shaves off the top > portion... > [>] first; you have a couple of typos in the font-

Re: [css-d] css3 animations - page check please

2012-06-26 Thread HallMarc Sales
Sorry I have only a second to jump in - [>] First do you know about caniuse.com? Great resource for seeing what is supported and by whom. Next, Opera doesn't support the animation property yet try something like -o-transition: background-color .25s ease-out; just add :hover to the rule with the

Re: [css-d] help?

2012-03-06 Thread HallMarc Sales
> -Original Message- > From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css- > discuss.org] On Behalf Of jon thornton > Sent: Tuesday, March 06, 2012 3:53 PM > To: css-d@lists.css-discuss.org > Subject: [css-d] help? > > Thanks, but on looking at the forum I can't find

Re: [css-d] Custom Theme Problem

2012-03-06 Thread HallMarc Sales
Try this instead p.location { text-align: left; padding-left: 20px; margin: 0; padding: 12px 0 12px 20px; } Margins apply to the outside of an element so no background is inherited by the "space" created while padding is applied inside the element and as such is wi

Re: [css-d] @font-face issue in PC browsers

2012-03-05 Thread HallMarc Sales
> I'm working on a site using @font-face for font styling, and running into a > problem with PC-based browsers (both IE and Firefox). For some reason, its > choking on the @font-face css, and not only not rendering the fonts, but also > killing the rest of the CSS. Anyone run into a similar problem

Re: [css-d] IE Compatibility mode - forced to not appear

2012-01-13 Thread HallMarc Sales
I forgot to mention this site http://caniuse.com/ __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss

Re: [css-d] conditional styles don't seem to apply - why?

2012-01-13 Thread HallMarc Sales
> > What am I doing wrong? Is the the expected behavior ? > > A link to the page in question might help if you can provide it __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d Li

Re: [css-d] IE Compatibility mode - forced to not appear

2012-01-13 Thread HallMarc Sales
> Any known way to force the browser to not use compatibility mode at all ? > (without going to each bad browser users and yelling at them that, despite > not being there fault on such a stupid decision, they still shouldn't use it) ? > Use and this will keep the Compatibility button from appear

Re: [css-d] iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
> __ > > > > Same here on iPhone 4/iOS5. I have to pinch it down to fit in > landscape. Wont fit at all in portrait. > [>] Aha. I am seeing that this is not the same page as the one I have been referencing. I do not think the

Re: [css-d] iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
> I hope that I am using the wrong url but the gentlepeople that produced this > page > don't have clue on how to hit portable devices... > > The page throws an enormous horizontal scrollbar in iPad portrait mode; and, > an enormous scrollbar in both portrait /

Re: [css-d] iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
OK so in my excitement; don't want to say how long I've been researching this issue, I see I forgot to include a couple of key points: 1) I am working on a site built with WordPress and various plugins and the pages were exhibiting the iOS "Bug" 2) I happen to look at the Nivo demos on an iPhone an

Re: [css-d] FIXED: iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
OK I found what was causing the issue; Nivo Slider CSS, specifically this: [>] .nivo-html-caption { display:none; } I changed it to .nivo-html-caption { visibility: hidden; } and the bug goes away for this page. Anyone enlighten me as to why this would be?

Re: [css-d] iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
> -Original Message- > From: Tom Livingston [mailto:tom...@gmail.com] > Sent: Thursday, January 12, 2012 8:47 AM > To: HallMarc Sales > Cc: CSS Discuss > Subject: Re: [css-d] iPhone/iPad iPhun > > For what it's worth, that page is showing the orientation bug o

Re: [css-d] iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
> you set the width of your containers: header, footer, #main to 960px. > The default width of the viewport on iOS is (...drumroll...) 980px. > > Your layout fits in that, although it is scaled down in a way. > > > Yes, I am aware of that. Here is a head scratcher for you, remove the text from b

Re: [css-d] iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
And just so we are clear, there isn't one thing in the code for this page, JavaScript or otherwise that I can find that targets the iOS specifically. For all appearances it is just put together like you would any other page; 960px wide (bit narrow IMO yet necessary for iOS) which leaves the ques

Re: [css-d] iPhone/iPad iPhun

2012-01-12 Thread HallMarc Sales
Hmmm.. let's try this again. Can anyone tell why this page, 960px wide, will fit (well almost 100% but considering it's the iOS!!! I'll take it.) in the viewport no matter which way you rotate your phone or how many times you rotate it or which orientation your phone was in to begin with. And did I

Re: [css-d] iPhone/iPad iPhun

2012-01-09 Thread HallMarc Sales
Thank you for the responses. Nothing that readily addresses why this page works so well. I have yet to determine what it is about it that iPhone loves so well. None of the solutions provided in the responses have been used in order to achieve the result; but thanks all the same. Maybe I wasn't cl

Re: [css-d] iPhone/iPad iPhun

2012-01-09 Thread HallMarc Sales
> > Oops I guess I should have read your whole message. I think u are looking for > the viewport meta. Can't find the code right now, sorry. :- P > > No, actually you had it right the first go. That is the bug in the Apple iOS that they just seem happy to leave in... I will read more from the l

[css-d] iPhone/iPad iPhun

2012-01-09 Thread HallMarc Sales
Hello all, I am finally creating a theme for a web client for the mobile devices and in doing so I noticed that my site is presenting and behaving as expected on everything but iPhone4/4s. I will deal with iPad later. Besides the Apple Developer docs, where can I find good intel on iOS quirkines

Re: [css-d] Drop Down Menu On Hover Testing Please - IE 7

2011-09-12 Thread HallMarc Sales
> > In IE7 the dropdown hangs (stays open) if mouse-pointer is moved > > anyway but straight upwards, and as the image... > > > > ...shows the list-items in the dropdown don't line up properly in IE7. > > > regards > > Georg > > I can't reproduce t