Re: [css-d] Still have not solved...

2008-11-01 Thread David Laakso
Majestic wrote: > Hello, I never did get any of the info on how to solve the problem I > was having with my being cut off in IE6, I was hoping someone > could help me? > Good book. Buy it. Read it. Use it.

[css-d] Still have not solved...

2008-11-01 Thread Majestic
Hello, I never did get any of the info on how to solve the problem I was having with my being cut off in IE6, I was hoping someone could help me? __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

Re: [css-d] Basic CSS Question: Why no background when no height value is defined?

2008-11-01 Thread David Laakso
MEM wrote: > CSS Basic Question: Background Color: > > If I quit the height value, I get no background color. Why? > Because, I guess, it "has no layout" (no dimension). > I want a background color, but I don't want the extra bottom space that the > height value gives to me. :s > > How can

Re: [css-d] UL align - question. (sorry)

2008-11-01 Thread Sandy
>>http://sandyfeldman.com/test/testlist.html >>is this something like what you mean? > > > Pardon? Your two-liner was preceded by a comprehensive quote of my message. > That wasn't very constructive, and it seems that you didn't really want to > ask _me_ anything - your demo doesn't use the t

Re: [css-d] UL align - question.

2008-11-01 Thread Jukka K. Korpela
Sandy wrote: > http://sandyfeldman.com/test/testlist.html > is this something like what you mean? Pardon? Your two-liner was preceded by a comprehensive quote of my message. That wasn't very constructive, and it seems that you didn't really want to ask _me_ anything - your demo doesn't use the

Re: [css-d] UL align - question.

2008-11-01 Thread Sandy
Jukka K. Korpela wrote: > MEM wrote: > > >>1) How can I change the align of the UL list to the right ? > > > It depends on what you mean by that. You can set > ul { text-align: right; } > to align each line in the list content to the right. But this might not be > what you really want.

Re: [css-d] Sidebar not expanding content div

2008-11-01 Thread Thierry Koblentz
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > discuss.org] On Behalf Of Bill Brown > Sent: Saturday, November 01, 2008 11:51 AM > To: Christopher Kip > Cc: css-d@lists.css-discuss.org > Subject: Re: [css-d] Sidebar not expanding content div > > > Christopher Ki

Re: [css-d] Sidebar not expanding content div

2008-11-01 Thread Bill Brown
> Christopher Kip wrote: >> works in IE but in all others can't figure out why the sidebar is >> extending past the container vs. the container expanding to fit. I >> have done this many times before, though slightly different layouts >> and not had problems. Maybe a fresh pair of eyes... >

Re: [css-d] Basic CSS Question: Why no background when no height value is defined?

2008-11-01 Thread Blake
On Sun, Nov 2, 2008 at 3:21 AM, MEM <[EMAIL PROTECTED]> wrote: > CSS Basic Question: Background Color: > > If I quit the height value, I get no background color. Why? Try adding: .mainlinks#navigation { overflow: hidden; } It sounds like your nav items are floated, and therefore the container wi

Re: [css-d] Basic CSS Question: Why no background when no height value is defined?

2008-11-01 Thread David Laakso
MEM wrote: > > Q:How can I had space between li on a ul ? > R:Use the margin value not the padding one. :D > (this is only to stay on the mailing list). > > > > Thanks a lot all, for the help. I now have a nice layout with 3 columns and > a navigation that is ugly, and with redundant CSS code (I'm

Re: [css-d] Conceptual Guidance - content outside viewport

2008-11-01 Thread Gunlaug Sørtun
WEZ! wrote: > At the moment all I need is a direction of attack. I'm sure it is > possible to produce the effect I'm after i just don't know the > technique and can't find it so far. This method may be a place to start... - Only content-container creates

Re: [css-d] Basic CSS Question: Why no background when no height value is defined?

2008-11-01 Thread MEM
Thanks... I've but overflow: hidden; (but my nav items disappear). :s I just wanted to understand why, but I understand that THAT could be a bit difficult if we don't see all the code and examples... Anyway, I have put the height value and I was getting a difference on 1px between IE and FF, but n

Re: [css-d] Sidebar not expanding content div

2008-11-01 Thread David Laakso
Christopher Kip wrote: > Hi all, > > works in IE but in all others can't figure out why the sidebar is > extending past the container vs. the container expanding to fit. I > have done this many times before, though slightly different layouts > and not had problems. Maybe a fresh pair of eye

Re: [css-d] center problem - img gallery

2008-11-01 Thread Luc
Good afternoon Philippe, It was foretold that on 01/11/2008 @ 11:04:04 GMT+0900 (which was 00:04:04 where I live) Philippe Wittenbergh would write: > when you scale down the font-size, you bump into the min- > width set on #container (width set in em, it will scale up/down with > font-r

[css-d] Basic CSS Question: Why no background when no height value is defined?

2008-11-01 Thread MEM
CSS Basic Question: Background Color: If I quit the height value, I get no background color. Why? I want a background color, but I don't want the extra bottom space that the height value gives to me. :s How can we have a background without the height? Here is the code. .mainlinks#navigation

[css-d] Sidebar not expanding content div

2008-11-01 Thread Christopher Kip
Hi all, works in IE but in all others can't figure out why the sidebar is extending past the container vs. the container expanding to fit. I have done this many times before, though slightly different layouts and not had problems. Maybe a fresh pair of eyes... http://chromacreative.com/te

Re: [css-d] UL align - question.

2008-11-01 Thread David Laakso
MEM wrote: > Hello, > > > > Problem: > > 1) How can I change the align of the UL list to the right ? > > 2) After that, how can I add a right margin to it so that the lists > stays away from the right screen border? > > > > > > . mainlinks#navigation ul li a{ > > float: left; /*If

[css-d] Conceptual Guidance - content outside viewport

2008-11-01 Thread WEZ!
Heya All, I've been trying to find a solution to a concept I want to implement in a template I'm working on. I want to have a variable width, centered content block which has a background image that is wider than the content and doesn't create scroll bars when the viewport is reduced to the wi

Re: [css-d] UL align - question.

2008-11-01 Thread David Laakso
David Laakso wrote: > MEM wrote: >> Hello, >> >> >> >> Problem: >> 1) How can I change the align of the UL list to the right ? >> >> 2) After that, how can I add a right margin to it so that the lists >> stays away from the right screen border? >> >> >> >> >> >> . mainlinks#navigati

Re: [css-d] UL align - question.

2008-11-01 Thread Jukka K. Korpela
MEM wrote: > 1) How can I change the align of the UL list to the right ? It depends on what you mean by that. You can set ul { text-align: right; } to align each line in the list content to the right. But this might not be what you really want. I suspect that you also want to put the list b

[css-d] UL align - question.

2008-11-01 Thread MEM
Hello, Problem: 1) How can I change the align of the UL list to the right ? 2) After that, how can I add a right margin to it so that the lists stays away from the right screen border? Inside a container div with this properties: #container { width:933px; margin:0px