Re: [css-d] A hack for all Opera browsers ?

2005-10-20 Thread Roman Rudenko
On 10/20/05, David Laakso <[EMAIL PROTECTED]> wrote: > Guillaume wrote: > > > > > Hi all, > > > > Is there a hack that works in *every* version of Opera browsers ? > > > > Guillaume. > > > > > Not that I know of. But there is 'be even nicer to Opera' (7.23+, I > think-- and don't forget to mind

Re: [css-d] Indenting list items that span more than one line

2005-06-05 Thread Roman Rudenko
On Sun, 05 Jun 2005 00:59:22 -0700, Mason Chumpia <[EMAIL PROTECTED]> wrote: I would like the list to be presented so: +-+ | * List item 1 | | | | * List item 2 | | | | * List item

Re: [css-d] Shinkwrapping centered content and IE

2005-06-03 Thread Roman Rudenko
On Fri, 03 Jun 2005 14:48:19 -0700, Bruno Fassino <[EMAIL PROTECTED]> wrote: Interesting, I just had a quick look, and it seems to work! I use a different method [1], which is again a combination of display:table for good browsers, plus some display:inline-block and a couple of hacks for IE

[css-d] Shinkwrapping centered content and IE

2005-06-03 Thread Roman Rudenko
I've been looking for a way to do shrink to wrap block level element centering reliably in all modern browsers, including IE. Here is the solution I came up with. I have tried it in IE 5 and 6, Firefox 1.0.4 and Opera 8 (all under Windows). Demo page: http://24.80.239.218:5190/web/center/ar

Re: [css-d] hover makes previous list mysteriously dissapear in IE 6.0

2005-05-14 Thread Roman Rudenko
On Fri, 13 May 2005 22:27:23 -0700, ephi <[EMAIL PROTECTED]> wrote: I'm using the "Pure CSS PopUp" technique, and end up with strange things happens when I hover over the menu, the upper menu dissapears. (see here: http://ephi.f2o.org/sementara/white.html) In order to understand what was happeni

Re: [css-d] Media type specialization

2005-05-13 Thread Roman Rudenko
On Fri, 13 May 2005 13:14:26 -0700, Justin Reid <[EMAIL PROTECTED]> wrote: Hey all, SETUP: I've got a question about specializing style sheets for a given media type (without using css2 @media). For all the sites that I create I write out a file for the "screen" media type, named "screen.css". U

Re: [css-d] something weird in Linux

2005-05-13 Thread Roman Rudenko
On Fri, 13 May 2005 08:42:29 -0700, Ingo Chao <[EMAIL PROTECTED]> wrote: Barbara Dozetos schrieb: http://www.pcc.com/ For some reason, the leftnav box appears too high on the page in Mozilla and FF on the initial load. A refresh of the page puts it where it belongs. I can reproduce something

Re: [css-d] Two inline lists - one left, one right

2005-05-13 Thread Roman Rudenko
On Fri, 13 May 2005 04:57:59 -0700, Rob Freundlich <[EMAIL PROTECTED]> wrote: As far as I can tell, the float method will degrade in the above violation to stacking the items vertically, and the pos:relative method will caue visual overlapping. Either one will tell my user that they need to m

Re: [css-d] Two inline lists - one left, one right

2005-05-12 Thread Roman Rudenko
On Thu, 12 May 2005 03:47:05 -0700, Rob Freundlich <[EMAIL PROTECTED]> wrote: The lists are code-generated, so I can't (for example) float the entire UL sections left and right because I don't know their widths. Yes you can. Just don't specify the width. The "mandatory width" requirement was

Re: [css-d] Background area too big in IE6/XP

2005-05-10 Thread Roman Rudenko
On Tue, 10 May 2005 02:23:45 -0700, Paul Jinks <[EMAIL PROTECTED]> wrote: In Firefox, this displays fine, but in IE6/XP I get a thin area containing the background image at the bottom of the banner image. The width of this border seems to increase if I increase the text-size on the browser. Si

Re: [css-d] images not lining up

2005-05-09 Thread Roman Rudenko
On Mon, 09 May 2005 17:38:37 -0700, Barbara Dozetos <[EMAIL PROTECTED]> wrote: Hi folks, I'm working on a new design for my company's home page and can't figure out why the two images floating to the right on this page aren't lining up. I want the slight overlap, but I also want the second

[css-d] Re: Problem centering items within a horizontal list in IE

2005-05-04 Thread Roman Rudenko
I am assuming that you are trying to center labels inside s. The simple way is to add text-align: center to actual block level container of your label - the element. Once you do this, text-align would become redundant on li and ul - you can safely remove it from there. However, if I were you,