Re: [css-d] easy horizontal distribution of divs

2015-03-23 Thread Jon Reece
way in one of the articles from the links before: https://css-tricks.com/snippets/css/a-guide-to-flexbox/​ ​And if you want to dig deeper the other links are really helpful: ​https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Flexible_boxes​ http://www.w3.org/TR/css-flexbox-1/ -- Jon Reece jo

Re: [css-d] easy horizontal distribution of divs

2015-03-23 Thread Jon Reece
ks.com/snippets/css/a-guide-to-flexbox/ https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Flexible_boxes​ http://www.w3.org/TR/css-flexbox-1/ -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://w

Re: [css-d] Don't miss a space

2014-11-24 Thread Jon Reece
ing all of their pages passing validation ;) http://validator.w3.org/check?uri=http://www.w3.org/blog/dpub/2014/10/01/new-draft-for-the-requirements-for-latin-text-layout-and-pagination-published/ -- Jon Reece jon.re...@gmail.com _

Re: [css-d] "mystery" vertical space

2014-09-26 Thread Jon Reece
happening, change the display to block: .textwidget > img { display: block; } * http://en.wikipedia.org/wiki/Descender -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/

Re: [css-d] Centering menu items responsively

2014-09-05 Thread Jon Reece
nstead. Then, setting left and right margins to auto should give you the centering you want. Here's a quick example, this assumes you are setting a fixed width on the menu items: http://codepen.io/jreece/pen/EKJrd?editors=110 -- Jon Reece jon.re...@gmail.com ___

Re: [css-d] button using text and graphic

2014-09-03 Thread Jon Reece
mples/IconFont/ Of course, there are pros and cons to web fonts in general that you should take into consideration: ​https://www.google.com/?q=pros+cons+web+fonts -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lis

Re: [css-d] CSS code - is this right?

2014-08-13 Thread Jon Reece
> items in square brackets? > ​As usual, Chris Coyier has a really good write-up about this. Worth checking out: http://css-tricks.com/attribute-selectors/ -- Jon Reece jon.re...@gmail.com ​http://codepen.io/jreece/​ __ css

Re: [css-d] Chrome issue with 1 pixel spacing between

2014-07-14 Thread Jon Reece
styling, only the positioning is different. > ​Maybe a pixel-rounding issue? Bumping the width of .l-region--navigation nav > .menu > li ul.menu up to 100.5% appears to remove the unwanted separation in Chrome. -- Jon Reece jon.re...@gmail.com __

Re: [css-d] Rendering issues

2014-06-23 Thread Jon Reece
pe mentioned about other properties effects on positioning. http://philipwalton.com/articles/what-no-one-told-you-about-z-index/​ -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailm

Re: [css-d] rotate image CSS3?

