Re: [css-d] CSS Search form

2013-02-28 Thread Blake Haswell
Check out this quick example I put together: https://gist.github.com/blakehaswell/5055785 -- Blake Haswell http://simpleweb.com.au/ Anthony wrote: What is the best way to implement a search as below using css? If someone could post a link of an example in action that would be great. http

Re: [css-d] Zebra Stripes effect with CSS and jQuery

2013-01-16 Thread Blake Haswell
Or CSS: http://css-tricks.com/snippets/css/css3-zebra-striping-a-table/ -- Blake Haswell http://simpleweb.com.au/ Tedd Sperling wrote: On Jan 13, 2013, at 10:12 PM, Anthony wrote: The zebra stripes effect doesn't work... Did you know you could do that with php? Here's an exam

Re: [css-d] Zebra Stripes effect with CSS and jQuery

2013-01-13 Thread Blake Haswell
Anthony wrote: What am I missing? A link? It's hard to tell what the problem is from that code snippet. -- Blake Haswell http://simpleweb.com.au/ __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/ma

Re: [css-d] Vertical Space Grudge Match: br vs css

2007-05-22 Thread Blake Haswell
david wrote: > Update: after posting that, I saw someone else mention song lyrics or > poetry. Being a writer of both, all I can say is - that each line is > easily handled as a separate paragraph, with CSS controlling line > spacing and left/right margins. But each line is *not* a paragraph. Each

Re: [css-d] Vertical Space Grudge Match: br vs css

2007-05-21 Thread Blake Haswell
and have > no semantic value. Those are presentational markup that should never > have been in HTML. I disagree. In terms of song lyrics, poetry, and sometimes even mailing addresses I generally think that is a perfectly acceptable solution that *does* have semantic value and fulfils the requi

Re: [css-d] page loading in 2 visible steps

2007-05-07 Thread Blake Haswell
> The first step can display for as long as a second or two. The sylesheet is > @import. Is this something I need to tweak or do they? This is something you can fix. It is known as the Flash of Unstyled Content (FOUC). You can find out more about it at .

Re: [css-d] I've died and gone to CSS hell

2007-04-27 Thread Blake Haswell
On 4/28/07, John Wells <[EMAIL PROTECTED]> wrote: > Blake, > > Seems to prevent pushing the #content div below the #navigation div, but it > still allows overlap. Anyway to get around this? Umm... Try word-wrap: break-word; ... It's not supported in Firefox yet, but I think it's supported in IE a

Re: [css-d] I've died and gone to CSS hell

2007-04-27 Thread Blake Haswell
On 4/28/07, John Wells <[EMAIL PROTECTED]> wrote: > I'm so defeatedI need help. Have you tried using absolute positioning? Floats have a nasty habit of breaking in IE. Something like this: #container { position: relative; // position hook for #nav } #nav {

Re: [css-d] Trouble styling a complex list item (includes illustration)

2007-04-23 Thread Blake Haswell
On 4/24/07, Gwyn Perry <[EMAIL PROTECTED]> wrote: > I'm looking for the best way to do this (HTML+CSS), to work with > modern browsers and degrade nicely for others. This should work, and the code is about as minimal as it can be I guess. This is just the bare bones, and obviously you can go ahead

[css-d] Two Problems – IE6 and Opera 8

2006-09-16 Thread Blake Haswell
The page I'm talking about can be found here: http://teamredux.com/oup/index.htm The CSS file can be found here: http://teamredux.com/oup/css/screen.css The first, and most pressing problem I am having is that IE6 is creating margins in-between list items in the "Latest Newsletter Articles" lists.

Re: [css-d] overflow:auto; Used for scrolling other conent... Techniques, likes, dislikes?

2006-07-10 Thread Blake Haswell
On 7/9/06, Micky Hulse <[EMAIL PROTECTED]> wrote: > Micky Hulse wrote: > > I do not have the link anymore, but I remember seeing one example a > while back that used transparent png's to mask the top and bottom of the > div with a fade-like effect... thought that was interesting way to > spice-up a

Re: [css-d] How do you make columns reach the bottom?

2006-07-09 Thread Blake Haswell
On 7/9/06, Tammy Grossbauer <[EMAIL PROTECTED]> wrote: > I'm trying to make a column background color go all the way to the footer > without content filling the div. > This is the solution I have found multiple times on the internet: > > background: #003399 url(images/blue.jpg) repeat-y; > > Now th

Re: [css-d] Inline style works, Class does not

2006-01-27 Thread Blake Haswell
On 1/28/06, cj <[EMAIL PROTECTED]> wrote: > > my guess would be that your image is no longer referenced correctly. > make sure the url in your css is relative to the css file's location. I agree, this is the most likely problem. If the directory looks like this: --[-]my webpage [-]css --

Re: [css-d] Organizing CSS

2006-01-27 Thread Blake Haswell
On 1/28/06, Bill Moseley <[EMAIL PROTECTED]> wrote: > > which I don't want to effect other elements. > Is it possible to simply add an ID to the table element, and edit the CSS file appropriatly? table#specifictable th { border-bottom: 1px solid #666; } ___