Re: [css-d] Site Revision

2010-12-03 Thread Climis, Tim
Lighten up a little, organize it, and make it readable-- or you'll put I don't understand you comment: Lighten up a little I think he means simply that your page is dark. Contrast your beige patterned backgrounds (which look remarkably like my office wallpaper, btw) with his solid white.

Re: [css-d] Span Style Inside Div with PHP Code

2010-12-03 Thread Climis, Tim
I am using this approach (rather than just change the registercolright class) because each page where that class is used requires some adjustment and I'd prefer, if possible, not to create a large number of similar classes. Then don't Apply multiple classes instead. div

Re: [css-d] Span Style Inside Div with PHP Code

2010-12-03 Thread Climis, Tim
Thanks, Tim. Yes, you are quire right about the proliferation of classes, and I did not know about applying a second class. This has been the result of learn as I go and it seemed easier (at the time) to simply copy a class and make a few adjustment. We all learn as we go. Just some of us

Re: [css-d] Outlook 2007 and DL/DD tag

2010-12-01 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of Albert van der Veen Sent: Wednesday, December 01, 2010 8:46 AM To: CSS Discuss Subject: [css-d] Outlook 2007 and DL/DD tag Hi all, I'm setting up an HTML

Re: [css-d] H tags and style

2010-11-22 Thread Climis, Tim
And an inside page might be...? p.tagline {font-size: 100% } /*source document title: solid bricks*/ h1{font-size: 125%} /*sub: solid colored bricks*/ h2 {font-size: 150%}/*sub: solid umber colored bricks*/ h3 {font-size: 150%}/*sub: solid burnt sienna colored bricks*/ h4 {font-size:

Re: [css-d] [+] Re: OK to insert block-level tag inside div?

2010-11-22 Thread Climis, Tim
I don't know why that image is stretched vertically; it's well- behaved on my local drive. Because of height: 100%. If you change that to height: auto; or take out the height property completely, it behaves just fine. But height 100% means Make this image 100% of the height of its parent

[css-d] text-indent

2010-11-19 Thread Climis, Tim
I've just noticed an unexpected behavior with text-indent, and I'm wondering if it's a bug, or if I'm just misunderstanding the spec (my guess is the latter). I have the following, for an FAQ: dl class=qanda dtWhat is the first question?/dt dd pThis is the first paragraph of a long

Re: [css-d] text-indent

2010-11-19 Thread Climis, Tim
In my mind, this should then apply to the first line of text in the dd, but it appears to apply to the first line of text in the p's... Why? Nevermind, everyone. I figured it out... Text-indent is inherited. Adding a dd p {text-indent: 0} gives me the expected behavior. ---Tim

Re: [css-d] text-indent

2010-11-19 Thread Climis, Tim
Nevermind, everyone. I figured it out... Text-indent is inherited. Adding a dd p {text-indent: 0} gives me the expected behavior. Oh, no it doesn't... grr. But using dd p + p as a selector works well. ---Tim __

Re: [css-d] [+] Re: [css-d Is this proper use of div tags?

2010-11-18 Thread Climis, Tim
The red box *and* the document have nothing to do with the offset of that box. Not entirely true. Yes, the blue box is offset in relation to where it would be without position. But where the blue box would be depends directly on other elements (previous siblings and parents, i.e, the red

Re: [css-d] Is this proper use of div tags?

2010-11-17 Thread Climis, Tim
you don't need anything around the image or the paragraph... .outer img {float:left;} .outer p {float: right;} If you want white space, you can apply margins, padding, borders, etc, just like you would if they were a div. But you can apply them directly to the img and p elements without

Re: [css-d] Simple (I hope) styling question

2010-11-09 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of John Deighan Sent: Tuesday, November 09, 2010 1:51 PM To: css-d@lists.css-discuss.org Subject: [css-d] Simple (I hope) styling question I think there's

Re: [css-d] Noob: relative URL specification in CSS

2010-11-01 Thread Climis, Tim
url(bg.gif) That's looking at http://localhost/kcpage/css/bg.gif. url(/images/bg.gif) This one is trying http://localhost/images/bg.gif. url(./images/bg.gif) This one tries http://localhost/kcpage/css/images/bg.gif. url(httPL//localhost/kcpage/images/bg.gif) This one you've mistyped

Re: [css-d] Noob: relative URL specification in CSS

2010-11-01 Thread Climis, Tim
In messing with it, if I modify the body tag in the html, then this works: body style=background-image: url(images/bg.gif); When you include it here, the path is relative to the HTML page, so that works. Since I include the css sheet in the same level, I would have thought the CSS

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Climis, Tim
p.imageBullets { background: url('Image_files/image003.gif') no- repeat top left; padding-left: 16px;} Thanks. That is a start. But, since the image is a background, it does not push the text over. Instead, the image is behind the text. Should I just add nbsp; to the beginning of the

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Climis, Tim
For instance, in the img tag, you are able to control the width and the height of the image. How do you do this in the CSS? For background images, you can't. You have to do it by opening the image file and changing its size, and then saving it. ---Tim

Re: [css-d] [+] Re: Clearing a float

2010-10-05 Thread Climis, Tim
I don't think inherit is a proper value for clear. it is: http://www.w3.org/TR/CSS21/visuren.html#flow-control It's interesting though. This new value came in now that authors use clear even less than before as they now contain floats more than they clear them. Does it do anything

Re: [css-d] Cross Browser Compatibility while using asp.net Server Control - DropDownList

2010-09-16 Thread Climis, Tim
The Problem: -- A DropDownList rendered by ASP.Net is displayed correctly in IE8. But, it appears as enlarged, boxed DropDownList in FireFox(Latest version). It happens only when this DropDownList is the First control on the WebPage. All other DropDownLists appearing as

Re: [css-d] Can i vertically centre a UL?

2010-09-15 Thread Climis, Tim
I'm a bit late and maybe wet behind the ears, but would making the container display: table; and the UL display: table-cell; work? Perhaps with a spot of JavaScript to turn them into an HTML table for poor old IE 7 and older? I think there'd have to be a third element in there to set as

Re: [css-d] Can i vertically centre a UL?

2010-09-15 Thread Climis, Tim
I have got over my fear of sending a ink to the site so you can see that it's level 3, from the websites drop down that could be improved by centering vertically. http://blakeys.com/ /* this is the box that actually lays out the interior of level 2. It was hard to find through all the

Re: [css-d] Can i vertically centre a UL?

2010-09-14 Thread Climis, Tim
I'd like it to sit right in the middle both vertically and horizontally without using padding or anything like that because it's dynamically fed. is there such a way using CSS? As far as I know, not with anything with a dynamic height. You can do it with javascript, but that's off-topic

Re: [css-d] Can i vertically centre a UL?

2010-09-14 Thread Climis, Tim
-Original Message- From: Claude Needham [mailto:gxx...@gmail.com] Sent: Tuesday, September 14, 2010 5:04 PM To: Climis, Tim Cc: Chris Blake; css discuss discuss Subject: Re: [css-d] Can i vertically centre a UL? On Tue, Sep 14, 2010 at 1:47 PM, Climis, Tim tcli...@indiana.edu

Re: [css-d] Type sizes?

2010-09-09 Thread Climis, Tim
I have vague memories of doing this because the percentage handled a glitch in one browser or another. There was an IE bug handling sizing in ems that the 100% rule fixed, as I recall. Perhaps this one with text-resizing?

Re: [css-d] 100% height for table

2010-08-30 Thread Climis, Tim
Does anyone have any idea about this? Can I truly not create a table that is 100% the height of the browser window? I've tried adding a min- height to the table too but it doesn't seem to make any difference. I'm confused... What are you trying to do? You have height=100% set on your table.

Re: [css-d] Adjacent Sibling Selectors in Reverse?

2010-08-30 Thread Climis, Tim
Something like this perhaps? h2+p { } But that affects p tags that fall AFTER h2's, not before, no? Yes, that's correct. I don't think there's a way to do this without Javascript. What about styling the h2 instead of the p? I don't know what your use case is, but if, for example, you

Re: [css-d] drop cap - some characters cut off

2010-08-27 Thread Climis, Tim
span.drop { line-height: .7em; } Your line-height is less than 1em. That means that it's smaller than the current font size. If you set your line-height to 1 (unitless) or even 1.2, then your letters aren't chopped off. ---Tim

Re: [css-d] drop cap - some characters cut off

2010-08-27 Thread Climis, Tim
Thanks for your reply. I'm not sure if I reply directly to your email here, or not. Usually you reply to list, so others can chime in. Yes I did change that. But if you look at the change now (second blog entry), why does it add more spacing above the letter Q,d despite my padding: 3px?

Re: [css-d] :after and :before psedo elements.

2010-08-26 Thread Climis, Tim
I think maybe CSS shouldn't change the Dom. They're not really changing the DOM (at least not IMO). You can't add tags and structure to the HTML with CSS - you can only change the value of text nodes (and then, only by adding to them). Just trying to understand why they are there. So you

Re: [css-d] Forcing horizontal scroll instead of wrap.

2010-08-23 Thread Climis, Tim
Can somebody clue me in to a CSS (or whatever) trick that forces a div scroll instead of wrapping? Perhaps div {white-space: no-wrap} ---Tim __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] Forcing horizontal scroll instead of wrap.

2010-08-23 Thread Climis, Tim
Can somebody clue me in to a CSS (or whatever) trick that forces a div scroll instead of wrapping? Perhaps div {white-space: no-wrap} Oops. That should be nowrap. ---Tim __ css-discuss [cs...@lists.css-discuss.org]

[css-d] Playing with CSS3 transitions

2010-08-23 Thread Climis, Tim
In a comment on Gabrielle's blog posting a couple weeks ago about whether or not animation belongs in CSS, I came up with a use case for CSS dropdown menus. Basically, my idea was that you might want to make your menu drop down with a wipe. I finally got around to playing with that idea this

Re: [css-d] Playing with CSS3 transitions

2010-08-23 Thread Climis, Tim
Promising, I think... Near the bottom of the page he has a fairly recent example of a CSS3 transition slide-down... http://www.gethifi.com/blog/nicer-navigation-with-css-transitions That's pretty much the effect I'm going for (sans the opacity transition). But a quick look at that code,

Re: [css-d] Floating images - understanding the details

2010-08-18 Thread Climis, Tim
{float: right; width: 15em; margin: 1 1em 1em; padding: 0.25em;} First, I don't understand width. It's not the width of my image; what is it doing? The width is the width of whatever element you're applying the CSS to. Could be the image, but as Marcio pointed out, you didn't include the

Re: [css-d] CSS3 animations considered harmful

2010-08-11 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of david Sent: Wednesday, August 11, 2010 3:12 PM To: css-d Subject: Re: [css-d] CSS3 animations considered harmful tedd wrote: At 9:19 PM -0400 8/10/10, David

Re: [css-d] drop shadows

2010-08-09 Thread Climis, Tim
Is there a good way to get a drop shadow on text using css? You're using it. I've got something that seems to work in Safari, and in FireFox 3.6.8 on a mac, but I think that's about it. Actually, it works in Firefox 3+, Safari 3+, Chrome 4+, and Opera 10+, on all platforms. Only IE

Re: [css-d] new website - critics welcome

2010-07-22 Thread Climis, Tim
i'd be more than greatful for any kind of ctiticism. It'd be nice if there was some kind of clue that there are links on the first page. I don't know that most people will discover that a few random letters produce hover effects. ---Tim

Re: [css-d] background color of a with class

2010-07-15 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of Tim Arnold Sent: Thursday, July 15, 2010 8:51 AM To: Thijs Hakkenberg Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] background color of a with class On

Re: [css-d] browser reports please [blakeys]

2010-07-13 Thread Climis, Tim
-Original Message- From: David Laakso [mailto:da...@chelseacreekstudio.com] Sent: Tuesday, July 13, 2010 12:17 PM To: Philip Taylor (Webmaster, Ret'd) Cc: css-d; Climis, Tim Subject: Re: [css-d] browser reports please [blakeys] Philip Taylor (Webmaster, Ret'd) wrote: David

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of Ellen Herzfeld Sent: Thursday, July 08, 2010 2:17 PM To: css-d@lists.css-discuss.org Cc: jta...@rocketmail.com Subject: Re: [css-d] Tool to tell me where a rule

Re: [css-d] Is this even possible with blockquote?

2010-06-28 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of Claude Needham Sent: Monday, June 28, 2010 12:24 PM To: CSS Discuss List Subject: [css-d] Is this even possible with blockquote? On the following page I have a

Re: [css-d] floating right class not going all the way to the right

2010-06-24 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of Stuart King Sent: Thursday, June 24, 2010 8:51 AM To: css discuss Subject: [css-d] floating right class not going all the way to the right Hi CSS-Der's:

Re: [css-d] centered nav over an image /?

2010-06-24 Thread Climis, Tim
I believe the url in the original post leads us to the only sample for the page. http://ecoitsf.com/test.html Ah. Missed that. And even though the method used is display: inline, overflow: hidden still appears to be the solution. When I tested it out (on either the div or the ul) it

Re: [css-d] web page help

2010-06-23 Thread Climis, Tim
Can you point to a page that demonstrates the sticky footer working? I'm not seeing it on the url given. The image with the browser icons is using it on that page. ---Tim __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] web page help

2010-06-23 Thread Climis, Tim
-Original Message- From: Claude Needham [mailto:gxx...@gmail.com] On Wed, Jun 23, 2010 at 11:00 AM, Climis, Tim tcli...@indiana.edu wrote: The image with the browser icons is using it on that page. When looking at http://ryanfait.com/sticky-footer/ I don't see a sticky

Re: [css-d] Tests on HTML5 video and CSS

2010-06-21 Thread Climis, Tim
just finished to do these: http://onwebdev.blogspot.com/2010/06/tests-on-html5-video-and- css.html Just FYI, Chrome Dev branch (6.0.437.3) autoplayed every one of those videos, so it appears that the Webkit nightlies must have support. ---Tim

Re: [css-d] An Image On Top Of an Image

2010-06-21 Thread Climis, Tim
How do I place an image on top of another image? Umm. Can we have an example of what you want? There are many options here, and depending on the effect you're looking for, some may or may not work. For example: do you want the bottom image to be visible under the top image (translucent)?

Re: [css-d] An Image On Top Of an Image

2010-06-21 Thread Climis, Tim
snip a bunch of HTML Can you send us a link to your live page instead of all this code? It's a lot easier to debug things that way. If not, we can try and work with what we've got, but a link is always more helpful. ---Tim

Re: [css-d] nav placement issue - ff and chrome great, ie not so great

2010-06-10 Thread Climis, Tim
Matthew P. Johnson wrote: Who in the world has Century Gothic on their computer? My computer has it. I think it's included with MS Office - because I've only installed a few other fonts and that wasn't one of them. Which means that a pretty fair number of people have it, probably. (I

Re: [css-d] Problem with menu bar

2010-05-19 Thread Climis, Tim
so, is the remedy to ammend the code on that page, or is a 1279 pixel wide image just plain ridiculous? In marsB.css, line 27 Delete the width: 600px; (or change to min-width: 600px). That will let the paragraph expand to fit your image, which will in turn make the page expand to fit the

Re: [css-d] Top Menus and Positioning Bookmarks

2010-05-13 Thread Climis, Tim
Hi everyone I have a mobile device version of a web based product that has a div which appears across the top of the page with a menu in it. Currently, if the user clicks on a hyperlink in a page which goes to a bookmark in that or another page, the bookmark by default appears at the top

Re: [css-d] Elements that create new block formatting contexts

2010-05-04 Thread Climis, Tim
display: block. http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo That table is about computed value, what I quoted was related to a declaration (at least that's the way I read it): In my rule, the float is styled with display:inline and I expect it to be a flow Root. Is the above

Re: [css-d] roots tree

2010-05-03 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Bob Meetin Sent: Monday, May 03, 2010 11:21 AM To: CSS-D Subject: [css-d] roots tree I have a task to create a roots type family tree. Recommendations please?

[css-d] Where is the CSS2 spec?

2010-04-30 Thread Climis, Tim
When I go to W3C and get the CSS specs, I can only get 1, 2.1 and 3. What happened to 2? Is there an alternate source? (The reason here is that I'm using Coldfusion's PDF creation, which supports CSS1 and CSS2 and page-break-after is in the list of supported properties, but always doesn't

Re: [css-d] Where is the CSS2 spec?

2010-04-30 Thread Climis, Tim
What happened to 2? Nevermind. I found it. A link was buried in the 2.1 references. http://www.w3.org/TR/2008/REC-CSS2-20080411/ ---Tim __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] Where is the CSS2 spec?

2010-04-30 Thread Climis, Tim
See *previous versions:* Previous versions: http://www.w3.org/TR/2009/CR-CSS2-20090423 http://www.w3.org/TR/2008/REC-CSS2-20080411 Yeah, I kept clicking on the top one and after getting 5 or 6 versions of the 2.1 spec, I gave up. But it was especially confusing since

Re: [css-d] Drop downs behind content

2010-04-30 Thread Climis, Tim
There is no flash. Of course there is. The Youtube video is flash. Direct from your page: embed src=http://www.youtube.com/v/l26of6Qm9CUamp;hl=en_USamp;fs=1amp;; type=application/x-shockwave-flash allowscriptaccess=always allowfullscreen=true width=410 height=280 (Note the

Re: [css-d] height and margin: auto 0

2010-04-28 Thread Climis, Tim
If I instead set a height on the same div, and then set margin: auto 0; it does not center horizontally. I'm going to assume that you really meant vertically. Why? why why why? Because the definition of auto states that if auto is the same for margin-left and margin-right, then they will be

Re: [css-d] Making a simple form look identical across the main browsers

2010-04-28 Thread Climis, Tim
Couldn't you technically declare your own font size in px and avoid this issue of browser default font size? I am not saying it's a good idea to use px based fonts, but it is doable and with the zoom functionality of newer browsers you'd avoid breaking layouts. It depends on whether or not

Re: [css-d] Making a simple form look identical across the main browsers

2010-04-28 Thread Climis, Tim
I am using firefox 3.6. When I set the zoom option to zoom text only i can increase all fonts with command + or command - (i am on a mac so substitute control for PC) But, changing the default font size in the browser settings does not increase or decrease fonts that have been set in

Re: [css-d] Unbelievable CSS Trick

2010-04-21 Thread Climis, Tim
I just want to make a div with css applied to it to get a background colour appear at 50%. Any ideas? What's happening is that everything has an opacity of 50%. You can't apply it to just the background, afaik, but you can fake it. Set the opacity to 50% on the parent, like you've got, and

Re: [css-d] How to handle cached styles...

2010-04-12 Thread Climis, Tim
Hi all, I wanted to get some collective input on how you all handle updating styles that are cached. Double clicking the refresh button will usually do the trick. There's also private browsing mode, which will keep things from caching. ---Tim

Re: [css-d] How to handle cached styles...

2010-04-12 Thread Climis, Tim
Right, I'm speaking more for the site users, how they can get updated styles with as minimal disturbance as possible. Eg, a site visitor doesn't know necessarily when you have pushed some css for design changes. It will look broken for them. Oh. That's a far more interesting problem that I

Re: [css-d] Divitus?

2010-04-02 Thread Climis, Tim
I'm not familiar with the '8 div flexy box'. Could someone provide a URI? That's not it's official name, and I'm not sure what is, but you can see an example I did a few weeks ago here: http://sunapsis.iu.edu/ Essentially, you have a relatively positioned content box (my #container), and then

Re: [css-d] Safari on Mac and PC?

2010-04-01 Thread Climis, Tim
Is Safari on windows and safari on Mac same? will my web page will look similar in them? Also does FF on PC and on Mac renders the web page UI in same way? I can't say yes because it's not entirely true, so the answer is Mostly. Pages look the same across browsers and operating systems, as

Re: [css-d] More new to css questions

2010-03-30 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Lineberger, Scott Sent: Tuesday, March 30, 2010 4:21 PM To: 'css-d@lists.css-discuss.org' Subject: [css-d] More new to css questions Ok, I am beginning to warm up to

Re: [css-d] CSS3 Please code and Explorer support

2010-03-29 Thread Climis, Tim
Those Microsoft filters only work when the element they are applied to has layout.[1] Try adding zoom: 1; to the ruleset for the filter... I understood 'zoom' to be a Microsoft proprietary CSS property which does not validate. I would set a height or width value instead which achieves the

Re: [css-d] New to css

2010-03-29 Thread Climis, Tim
Experiment with left/center/right alignments of the legend headings and the buttons; Add a background image to each form within the table. Can it be done? Yes. I'm presuming that you want each form to be different, right? So you need to give each one a way to select it. Either a class or

Re: [css-d] fix border on some list items?

2010-03-25 Thread Climis, Tim
and li don't need display: inline, because display default value for li is inline. No it isn't! The default display for li is list-item. Which is closer to block than it is to inline. If it were inline, your lists would look like: 1. Thing one 2. Thing two 3. Thing three Instead of: 1.

Re: [css-d] Die focus, die!

2010-03-25 Thread Climis, Tim
1. Is it considered proper to put the reply after the quote? I personally much prefer the reply first. If I'm reading a thread, I have the quote already in mind, and like it when I don't have to manually scroll down to see the reply. But if manners suggest quote first, I can do that.

Re: [css-d] a:hover

2010-03-25 Thread Climis, Tim
I'd like to make a:hover maroon and underlined, I tried it in the way I wrote it below but it doesn't work, I'd appreciate it if you have any tips... a:hover {color:Maroon;} a:hover {text-decoration: underline;} That should do it. Or for efficiency: a:hover

Re: [css-d] div not floating in FF

2010-03-22 Thread Climis, Tim
I have a break with a clear equals all below the outer div. Clear: all is not a valid value. Are you looking for clear: both? ---Tim __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] 2 small css problems

2010-03-18 Thread Climis, Tim
And if anyone knows the reason why I have the other problem with my thumbnail_grid div's position, please let me know! That's on this #thumbnail_grid { position: relative; float: left; overflow: hidden; /* border: 1px solid red; */ width: 100%; } Claude Needham already answered that one, but

Re: [css-d] In HTML CSS vs. Separate style sheet CSS

2010-03-15 Thread Climis, Tim
100%px isn't valid, unless my programming mind is tying to make too much sense. I think that's the problem... His template is putting in 'px' even though he doesn't want one. And he wants to have a width of 100% in spite of it. Stylesheets should never overwrite a style defined in the

Re: [css-d] content in table won't align vertically

2010-03-12 Thread Climis, Tim
Any clues? Default top and bottom margins of 1em on H1 elements? It looks like it's top aligning to me in Firefox, IE8, and Chrome. The only space I see is the margin on the H1 which you didn't cancel out. ---Tim __

Re: [css-d] FF 2.0 rendering issues - blank content

2010-03-09 Thread Climis, Tim
Thus far I have looked at Doctors page in 6 browsers on 2 different operating systems. Just pointing out that the browser in question is in the subject (i.e. Firefox 2) I don't happen to have a copy so I can't help, but it should save some other people some time. ---Tim

Re: [css-d] Combining :only-of-type with :before?

2010-03-05 Thread Climis, Tim
The other thing i missed was the need to use double colons, like ::before - I tried only ':before'. What's the reason? :before is CSS2. ::before is CSS3. In CSS3, double colons go before pseudo-elements (first-line, first-letter, before, after), while single colons go before pseudo-classes

Re: [css-d] help with single level drop down menu

2010-03-04 Thread Climis, Tim
My issue is that that, while the drop down menu appears when hovering over top level list item, when the user moves OFF of that list item to move into the drop down sublist, the sublist disappears. My immediate guess, without getting to see the page, is that you need to add a sublist:hover

Re: [css-d] How Important is CSS Validation?

2010-03-02 Thread Climis, Tim
What is the general consensus with regards to CSS validation? I'm really inclined to leave the opacity effect in. Validation of CSS is great for finding misspelled properties, bad values, missing semi-colons, etc, but hacks, proprietary properties, and CSS 3 stuff is fine (or even

[css-d] Floats at the beginning of lists

2010-02-19 Thread Climis, Tim
Take a look at this page: http://www.indiana.edu/~intlserv/orientation/arrival_housing.php, and scroll down to the cab company list. In Firefox 3.6, the bullets appear correctly. However, that's the only place it's right. The problem, I believe, is that I've floated the first thing in the

Re: [css-d] Inflexible table

2010-02-18 Thread Climis, Tim
Any help and/or suggestions are GREATLY appreciated I have discovered that the margin-right on #aelbibDisplayLayout is causing this. If you set that margin to 0 (instead of 200px) that fixes it. I have no idea why though.] Also, it appears that you have two identical selectors in your CSS

Re: [css-d] Trick for centering menu

2010-02-18 Thread Climis, Tim
Trying to center bottom navigation menu in footer of webpage. There are lots of centering methods, most of which depend on the particular page structure. A link would be really helpful. ---Tim __ css-discuss

Re: [css-d] Trick for centering menu

2010-02-18 Thread Climis, Tim
Unfortunately, I am having to work off my local drive with no access to upload anything at this point. New job, working with little resources at this point while waiting for server access and more software. Hoping things will be worked out next week. Bummer. Well, shots in the dark I

Re: [css-d] Deprecations in recent versions of HTML cause C SS problems‏

2010-02-17 Thread Climis, Tim
In HTML you can put nbsp;nbsp; plus an ordinary space after each sentence, but that's awfully presentational markup. Actually, that would be three spaces. Two would be nbsp; . ---Tim __ css-discuss

Re: [css-d] Deprecations in recent versions of HTML cause CSS problems‏

2010-02-17 Thread Climis, Tim
On-topically: the only way to emulate double spaces with CSS which I can think of would be to wrap every sentence in a span class=sentence and style that with a 2em right padding. Any other? I think 2em right padding would be the wrong way to do it. Em is the *height* of a character, not

Re: [css-d] How to control width via CSS

2010-02-10 Thread Climis, Tim
what I'm trying to do is decrease the width to match that of my other two boxes You're not setting a width anywhere. If you want to make the container the same width as the others, you need to either specify a width or margins on #rp_frame. But also, you have 4 boxes in the column on that

[css-d] Float not working in IE 7

2010-02-08 Thread Climis, Tim
I'm not sure why this isn't working. It's fine in all our standard-compliant friends, but IE 6/7 won't play nice. The h3s (for Date, Time, etc) are floated left, but the following paragraphs aren't floating up. Any insight is appreciated. Oh, almost forgot a link!

Re: [css-d] Float not working in IE 7

2010-02-08 Thread Climis, Tim
Hmmm... not sure I've come up against this specific problem before, but a 'clear' fix to ensure the list items are containing the headings and paragraphs does the trick: .event_details li { overflow: hidden; } Indeed it does! That makes a certain amount of crazy sense, but I wouldn't

Re: [css-d] Issues with padding

2010-02-05 Thread Climis, Tim
Take a look at your page with the Firebug extension for Firefox, and you'll see what's up. What you think is mainContentPad and what actually is, are two entirely different things. Fixing it will take some mark up changes, which means that I can't just test it quite as easily as CSS. But I

Re: [css-d] horizontal, variable height nav bar. Doable with display: table?

2010-02-03 Thread Climis, Tim
Alas, the issue is that while the LIs are all the same height, the actual anchor tags are only as high as the text. I'd like it so that all of the anchor tags (as well as the LIs) are all the same height so that each link has the same size target to click on. Is that doable with just CSS?

Re: [css-d] Synchronized paragraphs in adjacent columns

2010-02-01 Thread Climis, Tim
I hope that someone will have a suggestion for me. Brace yourself... I actually think that this could be argued to be a legitimate use of tables to display tabular data. It's certainly not tabular data in the tradition spreadsheet sense, but it is data that corresponds to other data arranged

Re: [css-d] public websites with faulty CSS-s

2010-02-01 Thread Climis, Tim
There's always the Acid 2 test. It looks the same in all the major browsers now, but in IE6 and 7 it's a pretty stellar disaster. The other thing to check is if MS makes the Compatibility View list public. If it does, that would give you a list of sites that look good in IE7 that don't look

Re: [css-d] Synchronized paragraphs in adjacent columns

2010-02-01 Thread Climis, Tim
This may be a crazy suggestion, but in my mind a definition list (dl, dt, dd) wouldn't be out of the question You'd either have to avoid paragraph tags, etc, or damn the standards. I had the same thought, but decided not to damn the standards. So I suggested the paragraph solution instead.

Re: [css-d] Navigation

2010-01-28 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of e...@copywritecolombia.com Sent: Thursday, January 28, 2010 4:00 PM To: css-d Subject: [css-d] Navigation The top navigation should be right up against the top of the

Re: [css-d] Navigation

2010-01-28 Thread Climis, Tim
Thanks Troy and Tim, the navigation is now up against the top of the page, but now it is on the wrong side. I have floated both the navigation and logo left but it is showing the logo on the right not on the left-why is that?: http://www.copywritecolombia.com/mediabuying.htm You missed my

Re: [css-d] Fraction bar

2010-01-22 Thread Climis, Tim
I took Alan's sample and expanded on it to provide a horizontal line. I haven't extensively tested it but it works well for me on FF3.5. It does look good in FF3.5. But it doesn't look nearly as nice in any other browser. The spacing between the numbers and the bar is too big in everything

Re: [css-d] strange problem with float

2010-01-22 Thread Climis, Tim
However, in IE6 (haven't tried ealier versions), the right sidebar (localsidebarpanel) is off in never land and its color is completely wrong and can't be changed (weird!). I tested with IE 7 and 8 based on output from http://ipinfo.info/netrenderer/ and the layout is even worse, and still same

Re: [css-d] strange problem with float

2010-01-22 Thread Climis, Tim
Not sure yet what the fix is. Or, if you know of a free CSS exploration tool *for IE* like the (awesome!) javascript console that comes with Chrome, I could try using such a tool to figure it out. Well, there's the IE Developer toolbar. It's only good for IE7 (although IE8 comes with it built

Re: [css-d] u/u - why did it have to die?

2010-01-15 Thread Climis, Tim
A reply that went to me, but probably should have gone to the entire list, or at least the OP... [my lengthy reply on semantic markup] Another reason is that usability-wise, only something that is a link is supposed to be underlined on the web. For a bibliographic reference, perhaps

Re: [css-d] font-size smaller on IE 8 [error correction]

2009-12-21 Thread Climis, Tim
Adventuring on the EM land surely deserves quite of organization on the font side of things. I will pay better attention on the future (so I believe). Yes it does, sort of. Font size shouldn't vary too much on a page though. tons of different font sizes tend to make things messy and hard to

Re: [css-d] NOT restarting numbered lists after h1 element

2009-12-15 Thread Climis, Tim
After inserting the h1 I find I cannot continue with my second list item as 2; the list starts over at 1. Can I do that using CSS? I've got the other sub-items to style correctly using CSS, so this is my only problem. There's two answers: There is the start attribute of ol (ol start=2) which

  1   2   >