2014-03-05 Thread Jon Reece
-webkit-transform: rotate(25deg); -moz-transform: rotate(25deg); transform: rotate(25deg); } The reason the codepen example works without them is because the vendor prefixes are being added automatically at run-time by a handy little script from Lea Verou > prefixfree.js (http://leaverou.gi

Re: [css-d] rotate image CSS3?

2014-03-04 Thread Jon Reece
On Tue, Mar 4, 2014 at 7:43 AM, John wrote: > Let's say you want to have an image tilt at 25 degrees...is this within > CSS3's abilities? Absolutely. Here's a demo: http://codepen.io/jreece/pen/JeIHs -- Jon Reec

Re: [css-d] Change formatting based on browser capability?

2014-02-17 Thread Jon Reece
de you could accomplish this with CSS 2.1 using display: inline: Example: http://codepen.io/jreece/pen/yznEw -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/

Re: [css-d] hiding things and bandwidth?

2014-02-14 Thread Jon Reece
igsby and furthered by Tim Kadlec: http://timkadlec.com/2012/04/media-query-asset-downloading-results/ -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/li

Re: [css-d] Site Performance

2014-02-12 Thread Jon Reece
resource for stuff like this: http://mobile.smashingmagazine.com/2013/04/03/build-fast-loading-mobile-website/ Try searching the rest of the site for more resources. -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lis

Re: [css-d] Background image on body appears to be in viewport or HTML

2014-02-09 Thread Jon Reece
p://www.w3.org/TR/css3-background/#special-backgrounds -- Jon Reece jon.re...@gmail.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

Re: [css-d] Using :focus +

2013-12-19 Thread Jon Reece
good write up on child and sibling selectors: http://css-tricks.com/child-and-sibling-selectors/ +1 Micky's links :) -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/m

Re: [css-d] The Simpsons in CSS

2013-11-15 Thread Jon Reece
aw's tagline is "Stop writing code. Start drawing it." http://macaw.co/ -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ

Re: [css-d] Good HTML / CSS3 books

2013-10-28 Thread Jon Reece
On Sun, Oct 27, 2013 at 9:00 PM, The Doctor wrote: > What would you recommend for a good HTML5 CSS3 reference? HTML5 https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5 CSS (all versions) https://developer.mozilla.org/en-US/docs/Web/CSS -- Jon Reece jon.re...@gmail.

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

2013-10-03 Thread Jon Reece
a document: HTML: CSS: // Same with CSS imports @import url("other.css"); @import url("one.css"); <-- winning [!] unless the nuclear option !important is used in one but not the other -- Jon Reece jon.re...@gmail.com __

Re: [css-d] Fwd: CSS3 Animation Top Position Percent problem

2013-08-29 Thread Jon Reece
e to do this with > percent values? > Your second example doesn't work because there is no context from which to calculate percentages (i.e. -120% of what?) . If you add a height to your container (.wrapper2) then the animation works as expected because it now has a context (height)

Re: [css-d] Extra spacing within div

2013-08-20 Thread Jon Reece
u'll need to apply block formatting since they are inline by default. Example CSS: .event span.title { display: block; } More info: http://www.w3.org/TR/CSS2/visuren.html#block-formatting -- Jon Reece jon.re...@gmail.com __ c

Re: [css-d] Label Wrap

2013-08-16 Thread Jon Reece
by floating the input and giving the label block formatting context. Example: http://codepen.io/jreece/pen/nIeFv A good explanation: http://www.youtube.com/watch?v=8YtQwv1cUVs -- Jon Reece jon.re...@gmail.com __ css-discuss [

Re: [css-d] Can I specify how much of a background image to show?

2013-07-05 Thread Jon Reece
and-tutorials/ * Why use sprites for icons when you can use web fonts? http://fortawesome.github.io/Font-Awesome/ -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listi

Re: [css-d] Can I specify how much of a background image to show?

2013-07-05 Thread Jon Reece
a user setting to be modified in order to print background images. -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discus

Re: [css-d] Nav not working

2013-07-04 Thread Jon Reece
Use the Chrome Developer Tools console tab to see them (option+command+i). The navigation buttons work as expected with javascript disabled. -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.cs

Re: [css-d] ul bullets: change color?

2013-04-14 Thread Jon Reece
g to their list item properties, so there is currently no way to style a list item bullet differently from the list item to which it belongs. Alternatively, you could use pseudo-elements (http://jsfiddle.net/leaverou/ytH5P/), or even icon fonts (!) http://cdpn.io/sKjef.

Re: [css-d] "desktop first" tutorial

2013-04-02 Thread Jon Reece
The responsive design features are opt-in. http://twitter.github.com/bootstrap/scaffolding.html#responsive -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css

Re: [css-d] Help with positioning list

2013-03-17 Thread Jon Reece
and download' button, just after it, and then continue down. > > I've been messing with display and positioning styles for hours and > hours and just cannot get this to look like I want. > This may help you come up with one solution: http://alistapart

Re: [css-d] fluid image inside div puts extra padding below

2013-03-08 Thread Jon Reece
dded below for descenders. The 2 easiest ways to prevent this from happening are 1) apply display: block to the image, or 2) add vertical-align: top/bottom/middle. -- Jon Reece jon.re...@gmail.com __ css-discuss [css-d@lists.css

Re: [css-d] trouble getting email icon to display with attribute selector

2013-02-27 Thread Jon Reece
yntax issue? -- Jon Reece jon.re...@gmail.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-

Re: [css-d] trouble getting email icon to display with attribute selector

2013-02-27 Thread Jon Reece
(Keep inadvertently replying to OP instead of reply all... so sorry for duplicate Angela.) You are using shorthand values for a non-shorthand property "background-image:" Change to "background:" and you should be good. -- Jon Reece jon.re...@gmail.com On Wed, Feb 27, 201

Re: [css-d] Recommended css font settings

2013-02-23 Thread Jon Reece
Inadvertently replied off-list earlier. Posting again in case someone else can benefit. Apologies for the dupe John. On Sat, Feb 23, 2013 at 9:41 AM, Jon Reece wrote: > > On Sat, Feb 23, 2013 at 5:31 AM, John wrote: > >> I know there's no one-size-fits-all solution but as

[css-d] help?

2012-03-06 Thread jon thornton
Thanks, but on looking at the forum I can't find how or where to submit a question, nor repond to existing questions. I'm confued about how this works, I've only used the Wordpress Forums. I read the rules, many of which I don't understand : Do not crosspost between lists. Keep your signature

Re: [css-d] double borders. A different story in IE?

2009-04-16 Thread Jon Wickström
that? URL: http://www.ekebodagis.fi/ekebo/test.html Regards, Jon Wickström __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List

Re: [css-d] double borders. A different story in IE?

2009-04-15 Thread Jon Wickström
border should look? Any which way, IE seems to do the double border a bit differently from all the other browsers. I'm still a bit curious why the border in IE overflows the UL-element in my example... http://www.ekebodagis.fi/ekebo/test.ht

Re: [css-d] Weird nav menu problem in IE6

2009-04-03 Thread Jon Wickström
original menu i seem to have the > same problem: > > http://www.dzinelabs.com/sandbox/New_site_layout/liquid.html (css > embedded) I see no trace of the matthewjamestaylor.com solution in your page. What am I missing? Regards, Jon Wickström __

Re: [css-d] center float:left

2009-04-02 Thread Jon Wickström
he middle, but I'm too new on the list to have seen the start of the thread. To me this sounds like a "centered horizontal menu"-problem. See: http://matthewjamestaylor.com/blog/beautiful-css-centered-menus-no-hacks-full-cross-browser-support I use a variation of it

[css-d] double borders. A different story in IE?

2009-04-02 Thread Jon Wickström
at it. For a test-case see: http://www.ekebodagis.fi/ekebo/test.html Regards, Jon Wickström __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incuti

[css-d] Drop Down Menus Again

2008-04-08 Thread Jon
Hello, I'm looking for a horizontal, three level, css menu (ideally) that I can use images and have curved translucent backgrounds for the drop down links. I've had a browse of dynamic drive but wondered if anyone could suggest a nice drop down that works in ie6+ and firefox. re

[css-d] Drop Down Menu and Flash

2008-03-05 Thread Jon
Hello, I've read that if you have a drop down menu which sits above a flash element the drop down will be invisible, even if you include z-index within the menus css. If so is there a work around this problem? Jon _

Re: [css-d] Need help with IMG inside a DIV

2008-02-14 Thread Jon Hughes
> The problem is easy to spot. The image of the sweatshirt goes outside > of the DIV. I've attempted to create a separate class for IMG, but that > didn't work either. How do I make the DIV expand to contain the image? Short answer: Overflow: auto; on the .product-

Re: [css-d] ASP.NET and http://validator.w3.org/

2008-02-06 Thread Jon Hughes
> The code generated by .NET is clean: > id="__EVENTVALIDATION" > value="/wEWEAKO/p/dAwKq3vLOBAKq3vLOBAL2xbW7DAKAiqHADgKK4PtQAuz/jNYFApfy > 9JYFAqj0rMEKAru0guIEAqXDn9gHAob7rXYC3KT34AsC6rHbuwQCztGz6wgChp+xBcqi3H1 > EuMYmueRpk+PhihUbpA7p" > /> > Not sure what doctype you are using, but sta

Re: [css-d] ASP.NET and http://validator.w3.org/

2008-02-06 Thread Jon Hughes
As the standardista/validatorian of the company I work for, I also have this problem. However, if you google for it, you will find that there is a way to change the default output HTML from asp.net - it's pretty technical, but it is possible. - Jon > -Original Message- > F

Re: [css-d] hand coders vs wsywig coders...I had no idea

2008-01-25 Thread Jon Hughes
> > So do most of you guys hand code? Or do you use a wsywig editor to > help? > > Thanks > Scott I use dreamweaver, but I don't use the WYSIWYG tools, I really only use it because I'm confortable with it, syntax highlighting and code completion (when I type 'http://www.css-discuss.org/mailman/l

Re: [css-d] February 12th, 2008 - a Glorious day for web designers / developers

2008-01-21 Thread Jon Hughes
ally, the update is being pushed through a microsoft server software that is for pushing updates to an array of computers (so the IT dept. can install office on all computers on the network in one fell swoop) At least that's

[css-d] February 12th, 2008 - a Glorious day for web designers / developers

2008-01-21 Thread Jon Hughes
Microsoft is pushing an update on February 12th, 2008 that will force-upgrade Internet Explorer to IE7. http://support.microsoft.com/kb/946202 has the details. Thank You, - Jon Hughes Phazm.com/notes __ css-discuss [EMAIL

Re: [css-d] ie6 select and z-index bug

2007-12-20 Thread Jon Hughes
the stacking order? > __ The first thing I would try is setting position:relative -- that makes IE6 put it in it's own "stack order" - I believe it has to be lower in the source for that to wo

Re: [css-d] Hey, I'm new to the list...

2007-12-06 Thread Jon Hughes
has just started approving new designs (from a several-year lull) and there's some really creative stuff in there. Anyhow, enjoy your stay! - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo

Re: [css-d] How will Firefox 3 affect web developers?

2007-12-03 Thread Jon Hughes
t; he has to use, instead of saving a bit of time and money by not putting in a few studs or insulation. If I was a client hiring someone to create a website, I would have the same standards. > Just some thoughts... no rocks, slings, or arrows. :o) Hey, same here! I am a bit passionate about the

Re: [css-d] How will firefox 3 affect web developers?

2007-11-30 Thread Jon Hughes
hazm.com/"; are going to be somewhat useless for some time to come, but at least you can do things like setting up mailto: to go to another service instead of the users default. For the most part, I am thinking that the enhancements made will at the very least get some more market share for

Re: [css-d] How will firefox 3 affect web developers?

2007-11-30 Thread Jon Hughes
t so it is scalable. Thanks for your input! - Jon Phazm.com/notes __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://c

[css-d] How will firefox 3 affect web developers?

2007-11-28 Thread Jon Hughes
? Anything helps, Thanks, - Jon Phazm Webdesign __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org

Re: [css-d] Fluid iFrame Height? Argh!

2007-11-13 Thread Jon Stockdill
A > b. intro - from server A > c. external material - from server B > (this may contain links going to other pages that needs to > stay inside this iFrame - but adjust in height according > to content.) > d. footer - from server A > >

Re: [css-d] Mad CSS skillz!

2007-09-20 Thread Jon Hughes
> That! Would be very clever. That's really really really clever in fact. > :) With your blessing I might try to develop that bit. HTH! :) __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wik

Re: [css-d] Mad CSS skillz!

2007-09-20 Thread Jon Hughes
> It says rendered with only HTML / CSS and I was ready to witness a > miracle, but it's still javascript doing the actual rendering. > Yea, that disappointed me as well. It shouldn't auto-solve, it should simply put those dots in on :hover (or make them anchored links, then use :visited so the

Re: [css-d] :: Opera/9.23 Mac ::

2007-09-16 Thread Jon Stockdill
off-list. The good news is I seem > to be the only one in the world for whom the issue(s) persists. > > Best, > > ~dL It renders nicely at 90%,100% and 110% in 9.5 for the mac: Version 9.50 Alpha Build 4404 Platform MacOS X System 10.4.10 --jon __

Re: [css-d] Elegant alternative to ?

2007-08-16 Thread Jon Hughes
m IE-mac */ This code makes it work in IE as well, thanks to Esther van Summeren for sending me the link! - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://cs

[css-d] Elegant alternative to ?

2007-08-16 Thread Jon Hughes
) So, the easy solution: right before closing the container div. Code: Floating Left Floating Right Does anyone know of an unobtrusive way to do the same thing without using the br/? Thank You, - Jon Hughes __ css-discuss [

Re: [css-d] how to suppress default hypertext link 'hover' borders?

2007-07-20 Thread Jon Hughes
none;}", etc -- but nothing seems > to work. I believe it's "outline" So Selector { Ouline:0; } Or possibly Ouline:none; - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/ma

[css-d] Cross-Post Accidental

2007-07-19 Thread Jon Hughes
I did not intend to cross-post "Site Check Please" - If you are replying "to all" please ensure you are only replying to the group you are on. Thank You, - Jon Hughes __ css-discuss [EMAIL PROTECTED] http:/

[css-d] Site Check Please

2007-07-19 Thread Jon Hughes
-list) you may offer. I have plenty of experience with standards and CSS/XHTML and usability, but we can all learn more! http://www.phazm.com/ Thank You, - Jon Hughes __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/ma

