Re: [css-d] overflow: inheritance?

2006-03-30 Thread Adam Kuehn
but that it is not yet implemented. So, sometimes I hit the "send" button a little too soon. -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://cs

Re: [css-d] overflow: inheritance?

2006-03-30 Thread Adam Kuehn
eans that, for a given element, the property takes the same computed value as the property for the element's parent." HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/c

Re: [css-d] Question about ">" and targeting IE/Mac

2006-03-24 Thread Adam Kuehn
n to move the ID, or did you just replace it, like so: If this last is true, your selector should be this: * html>body #hNav dd So you see, it is hard to give you a straight answer unless we see the markup, too. HTH, -Adam Kuehn _

Re: [css-d] Contextual selector plus explicit class

2006-03-15 Thread Adam Kuehn
uot;, and your second selector is not getting applied. Try using .stats td.calign as your selector, instead. This has specificity of 0,0,2,1 and should therefore solve your problem (assuming I have understood the issue correctly). 1. &

Re: [css-d] Confused re: validation

2006-03-14 Thread Adam Kuehn
patch to fix that. Meanwhile, it is probably OT for the list, except to note that the default is likely to give an unexpected result here and there. -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/

Re: [css-d] List Replies

2006-03-08 Thread Adam Kuehn
han "Reply-To". I don't think Gmail's interface allows that. So the short answer is that you'll need to hit reply to all. Please see <http://css-discuss.incutio.com/?page=CssDiscussListHeaders> for more information as to why the l

Re: [css-d] Table widths not the same with image in td

2006-03-07 Thread Adam Kuehn
lared in the markup, the browser is treating it as an intrinsic width. The browser is therefore expanding the table beyond its declared width to accommodate the intrinsic content width plus the border. Declare the image width to be 722px, and it should line up. HTH,

Re: [css-d] General font size inheritance question

2006-03-07 Thread Adam Kuehn
vel or too deep, you probably need to rethink your design, anyway. Font-size should be set sparingly. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- htt

Re: [css-d] Keeping an indent with an image

2006-02-27 Thread Adam Kuehn
then you will be forced to use classes. There is no way currently in CSS to do something to a parent (or the sibling of a parent) based on the child. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/

Re: [css-d] display:inline List Items and whitespace bug

2006-02-21 Thread Adam Kuehn
on the page? I am aware of no reliable way to neutralize this behavior in CSS. Sorry, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio

Re: [css-d] Approaching Designing for Multiple Browsers and Versions

2006-02-21 Thread Adam Kuehn
is, but just for purposes of the archive, he wrote this exactly backwards. IE/Mac FAILS to read URLs enclosed by SINGLE quotes. It DOES read URLs enclosed with double-quotes or no quotes at all. HTH, -Adam Kuehn __ cs

Re: [css-d] Centering a List Menu

2006-02-20 Thread Adam Kuehn
the reset the text-align value for child elements that need a different value.) HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.

Re: [css-d] li gap doesn't show up in Safari, Mac IE

2006-02-19 Thread Adam Kuehn
allow the header div to grow with text resizing. This way you can also avoid IE hacking. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://c

Re: [css-d] List styles

2006-02-15 Thread Adam Kuehn
dcoded) counter out of the normal block box. You may have to tweak some margin/padding values on the list and list items to make all browsers display the same. >Thanks for thinking about it, though. You're welcome. 1. <http://www.w3

Re: [css-d] List styles

2006-02-15 Thread Adam Kuehn
nd just hardcode it into the HTML, setting the list-style-type to none. I don't know of any other practical way to do what you are asking. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailma

Re: [css-d] z-index? content menu hiding behind header

2006-02-07 Thread Adam Kuehn
ight be one way to help the community. In any case, since we know that line-height: 2; is correct, I would argue that there is no need whatever to make the validator happy. It is a tool to help you, and you should feel free to ignore it whenever you are certain it

Re: [css-d] Line-height in drop-down not adjustable

2006-02-06 Thread Adam Kuehn
nt manner? You can't put conditional comments directly into a stylesheet at all. Typically, they are used to serve up a link to an independent IE-only stylesheet, like this: Note that the conditional comments do not appear inside a style block, but are used directly in the

