Re: [css-d] help with responsive navigation

2016-11-04 Thread Greg Gamble
Looks like the class names are different, and open and close quotes are missing for class and id attributes Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Chris Kavinsky Sent: Friday, November 04, 2016 11:59 AM

Re: [css-d] Issue with bootstrap checkbox

2016-05-13 Thread Greg Gamble
Make sure there is a folder called fonts in the root, with the icons fonts. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Larry Martell Sent: Monday, May 09, 2016 9:52 AM To: CSS Discuss Subject: [css-d] Iss

Re: [css-d] Image won't scale

2016-03-07 Thread Greg Gamble
Add a style of width:100%; to the img tag. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of John J Sent: Monday, March 07, 2016 10:20 AM To: css-d@lists.css-discuss.org Subject: [css-d] Image won't scale I h

Re: [css-d] New website

2016-03-01 Thread Greg Gamble
Very confusing navigation. I clicked on a bottom link and all kinds of stuff flashed by very fast, and It took me a while to figure out how to get to them. On a Windows Phone 8.1 and IE the popup? is left aligned and covers the entire page so only the Graphic-Web-Media links are shown. The po

Re: [css-d] H6 tag is displaying "properly" in FF and Chrome but not in IE 11 using WIN 7.

2016-02-19 Thread Greg Gamble
Add a space after the percent 125% 'Times New Roman',Times,serif Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Al Fresco Sent: Friday, February 19, 2016 12:08 PM To: CSS-Discuss Subject: [css-d] H6 tag is

[css-d] CSS only popup to stay in viewport

2016-02-11 Thread Greg Gamble
I have a popup that displays when you hover over an icon. It's a glorified tooltip, with descriptive information. When the icon is near the edge of the viewport it crossover into the area that is not viewable. Anyone have some CSS only tricks to have it stay within the container div? Example

Re: [css-d] Moving mobile nav to bottom?

2016-01-27 Thread Greg Gamble
Never seen that one, and it would be awkward to use I'd think, if you even saw it. Maybe they were talking about footer links?. A collapsed nav bar works best in my opinion clicking on a nav button and having the nav bar open up to show the full navigation works best, and is most common.

Re: [css-d] [ADMIN] Hello, my friends, hello

2015-12-23 Thread Greg Gamble
I've been hoping for a return of the list. I've tried sending a few posts, but thought I was locked out for some reason ... glad to know it was only a software issue. Maybe keep it going for a while, and see if it picks up?? Greg -Original Message- From: css-d-boun...@lists.css-disc

Re: [css-d] Header disappearing in Mobile view

2015-08-21 Thread Greg Gamble
What part of the header is missing? Hamburger menu could use some bottom padding to get it off the line. Nice looking site Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Yazmin Media Sent: Friday, August 21,

Re: [css-d] Responsive with absolute positioning?

2015-06-11 Thread Greg Gamble
Little off topic, but the auto play on the video is a deal killer for me ... Another strange action, the page seems to reload when resized? This causes the video to restart too . Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discu

Re: [css-d] I dont want to receive anymore the " ....." Re: making a site responsive - first step: making it all fluid

2015-05-21 Thread Greg Gamble
Go here: http://www.css-discuss.org/mailman/listinfo/css-d From: m.hofstet...@laposte.net [mailto:m.hofstet...@laposte.net] Sent: Thursday, May 21, 2015 10:04 AM To: Greg Gamble Cc: Erik Visser; css-d@lists.css-discuss.org Subject: I dont want to receive anymore the " [css-d] ."

Re: [css-d] making a site responsive - first step: making it all fluid

2015-05-21 Thread Greg Gamble
Nokia Lumia 928 with Windows 8.1 https://onedrive.live.com/redir?resid=8CC6289D78781182!37270&authkey=!AAijgwhoBRaWByI&v=3&ithint=photo%2cpng Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Erik Visser Sent: T

Re: [css-d] Using Modernizr html classes

2015-02-03 Thread Greg Gamble
Are these browsers running on a touch-capable device? I thought 8.1 could auto detect if it's on one and act accordingly. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Tom Livingston Sent: Tuesday, February 0

Re: [css-d] child width exceeding parents' ?!

2014-03-10 Thread Greg Gamble
Looks like the H4 header is styled, not the container, which is getting a width of 998px. 980px width + 16px from padding + 2px from border? Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of John Sent: Sunday