Re: [css-d] blue border around image links.

2007-07-06 Thread Jon Hughes
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > discuss.org] On Behalf Of Jon Hughes > so... > > img, div { > border:0; > } > __ On second thought, that may hav

Re: [css-d] blue border around image links.

2007-07-06 Thread Jon Hughes
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > discuss.org] On Behalf Of Christopher Blake > How do I remove the blue border from my image links?? They only > appear in IE6. You already have: img, div { } Just add: border:0; between the { and } so... im

[css-d] Does each @import use a new HTTP request?

2007-06-25 Thread Jon Hughes
as one request? Thank you, - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.co

Re: [css-d] Pixels, Ems and Borders, Margins

2007-06-25 Thread Jon Hughes
Pixels are the preferred unit for borders, generally speaking. Margins can be either px or em, depending on your layout. Essentially, if you want your margins to expand/contract when the font size expands/contracts, use ems. If you want it to stay the same no matter what, use px. - Jon

Re: [css-d] spacing | margin issues

2007-06-15 Thread Jon Hughes
div#main-text You have a top-margin of 10px, remove that and it lines up! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of RKN Studio Sent: Friday, June 15, 2007 11:13 AM To: css-d@lists.css-discuss.org Subject: [css-d] spacing | margin issues Hello - I

Re: [css-d] Safari for Windows