Re: [css-d] Problems with IE 7

2006-02-02 Thread Adam Kuehn
e sure to document that you are testing IE7 *beta 2*. That way as Microsoft releases updated beta versions, we will have our bug reports properly catalogued by applicable version, and can delete any reports of issues they fix (or can update the entries if the fixes are only partial). Thanks

Re: [css-d] Stop the cascade

2006-02-02 Thread Adam Kuehn
ere is no way to "uninherit" or "zero out" a property value. Once a property has a value, you need to explicitly override that value. I don't know if that makes a difference to you or not, but I wanted to note it since there are times when this can be an issue (espe

Re: [css-d] Using "display: inline;" for navigation lists

2006-01-26 Thread Adam Kuehn
uot;block" and therefor don't take up 100% width. If they are links, inline display means they are not clickable over the entire width and height; only the text itself can be clicked. Floating links are clickable anywhere. On the

Re: [css-d] CSS validator confusion

2006-01-26 Thread Adam Kuehn
you overlooked a possible problem. See the code validation page on the Wiki for more info. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-d

Re: [css-d] Inconsistent unordered list

2006-01-25 Thread Adam Kuehn
d be: item1 item2 item2a I'm guessing that will fix most if not all of your problems. If it is any consolation, this is an easy and quite common mistake. The validator is your friend. HTH, -Adam Kuehn _

Re: [css-d] Overflow problem in FF

2006-01-23 Thread Adam Kuehn
he right is hidden. But this behavior, too, is identical in both browsers. What differences do you see? Perhaps you might post a complete page, in case something else is interfering. -Adam Kuehn __ css-discuss [EMAIL PROTECT

Re: [css-d] Organizing CSS

2006-01-23 Thread Adam Kuehn
declarations in the stylesheet, the import statement must precede them. 1. <http://www.w3.org/TR/CSS21/syndata.html#at-rules> HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/lis

Re: [css-d] font-size consistency

2006-01-18 Thread Adam Kuehn
hich apply here, as well. You have many font-size declarations scattered throughout your stylesheet. In general, you should be careful not to over-declare your fonts, especially with chained selectors, as you have done here. I didn't specifically check your second example, but I

Re: [css-d] right and left justify

2006-01-13 Thread Adam Kuehn
me reason why you cannot use a table, you could float each item to the left. The floated times would get text-align: right, and the floated descriptions would get text-align: left. Each floated time would also need clear: left applied. Apply widths, padding, and margins as needed. But do co

Re: [css-d] Question about the adjacent selector

2006-01-13 Thread Adam Kuehn
ything conflicting, or you have coincidentally over-ridden the bad effects. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/

Re: [css-d] Changing Span in link on hover

2006-01-13 Thread Adam Kuehn
t of properties you can use to trigger the redraw in IE/Win: <http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp>. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/m

Re: [css-d] Question about the adjacent selector

2006-01-12 Thread Adam Kuehn
oth classes. Zoe's method will apply the rule to any element with *either* class in all browsers. That is probably not what you want. FWIW, support for multiple class selectors is supposedly on the fix list for IE7. HTH, -Adam Kuehn __

Re: [css-d] Specificity Problem

2006-01-10 Thread Adam Kuehn
Philippe Wittenbergh wrote: >On 10 Jan 2006, at 3:21 am, Adam Kuehn wrote: > > >>> [1] http://www.littleandreid.com/mentaidyn/about > >>> > >>> > >>> Home > >>> >>> id="menu_about">About > >>> [-

Re: [css-d] Specificity Problem

2006-01-09 Thread Adam Kuehn
At 02:56 PM 1/9/2006, Adam Kuehn wrote: >At 02:11 PM 1/9/2006, CJ Larson wrote: >> > > > id="menu_about">About >> > >> > Note we have just changed the class="active" to id="active". Your >> > global CSS file would the

Re: [css-d] Specificity Problem

2006-01-09 Thread Adam Kuehn
ive {background-color: foo;} > >One note about this: now he has two IDs instead of one ID and one >class. Which is, of course, perfectly valid. There is nothing wrong with attaching two IDs to a single element, so long as the attribute values are unique within the document. -Adam K

Re: [css-d] Specificity Problem

2006-01-09 Thread Adam Kuehn
s your selector a whole level of specificity higher. See <http://www.w3.org/TR/CSS21/cascade.html#specificity> for more information. There is at least one CMS system that doesn't like to generate elements with ID attributes. However, that is a flaw with the CMS, not with this use of

Re: [css-d] Specificity Problem

2006-01-06 Thread Adam Kuehn
7;t, and it is worth noting the correction for users searching the archives. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Font-size keywords

2005-12-23 Thread Adam Kuehn
ke it best for you. Read and decide for yourself. Good luck, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Box Model

2005-12-21 Thread Adam Kuehn
till need the full URL to avoid quirks mode, deductions from the Microsoft pages notwithstanding. QED. -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-di

Re: [css-d] Box Model

2005-12-21 Thread Adam Kuehn
r HTML4.01 or XHTML1.0, and if [there is >nothing - not even whitespace] preceding the doctype, then IE6 will >render in "standards-compliant" mode. -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-di

Re: [css-d] css speed

2005-12-15 Thread Adam Kuehn
h progressive rendering (i.e. speed) in mind. There are a few CSS3 properties that may have more significant effects, but for now, if browsers support it, it is probably fast enough not to make much difference. Mind you, this is anecdotal and somewhat speculative. I know of no formal testin

Re: [css-d] class vs. id

2005-12-14 Thread Adam Kuehn
any case, this particular issue is largely a matter of choice, and either way is not clearly better than the other. Personally, I use both methods from time to time, depending on the particular context. -Adam Kuehn __ css-

[css-d] IE7 and Display Table

2005-12-14 Thread Adam Kuehn
I can do that pretty well all by myself.) -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Notation