Re: [css-d] Bootstrap CSS...

2014-02-25 Thread Greg Gamble
You might want to add the menu collapse classes, and relevant media queries. They make things easier to use in a tablet or phone viewing. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Michael Beaudoin Sent:

Re: [css-d] Will the unsemantic HTML elements B and I be soon phased out?

2014-02-20 Thread Greg Gamble
Something worth reading: http://html5doctor.com/i-b-em-strong-element/ — was italic, now for text in an “alternate voice”, such as transliterated foreign words, technical terms, and typographically italicized text (W3C:Markup, WHATWG) — was bold, now for “stylistically offset” text,

Re: [css-d] Visual styling vs. source order

2013-12-20 Thread Greg Gamble
Pages should have headers in order, with one H1 on top. Under the H1 you can have multiple H2 - H6's, but they should be nested correctly. Good: H1 H2 H2 H3 H4 H3 H4 H2 H3 H4 Bad: H2 H1 H4 H1 H4 H3 H2 There is an accessibility aspect to this too. If the text is visually not what you want,

Re: [css-d] Using :focus +

2013-12-20 Thread Greg Gamble
Nice ... helps to know what it's called when searching :-) Thanks ... Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Micky Hulse Sent: Thursday, December 19, 2013 4:00 PM To: css-d@lists.css-discuss.org S

[css-d] Using :focus +

2013-12-19 Thread Greg Gamble
I ran across some CSS that I though was pretty cool, but can't seem to find much information on its usage. What do you think? Some simple code to show first: Test Page

Re: [css-d] CSS Progress Bar Help

2013-12-05 Thread Greg Gamble
Reset the indentation on the that sits within the tag Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of SSC_perl Sent: Wednesday, December 04, 2013 5:14 PM To: CSS-D Discuss Subject: [css-d] CSS Progress Bar

Re: [css-d] Massive mouse over dropdowns--possible with CSS?

2013-11-15 Thread Greg Gamble
mouse over dropdowns--possible with CSS? 2013-11-15 20:01, Greg Gamble skrev: > Looks to be a mega-menu > > http://www.sitepoint.com/mega-drop-down-menus/ The latest fad which doesn't work for the motor-impaired? > Greg > > -Original Message- > From: css-

Re: [css-d] Massive mouse over dropdowns--possible with CSS?

2013-11-15 Thread Greg Gamble
Looks to be a mega-menu http://www.sitepoint.com/mega-drop-down-menus/ Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Colin (Sandy) Pittendrigh Sent: Friday, November 15, 2013 10:31 AM To: CSS-D Subject: [c

Re: [css-d] The Simpsons in CSS

2013-11-13 Thread Greg Gamble
http://pattle.github.io/simpsons-in-css/ is 404? -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of COM Sent: Wednesday, November 13, 2013 7:08 AM To: CSS-Discuss Subject: Re: [css-d] The Simpsons in CSS ..it also just

Re: [css-d] Two classes, two conflicting rules, which wins ?

2013-10-02 Thread Greg Gamble
OK, I'll bite :-) What is origin, weight, and specificity? I hear the terms and I think I get it ... but, to hear it from the Master would be great. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Eric A.

Re: [css-d] Two classes, two conflicting rules, which wins ?

2013-10-01 Thread Greg Gamble
Makes sense when I see it in action ... thanks. http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml"; lang="en"> CSS Cascade body { color: blue; }

Re: [css-d] Two classes, two conflicting rules, which wins ?

2013-10-01 Thread Greg Gamble
Wouldn't the first div width = 30em, and the second div width = 20em? ... C2 overrides C1 ... C1 overrides C2 Greg Gamble SBCTC - Olympia | Information Services -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Beha

Re: [css-d] Implementing Responsive Design

2013-08-23 Thread Greg Gamble
Mobile-First is a good idea, but the realities are that it’s a Desktop-First world. If you're doing any serious web browsing on a phone its capable of Mq's. And unless you put an extraordinary amount of work into it, the page performance is not much different than a desktop anyway. http://six

Re: [css-d] navigate site