2007-06-12 Thread Jon Hughes
I wouldn't use Safari for Windows for a bit... there are SEVERAL remote command execution vulnerabilities already: http://apple.slashdot.org/article.pl?sid=07/06/12/0120230 Just a heads up -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian Young Sent: T

[css-d] Footer stick not going all the down.

2007-06-08 Thread Jon Hughes
I was doing SO good! All the way through the entire page without asking css-d for any help... then came the footer :( I tried FooterStick and FooterStickAlt and I get the same result: the footer starts at the bottom of the browser, not the bottom of the content (which would lead me to believe html

Re: [css-d] background-image (ISSUES)

2007-06-06 Thread Jon Fisher
You'll be wanting some closing tags in there, too ;) __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discus

Re: [css-d] IE bumps content to right

2007-06-01 Thread Jon Hughes
I get this error when I go to your site: Oops! Message Model-Glue: There is no known event handler for "showProcess". However, from the sound of it, it sounds like the "Double-Margin" bug. Try applying a "display: inline" to the element, and that should

[css-d] Web Standards - Why do we do it?

2007-05-31 Thread Jon Hughes
argument, as I talk to other developers who don't see the point in learning CSS, when "tables work just fine". Anyone here able to verbalize your feelings, and give me a few pointers for making the case for CSS over Table-based designs?

Re: [css-d] Adding bg images to list items

2007-05-30 Thread Jon Hughes
Roger, I'm sorry! You were right. I was looking at the wrong element in firebug. What happened was I had a selector: #affils ul, #affils ul li { Display: inline; List-style-type: none; Margin: 0; Padding: 0; /* This was overriding the padding for the li */ } Thanks for your help!

Re: [css-d] Adding bg images to list items

2007-05-30 Thread Jon Hughes
else that could be modifying it. -Original Message- From: Roger Roelofs [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 7:46 PM To: Jon Hughes Cc: css discuss Subject: Re: [css-d] Adding bg images to list items Jon, On May 29, 2007, at 7:21 PM, Jon Hughes wrote: > I have the f

Re: [css-d] Adding bg images to list items

2007-05-29 Thread Jon Hughes
Sorry, the email made this all one line. It should look like this: Affa Image-Affb Image--Affc Image--Affd Image -Affil AAffil B-Affil C-Affil D-- (description incase it doesn't work again: There is a 50x50 logo of each affiliate hovering over the nam

[css-d] Adding bg images to list items

2007-05-29 Thread Jon Hughes
eed a list for this. There is only one data element being pulled from the HTML, which is the affiliate name) Thank you all so much, - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

Re: [css-d] Centering a floating element

2007-05-29 Thread Jon Hughes
Joel, I hadn't thought of it like that. I almost want to make it a definition list, because I can still see some semanticism(sp) in that, but I suppose you are right. I will make this into a table. Thanks, - Jon -Original Message- From: Joel D Canfield [mailto:[EMAIL PROT

Re: [css-d] Centering a floating element

2007-05-29 Thread Jon Hughes
It's a list of prices, in my opinion. -Original Message- From: Joel D Canfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 2:47 PM To: Jon Hughes; css-d@lists.css-discuss.org Subject: RE: [css-d] Centering a floating element > I do NOT want to resort to tables,

[css-d] Centering a floating element

2007-05-29 Thread Jon Hughes
I submitted this before but there never was a resolution. Basically, I have a list of prices, sorted by quantity. The higher quantity you get, the lower the price. I need a way to display this without using a table, and I'm really struggling. Here is the code for a test page: (sorry, I don't ha

Re: [css-d] Centering a floating list.

2007-05-25 Thread Jon Hughes
riginal Message- From: Melianor [mailto:[EMAIL PROTECTED] Sent: Friday, May 25, 2007 2:00 AM To: Jon Hughes Hi, sorry i see now what you are trying to do, by wanting to center the list itself as well. [[ code ]] I added some code to the listing actually, just margin: 0 auto and a border to see

Re: [css-d] Centering a floating list.

2007-05-24 Thread Jon Hughes
Jens, Thank you for your reply, but it didn't seem to do the trick. With your code (as is) the list wasn't "inline" (it went down the page, instead of staying on the same line) which is what I need. I added the class "mpl" back to the li's in your case, and

[css-d] Centering a floating list.

2007-05-23 Thread Jon Hughes
First, let me apologize for not having a test page. I'm at work and am unable to access FTP. I have a list I am trying to center, here is the code to create a test page: http://www.w3.org/TR/html4/loose.dtd";> Untitled Document .mpl { float:left; display: block; text-align:center; font-size:0

[css-d] IE6 width / float problem? +1

2007-03-18 Thread Jon Hughes
t think of what is wrong with it. Anyone know why it's breaking? Thanks, - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE

Re: [css-d] css-d Digest, Vol 52, Issue 9

2007-03-06 Thread Jon Hughes
>I prefer to exclude those CCs entirely - if you don't mind. IE6 does >well with a negative margin-bottom on the outer container, since it >hides the overshooting part anyway... > >...and yes, it's a genuine IE/win bug that comes handy at times

Re: [css-d] Faux Columns not scaling to the bottom of page

2007-03-06 Thread Jon Hughes
PS I hope the original author will set a background-color. I am getting tired of getting slammed with a face full of fuchsia every time I open his page in my version of Opera :-P . --- Should be done now :) Thank you all for being so helpful. This list is so fantastic :) - Jon

Re: [css-d] Faux Columns not scaling to the bottom of page

2007-03-05 Thread Jon Hughes
--->From: Ian Young [mailto:[EMAIL PROTECTED] --->To: Jon Hughes; css-d@lists.css-discuss.org --->Subject: RE: [css-d] Faux Columns not scaling to the bottom of page --->> http://santinipackers.com/phazm/ --->> --->> I need to get the left and right columns to span to t

[css-d] Faux Columns not scaling to the bottom of page

2007-03-05 Thread Jon Hughes
http://santinipackers.com/phazm/ I need to get the left and right columns to span to the bottom of the page, This has been giving me trouble for about 2 months. Anyone have any suggestions? __ css-discuss [EMAIL PROTECTED] htt

Re: [css-d] Getting Faux columns to work in IE?

2007-02-28 Thread Jon Hughes
Jon Hughes wrote: > http://goonsquad.org/santini/site/INCOTERMS2000.html > > As you can see, this works fine in FF, but in IE, the columns only go down > to the "fold" - > > I can't figure out how to fix that... > - Jon > These deletions brought it up

[css-d] Getting Faux columns to work in IE?

2007-02-28 Thread Jon Hughes
http://goonsquad.org/santini/site/INCOTERMS2000.html As you can see, this works fine in FF, but in IE, the columns only go down to the "fold" - I can't figure out how to fix that... Anyone? - Jon __ css

[css-d] Peekaboo Bug?? Please help...

2007-02-25 Thread Jon Witts
made no difference. If anyone could help with this I would be most gratefully. From a very frustrated Jon. -- Please avoid sending me Word or PowerPoint attachments. See http://www.gnu.org/philosophy/no-word-attachments.html <http://www.gnu.org/philosophy/no-word-attachments.h

[css-d] IE Rendering Problem

2007-02-12 Thread Jon Hughes
On the left navigation for this page, the vertical spacing is the same on ALL of the pages, EXCEPT for the main page. They do use a different css file, but it has the same content. Anyone know why? This has been frustrating me for a long time now. Http://www.firemountaingems.com/ __

[css-d] IE not wrapping around a float?

2007-02-11 Thread Jon Hughes
http://goonsquad.org/hosting In FF, it looks like I want and expect it to. The text to the left stays on the left of the image. However, in IE, the text jumps down below the image. Anyone know how to fix that? Thanks, - Jon

[css-d] Unable to scroll down page in IE?

2007-01-31 Thread Jon Hughes
http://www.santinipackers.com/phazm/ Afer adding in faux columns, I can no longer scroll down my pages in IE. Anyone know a fix for this? Thanks, - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] IE-Push down?

2007-01-29 Thread Jon Hughes
-Original Message- From: Gunlaug Sørtun [mailto:[EMAIL PROTECTED] ... This means the January 28, 2007 can't flow higher than the top edge of #menu. So, you should take #menu out of #content. ... That fixed it :) Thanks so much,

[css-d] IE-Push down?

2007-01-28 Thread Jon Hughes
http://goonsquad.org/jon/ If you view this page in IE, the text below "design blog" is being pushed down past the #nav How can I fix that? It seems to be it's either clearing the div, or it's too wide, thus pushing itself down. Anyone kno

[css-d] Unable to scroll?

2007-01-27 Thread Jon Hughes
I added faux columns to my page to make the borders span to the bottom of the page, but it seems to have erased the scroll bar for Internet Explorer. The page is here: http://santinipackers.com/phazm/index.html Anyone know how to fix it? Thanks, - Jon

[css-d] Site Check! Major Overhaul!

2007-01-27 Thread Jon Hughes
esign. What do you all think? http://goonsquad.org/ I'm obviously still working on it (right now I'm working on the encyclopedia and pagination) But let me know what you think about anything and everything, I want this website to be a very informative place for everyone!

Re: [css-d] Ahhh! Why can't I find you? Degrading Popup (CSS only?)

2007-01-22 Thread Jon Hughes
Could you give a bit more detail? What "activates"? Andy Well, I can give you an example. If you have any experience with flash buttons, it's like the "hit" frame on the button. When I set a width and height for the "popup" it uses that as the area of affect when I mouse-over it, or i

[css-d] Ahhh! Why can't I find you? Degrading Popup (CSS only?)

2007-01-22 Thread Jon Hughes
I would prefer to keep this CSS only, but I'm not sure I can. Basically, I have this page: http://goonsquad.org/hosting The little "help" buttons bring you to a new page (in a new window/tab) with that question focused (via an anchor) ... I don't like that. I personally hate when sites open new

[css-d] Getting a background to scroll to bottom?

2007-01-15 Thread Jon Hughes
, - Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http

[css-d] Spanning a background image beyond the visible area?

2007-01-14 Thread Jon Hughes
t continue down. How do I fix that? (this is an image from browsershots to explain what I mean: http://browsershots.org/png/full/c2/c2537fd91b7a4a8e30bf3cae4834f274.png ) Thanks, - Jon Hughes __ css-discuss [EMAIL PROTECTED]

  1   2   >