2005-12-12 Thread Adam Kuehn
the row if you had some rows which you wanted to style differently from other rows in the same table. The way you chose will distinguish "tclass" tables from other tables which don't have the class, but will otherwise style all the rows within each "tclas

Re: [css-d] display: table-cell --- why?

2005-12-08 Thread Adam Kuehn
while display: table-cell and its siblings could be useful in certain places in the real world, they actually aren't, simply because the vast majority of the population uses a browser that doesn't support those values. Maybe soon. -Adam Kuehn __

Re: [css-d] with padding inside that has "overflow: auto"

2005-12-08 Thread Adam Kuehn
perhaps they won't count for you. Do them, anyway. :-) -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Unable to fix font size in specific class

2005-11-30 Thread Adam Kuehn
w quickly one can learn that way. Positioning in CSS is a "problem" in the sense that it is the steepest part of the CSS learning curve. But if you hang in there, you'll be able to do everything you could with tables

Re: [css-d] Classes vs. ids

2005-11-29 Thread Adam Kuehn
. See <http://css-discuss.incutio.com/?page=ClassesVsIds>. It is worth your time to just browse the Wiki for awhile. For the situation you describe, either will work, but the ID is definitely more specific. See <http://www.w3.org/TR/CSS21/cascade.html#specificity> for the details

Re: [css-d] Inline styles vs. !important

2005-11-18 Thread Adam Kuehn
rom the text, and probably the most desirable in actual practice. Is that clear as mud? -Adam Kuehn Durham, NC __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] What´s wrong

2005-11-18 Thread Adam Kuehn
k anything concrete has made it into the draft specs, yet, and I'm certain nothing useful is supported by actual browsers at this time. -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.or

Re: [css-d] can't get images to float in IE5 Mac

2005-11-18 Thread Adam Kuehn
ion, Philippe. -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] can't get images to float in IE5 Mac

2005-11-17 Thread Adam Kuehn
make IE happy, you will need to declare a width on the float. HTH, -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

[css-d] ADMIN: Re: MovieMadeProductions.com

2005-11-14 Thread Adam Kuehn
discuss.org/policies.html>. Let's keep the posting civil, please. Thank you, -Adam Kuehn CSS-D List Moderator __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ

[css-d] ADMIN: Re: Too Funny, and (yes) really off topic...