2013-07-16 Thread Greg Gamble
David, As you can see from below, I'm a big advocate of accessibility when designing web pages. It's easy to do and carries over to some good best practices. Please take that into consideration when reading my comments, that go beyond what you requested ... :-) Menu not working on WP8 ( Nokia

Re: [css-d] site review: hydrogeologist

2013-07-11 Thread Greg Gamble
rgh [mailto:e...@l-c-n.com] Sent: Thursday, July 11, 2013 7:02 AM To: Greg Gamble Cc: CSS Discuss Subject: Re: [css-d] site review: hydrogeologist Le 11 juil. 2013 à 22:54, Greg Gamble a écrit : > As for the long words not wrapping, why not use: "word-wrap: break-word;" That is a

Re: [css-d] site review: hydrogeologist

2013-07-11 Thread Greg Gamble
d-wrap: break-word;" Greg -Original Message- From: David Laakso [mailto:laakso.davi...@gmail.com] Sent: Tuesday, July 09, 2013 5:59 PM To: CSS Discuss Cc: Greg Gamble Subject: Re: [css-d] site review: hydrogeologist On Tue, Jul 9, 2013 at 6:36 PM, Greg Gamble wrote: > Cur

Re: [css-d] site review: hydrogeologist

2013-07-09 Thread Greg Gamble
Curious on why you placed the Navigation at the bottom of the page? Also, why are you using all of the soft hyphens ... "­" ? Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of David Laakso Sent: Tuesday, July 09,

Re: [css-d] site review: hydrogeologist

2013-07-09 Thread Greg Gamble
No skip links Heading tags are not in order. You start with an H2, go to an H1, then to an H5 and an H6. Alt tags for images are empty. Do the images have meaning, or are they used for filler? Same image in multiple locations on the same page. Hovering over a link shows a line above the link te

Re: [css-d] Firefox & the new pixel density ??

2013-07-09 Thread Greg Gamble
Are these issue from setting the zoom with text-only option being checked? I see site layout being busted when zoom is set to text-only, but not when its unchecked. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf

Re: [css-d] background image AND background color?

2013-06-19 Thread Greg Gamble
Sorry Tom L. Sent this to you instead of the list. Anyway, you need an overlay div if you're trying to simulate layers. Makes for css that is easier to read, in my opinion. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] O

Re: [css-d] How best to revise my style sheet? Reverse it?

2013-06-10 Thread Greg Gamble
Here's a nice little app to pull out all the available classes and id's on the page ... for a fresh start. http://primercss.com/index.php Greg Gamble SBCTC - Olympia | Information Services -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...

Re: [css-d] menu floating away from me

2013-05-29 Thread Greg Gamble
What style sheet is setting the LI class ( example class name " hygiene")? Looks to me like a z-index issue. Greg Gamble SBCTC - Olympia | Information Services -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Beh

Re: [css-d] Bootstrap for big projects

2013-05-07 Thread Greg Gamble
I like it, and the "span#" tags , combined with the "Row" tag add a lot of flexibility in what you can do. As for size ... the user is only seeing one page at time, so it's relative. JMO Greg Gamble SBCTC - Olympia | Information Services -Original Mess

Re: [css-d] z-index question

2013-03-28 Thread Greg Gamble
Curious ... what Browser are you looking with to get that image. Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Chris F.A. Johnson Sent: Wednesday, March 27, 2013 6:06 PM To: CSS-Discuss Cc: Debbie Campbell Subj

Re: [css-d] z-index question

2013-03-27 Thread Greg Gamble
Take the "z-index: -1" out of footer-container Greg Gamble SBCTC - Olympia | Information Services -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Debbie Campbell Sent: Wednesday, March 27, 2013 2:19

[css-d] Page Resizing Tool

2013-03-25 Thread Greg Gamble
Little tool we use that lets you see a page in different sizes very quickly. Seems to be fairly accurate on the rendering too. http://lab.maltewassermann.com/viewport-resizer/ Greg -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.o

Re: [css-d] Responsive navigation menu as in Wordpress

2013-01-24 Thread Greg Gamble
You should check out Twitter Bootstrap: http://twitter.github.com/bootstrap/ Greg Gamble SBCTC - Olympia | Information Services p - 360-704-4376  think before printing -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf

Re: [css-d] responsive not being responsive with images

2013-01-22 Thread Greg Gamble
For what it's worth, the main menus sub-menus are not usable on an HTC 8x Windows Phone. Taping or a short press causes a flash then it collapses, Long press works, but the phones context menu overrides it so again it's not accessible. I suggest a tap to open and a tap to close. G