Re: [css-d] FIXED THANK YOU- liquid design not very liquid in IE6

2007-04-29 Thread Mandy
Thank you very much Gunlaug. Your help is very much appreciated. That did the trick. Mandy -Original Message- From: Gunlaug Sørtun [mailto:[EMAIL PROTECTED] Sent: 29 April 2007 01:17 To: Mandy Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] liquid design not very liquid in IE6 Ma

Re: [css-d] IE 6 sticky bug

2007-04-29 Thread Jehangir Larry
Jed Arnold wrote: > I'm working on a site and wanted to make the default page more > dynamic by adding CSS image pop-ups to my links. I adapted code > from Nathan Smith's HoverBox technique. > > My code is working fine in FF, IE 7/Win, Opera and Moz, but IE 6/Win > is giving me a problem. The imag

Re: [css-d] IE 6 sticky bug

2007-04-29 Thread Holly Bergevin
From: "Jed Arnold" <[EMAIL PROTECTED]> >The images are squashed, >The site can be viewed here, >http://the1912gallery.ehc.edu/music/newsite/textlinktest.html. You have told the images to be 50px high. And that's what they are. .joverbox .preview { border-color: #000; width: 3

[css-d] disappearing div

2007-04-29 Thread Raumin \"Ray\" Dehghan
Dear CSS colleagues: In the web site I am currently helping to redesign, every time I put the mouse over the left nav (which is called div id="Layer5", my center material, called div id="Layer6", which includes a photograph, disapppears. I would be very grateful if somebody be so kind as to

[css-d] IE6 displays same site differently on different computers

2007-04-29 Thread feurerj
I'm having a very puzzling experience. I have a site design that is displaying okay in most browser/OS combinations. I've tested it in a variety of browsers on WinXP as well as all available configurations through BrowserCam. The problem is that my client -- who is using WinXP and IE6 -- does not

Re: [css-d] IE6 displays same site differently on different computers

2007-04-29 Thread Felix Miata
On 2007/04/29 11:51 (GMT-0600) [EMAIL PROTECTED] apparently typed: > I'm having a very puzzling experience. I have a site design that is > displaying okay in most browser/OS combinations. I've tested it in a variety > of browsers on WinXP as well as all available configurations through > BrowserCa

Re: [css-d] IE6 displays same site differently on different computers

2007-04-29 Thread Jennifer Feurer
> [mailto:[EMAIL PROTECTED] On Behalf Of Felix Miata > Sent: April 29, 2007 1:33 PM > > On 2007/04/29 11:51 (GMT-0600) [EMAIL PROTECTED] apparently typed: > > > I'm having a very puzzling experience. I have a site design that is > > displaying okay in most browser/OS combinations. I've > teste

Re: [css-d] IE6 displays same site differently on differentcomputers

2007-04-29 Thread Bruno Fassino
[EMAIL PROTECTED] wrote: [...] > > The problem is that my client -- who is using WinXP and IE6 > -- does not see the site as intended. The right hand column > with the content pushes down below the left navigation column. [...] > The site is here: > http://www.archvisual.com/fma/ and Felix Miata w

[css-d] gettting a radiogroup to display horizontally?

2007-04-29 Thread Ross Hulford
Any ideas how this is done? Ross __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Sup

Re: [css-d] gettting a radiogroup to display horizontally?

2007-04-29 Thread Paul Novitski
At 4/29/2007 03:08 PM, Ross Hulford wrote: >Any ideas how this is done? The most common ways to present blocks horizontally is to set {display: inline} or {float: left;} (assuming a left-to-right language flow). input and label elements are naturally inline, so I'd expect them to display horiz

[css-d] Trouble with positioning - not understanding this

2007-04-29 Thread Robert Lane
I am struggling with some positioning. Basically, I have a div at the bottom of a page that is defined to have a height of 143px. It has a background image of that size. I then have some text that I want centered and positioned near the top of the div. I put that in a tag with a class="addr"

Re: [css-d] Trouble with positioning - not understanding this

2007-04-29 Thread Robyn M. Smith
I'm no css guru, but I think I'd give your nested footer_tag div a top margin. Robert Lane wrote: > I am struggling with some positioning. Basically, I have a div at the > bottom of a page that is defined to have a height of 143px. > It has a background image of that size. > > I then have some

Re: [css-d] Trouble with positioning - not understanding this

2007-04-29 Thread Seona Bellamy
On 30/04/07, Robert Lane <[EMAIL PROTECTED]> wrote: > > What would be the right way to get this bugger down to the bottom left > of the footer? > > Here is the detail from the page: > > #footer_tag { position: relative; bottom: 2px; } > p.copy { padding: 6px ; font-size: 0.7em; > text-align: left;

Re: [css-d] Trouble with positioning - not understanding this

2007-04-29 Thread ross
Make it absolutely postitioned within the footer div. To do this you must define the footer div as position:relative. #outer_box{ margin: 0 auto; padding: 0; width: 760px; } #footer{ background-image: url(../bkgrnd_imgs/foot_bg.jpg); background-repeat: rep

Re: [css-d] Trouble with positioning - not understanding this

2007-04-29 Thread Robert Lane
That works! And kind of makes sense to me. Maybe I will get this after all. Thanks! :-) On 4/29/2007 4:52:52 PM, [EMAIL PROTECTED] wrote: > Make it absolutely postitioned within the footer div. To do this you must > > define the footer div as position:relative.

Re: [css-d] Trouble with positioning - not understanding this

2007-04-29 Thread Skip Knox
>That works! And kind of makes sense to me. Would Robert Lane or someone else please explain why it makes sense? Specifically, why in order for the absolute positioning to work properly, the wrapper div has to have a relative position. This struggling Jedi is lost on Dagobah on this one. Skip K

Re: [css-d] Trouble with positioning - not understanding this

2007-04-29 Thread Lea de Groot
On Sun, 29 Apr 2007 19:39:16 -0600, Skip Knox wrote: > Specifically, why in order for the absolute positioning to work > properly, the wrapper div has to have a relative position. (I haven't looked at the original reference, so this is a general explanation, but it should apply to this instance)

[css-d] Footer position problems again!

2007-04-29 Thread Robert Lane
I had this page setup with a flow around the page photo example here: http://tinyurl.com/28fjs4 In the footer I have a p.addr block that I want centered and up closer to the top of the footer rectangle. I put a border around it so you can see. But even bigger problems when I cut the text

Re: [css-d] Footer position problems again!

2007-04-29 Thread Robert Lane
Forgot to mention... the p.addr centers in IE7 although not as close to the top as I would like - but it is all askew in Firefox __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information

[css-d] mac/ie5.2 float drop

2007-04-29 Thread ~davidLaakso
The four main columns shift right and the last column (far right) drops. Capture showing problem: uri: css: embedded Sorry, but... Login: sg Pass: Q79apM What to do? ~dL -- http://chelseacreekstudio.com/

Re: [css-d] mac/ie5.2 float drop

2007-04-29 Thread Philippe Wittenbergh
On Apr 30, 2007, at 11:34 AM, ~davidLaakso wrote: > The four main columns shift right and the last column (far right) > drops. > Capture showing problem: > > uri: > > css: embedded > Sorry, but... > Login

Re: [css-d] Footer position problems again!

2007-04-29 Thread Robert Lane
I added a 60px top margin to the #footer div and now I can see what the problem is but I am not sure how to fix it. The link is here: http://tinyurl.com/yp3qj2 What is going on is I have a div id=main_box and with in that div I have another div containing an image with a float left. So what i

Re: [css-d] Footer position problems again!

2007-04-29 Thread ~davidLaakso
Robert Lane wrote: > I had this page setup with a flow around the page photo example > here: http://tinyurl.com/28fjs4 > > In the footer I have a p.addr block that I want centered and up closer > to the top of the footer rectangle. I put a border around it so you can > see. But even bigge

Re: [css-d] Footer position problems again!

2007-04-29 Thread ~davidLaakso
Robert Lane wrote: > I added a 60px top margin to the #footer div and now I can see what the > problem is but I am not sure how to fix it. > > The link is here: http://tinyurl.com/yp3qj2 > > What is going on is I have a div id=main_box and with in that div I > have another div containing an imag

Re: [css-d] mac/ie5.2 float drop

2007-04-29 Thread ~davidLaakso
Philippe Wittenbergh wrote: > On Apr 30, 2007, at 11:34 AM, ~davidLaakso wrote: > > >> The four main columns shift right and the last column (far right) >> drops. >> >> > > Lenin knows for sure :-) > > .inner-block { > overflow : hidden; > /*width : 190px;*/ /* < this is causing the p

[css-d] trouble with blog heading (title plus comments count)

2007-04-29 Thread newsletter / silvasonic
hey everyone, i've been out of the 'game' for a few years now, and i'm now trying to launch a personal blog. i'm building it block by block (you can see a working comment form here for example: http:// dev.silvasonic.com/gold/comments/comments_gold.html), but i'm having a bit of a hard time