2005-11-14 Thread Adam Kuehn
user, and > > neither is the bytes used (wasted?) on transmitting it. > >To wrap up: >http://www.kuro5hin.org/story/2004/2/15/71552/7795 And let's really have that be a wrap on this off-topic thread, please. Thanks, -Adam Kuehn CSS-D List Moderator ___

Re: [css-d] Use of non-standard font in declaration?

2005-11-11 Thread Adam Kuehn
ure "ideal" font, a reasonably generic specific fall-back, and you'll add the really generic fall-back. That part is done completely correctly, even if the named fonts are quite different. The trick is in making a flexible layout that accommodates this way of doing business.

Re: [css-d] How to extend background-repeat:repeat-y to entire height of container?

2005-11-03 Thread Adam Kuehn
ing things up will fix the problem. On the other hand, if I clean up after things are working, occasionally something will break. As a general method of working, I find it is best to keep things ordered as I go along. HTH, -- -Adam Kuehn _

Re: [css-d] background color/color declarations - why?

2005-10-26 Thread Adam Kuehn
y css on these issues. I'm inclined to ignore these issues with the validator, but at some point I'm going to have to explain to my bosses exactly WHY the code doesn't validate and why that's ok. Just to reiterate, the code DOES validate, which should go a long way toward

Re: [css-d] Mac Problem (site causes browser crash)

2005-10-25 Thread Adam Kuehn
mething could go wrong that can't be mechanically checked. If a human check shows everything is fine, the warnings can be safely ignored. If there is some other reason for having all those inherits in there, hopefully Phillipe's pages will suggest s

Re: [css-d] Can I make my link attributes differ by table?

2005-10-21 Thread Adam Kuehn
doesn't work for some reason, post the URL to the forum and we can take a closer look to see if something is interfering. HTH, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

ADMIN: Re: [css-d] Website Copying was (Hummmmmm :0))

2005-10-21 Thread Adam Kuehn
ie-in with CSS does not make this thread germane to the list mission. The thread should still come to an end, please. Thanks, -- -Adam Kuehn CSS-D List Moderator __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/ma

Re: [css-d] Website Copying was (Hummmmmm :0))

2005-10-21 Thread Adam Kuehn
mailing list. Please send your responses to Trevor off-list, and feel free to continue your discussions there. There should be no more posts on this topic hitting the list. Thanks, -- -Adam Kuehn CSS-D List Moderator __ css

Re: [css-d] Round Corner Tabs...

2005-10-21 Thread Adam Kuehn
to have a vendor implement a spec-in-progress to prove that the spec itself is intelligible and implementable. That helps the whole community. Once the spec stabilizes, the vendor can simply remove the prefix. Mozilla is doing this in exactly the correct way. -- -

Re: [css-d] Simple Question About " > " Sign

2005-10-19 Thread Adam Kuehn
n of the spec carefully. It is very important to understanding how CSS works. HTH, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

RE: [css-d] Line break issues

2005-10-19 Thread Adam Kuehn
s others have suggested. Sorry there is no easy answer for this particular problem. -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incu

RE: [css-d] Line break issues

2005-10-19 Thread Adam Kuehn
class or use some kind of contextual selector to single out the ones you want. The most practical solution will depend on your specific situation. If you can provide some more details (best: provide a URL), we could express more definite opinions as to the best method. -- -Adam Kuehn

RE: [css-d] Any complete resources for inline CSS?

2005-10-19 Thread Adam Kuehn
1/cascade.html#specificity> Good luck, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] don't want image on last link!

2005-10-18 Thread Adam Kuehn
ound: none; } HTH, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

ADMIN: Re: [css-d] scrollbars in div on MAC

2005-10-18 Thread Adam Kuehn
ot that's a "good" thing to do) then this is the place for you. Thanks, -- -Adam Kuehn CSS-D List Moderator __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- htt

Re: [css-d] line in nav

2005-10-18 Thread Adam Kuehn
color: #039; border-bottom: 1px solid #039;} Add the following to your specific rule for the navigation: ul#main-nav li a { border-bottom: none; } I believe that should take care of it, but let me know if not. HTH, -- -Adam

Re: [css-d] First Post. Yay! Browser Discrepancy

2005-10-12 Thread Adam Kuehn
TW, I'd remove those tags, too. Use bottom margin or padding to get the spacing you need. HTH, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discu

ADMIN: Re: [css-d] Say no to CSS hacks with branching techniques

2005-10-07 Thread Adam Kuehn
ead off-list now, please, and spare our servers the extra load. Michael summed up the thread arguments pretty well, and unless someone has some other practical application aspect that applies and has not yet been mentioned, everyone should probably be willing to leave it there. Thanks, -- -A

Re: [css-d] conditional images

2005-10-06 Thread Adam Kuehn
lements in between the classed divs (arbitrary text nodes would be OK, but not actual elements). We don't know the full layout, so this method may or may not be suitable for Grillo's needs. Having said all that, I agree with Sam that the best method (and probably the only cross-browser m

Re: [css-d] Browser and platform compatibility

2005-09-28 Thread Adam Kuehn
MPUTED value of a line-height to inherit should you use a unit value. Using units on line-heights is a very common way to break a website. -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listin

Re: [css-d] Validator Woes

2005-09-27 Thread Adam Kuehn
syndata.html#value-def-length> -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Weird inheritance issue?

2005-09-21 Thread Adam Kuehn
tor with .photoBlock will always apply, regardless of cource order. HTH, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Warnings in CSS validation

2005-09-20 Thread Adam Kuehn
particular page and make sure. More information is available on the Wiki: <http://css-discuss.incutio.com/?page=CodeValidation>. HTH, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/li

Re: [css-d] IE Style change

2005-09-07 Thread Adam Kuehn
installed on this browser? That is usually where unexplained bits of yellow background come from. Disable auto-fill, and that should take care of it. HTH, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css

RE: [css-d] Header Width

2005-09-01 Thread Adam Kuehn
times it doesn't matter so much. Incidentally, if they are not floated, the clear is irrelevant unless there are preceding floats. The ability to clear can be another advantage or disadvantage of floating, depending on the layout. HTH, -- -

Re: [css-d] Header Width

2005-09-01 Thread Adam Kuehn
your particular project, them the explicit assignment of the "auto" value would certainly be a fine idea and in any case will not harm the display in newer browsers. -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] htt

Re: [css-d] Header Width

2005-09-01 Thread Adam Kuehn
filters to use for this purpose, see the Wiki.) -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org --

Re: [css-d] Now possible: CSS Constants

2005-08-31 Thread Adam Kuehn
indeed smart enough to set and send correct caching headers with the files, so your server won't have to pre-process every CSS call but will update when you change the contents of the PHP files. Very slick. -- -Adam Kuehn _

Re: [css-d] setting "initial height" for a DIV: is it possible?

2005-08-31 Thread Adam Kuehn
27;t mind using hacks (see the Wiki), you can set the min-height, and then feed a height value only to IE/Win. That should make IE do what you want, too. Good luck, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.

Re: [css-d] Question about the list - Public apology

2005-08-30 Thread Adam Kuehn
Scott Glasgow wrote: Adam Kuehn wrote: Scott Glasgow wrote: If I hit Reply All, it does go to the list, but sends a separate copy to the sender (which can be annoying to the recipient, I would imagine). [...] This page was written for you: <http://css-discuss.incutio.com/?p

Re: [css-d] Question about the list

2005-08-29 Thread Adam Kuehn
t;Avoid duplicate copies of messages?" Set this to "Yes" if you are one of those people who would be annoyed by getting both a list copy and a personal copy of a Reply To All message. Now all should be right with the world. Presented as a public service, --

RE: [css-d] Hacks, to use them, or not

2005-08-23 Thread Adam Kuehn
on Al at all. It's just that this topic has been known to reach Holy War status. I'd rather not see that on the list. Very messy. Thanks, -- -Adam Kuehn CSS-D List Moderator __ css-discuss [EMAIL PROTECTED] htt

Re: [css-d] CSS Height Question

2005-08-23 Thread Adam Kuehn
you want in some other way. I don't have IE to play with right now, but perhaps someone else knows a solution for that browser off the top of their head. Good luck, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http:

Re: [css-d] Firefox DocType blues

2005-08-11 Thread Adam Kuehn
y see cross-posts. If you really need to post to more than one list, send a completely separate message to each. Thanks, -- -Adam Kuehn CSS-D List Moderator __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/ma

Re: [css-d] proper syntax for background-repeat x and y?

2005-08-11 Thread Adam Kuehn
f questions, for those who don't want to wait for an answer on the list. -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incuti

Re: [css-d] How to get one tag to inherit the same style as another

2005-08-10 Thread Adam Kuehn
e may be a JavaScript way to read the default style on and then apply them to the header. That's out of scope for this list, however. Good luck, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailm

Re: [css-d] IE/Mac is the bane of my existence

2005-08-10 Thread Adam Kuehn
specific site, IE/Mac may well not be worth the trouble. Good luck, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported

Re: [css-d] targeting readonly form elements

2005-08-09 Thread Adam Kuehn
ts based on the readonly attribute? In IE with only CSS? No. As you noted, you can do it with CSS if you add classes, and you can also use Javascript. But as of now, IE does not accept attribute selectors. Sorry, -- -Adam Kuehn ___

Re: [css-d] Firefox: little bug with text-transform and "ß"

2005-08-05 Thread Adam Kuehn
testing on other Mac browsers (Opera 7.54, Safari 2.0, and IE 5.2), none of them display the cut-off bug, but none transmutes the "ß" character to "SS", either. Damned if you do, damned if you don't, it seems. -- -Adam Kuehn __

Re: [css-d] Site Collapses

2005-08-05 Thread Adam Kuehn
ou want. Your call as to whether or not that method offends your sensibilities. Some people really hate doing it that way, but it does work. -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/li

Re: [css-d] Visual Artifacts in IE6

2005-08-04 Thread Adam Kuehn
Sam Brown wrote: --- Adam Kuehn <[EMAIL PROTECTED]> wrote: Are there comments in your style sheet? If so, remove them and the problem should go away. Note, this bug is triggered by comments in the HTML (between floated elements), not by comments in the style sheet. Yes, that

Re: [css-d] Visual Artifacts in IE6

2005-08-04 Thread Adam Kuehn
ain place to go when you are looking for an IE bug. Good luck, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Odd boxing with html form

2005-08-01 Thread Adam Kuehn
this kind of error is to validate your code before posting. See <http://css-discuss.incutio.com/?page=CodeValidation> for more on that subject. Good luck, -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-dis

Re: [css-d] IE5/Mac hates my site

2005-07-26 Thread Adam Kuehn
ll get you pointed in the right direction. -- -Adam Kuehn __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Background Images in Mac OS X / IE 5.x

2005-07-25 Thread Adam Kuehn
master/redesign/ I explicitly deny being smarter than you, but I do have some experience with IE/Mac, which does not like URLs enclosed in single quotes. Use no quotes or double quotes in your image URLs, and everything will work just fine. Nice site, BTW.

Re: [css-d] Formatting ordered lists

2005-07-25 Thread Adam Kuehn
ution. The list marker uses the same styling as the list item, but you need to make them different. The only way to do that is to add an enclosing element (such as a span) for the list item contents. Sorry about that, -- -Adam

Re: [css-d] ADMIN: Music Files and CSS

2005-07-21 Thread Adam Kuehn
button. That is all, -- -Adam Kuehn CSS-D List Moderator __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Reverse Stacking Order

2005-07-21 Thread Adam Kuehn
ome other behavioral language) to discover the EPL and assign it as a z-index value. In any case, since we're talking about stuff that isn't even drafted, yet, let alone implemented, perhaps we should take this off-list. -- -Adam Kuehn

Re: [css-d] Reverse Stacking Order

2005-07-21 Thread Adam Kuehn
to go with that. I don't even see that what you are asking for is even in any of the CSS3 drafts, although the Presentation Levels module comes closest. Without "decrement", though, you'd still need to explicitly de

Re: [css-d] Testing: Win inside OsX...

2005-07-21 Thread Adam Kuehn
ar Windows user. If you are careful, you should be fine. 1. I intentionally am not discussing whether or not that is a good practice. That's a personal decision not particularly relevant to the list. Good luck, -- -Adam Kuehn ___

  1   2   >