[css-d] on pc (FF IE) appears a border....

2006-05-22 Thread [EMAIL PROTECTED]
hi i'm testing a page ( www.fullcaffeine.com/alessandroruggeri/ ) but on pc, both browsers – FF and IE – shows a bad dotted border when I click on navigation button. anybody can help me to solve this problem? css link www.fullcaffeine.com/alessandroruggeri/style.css tia jean-claude

Re: [css-d] Further to earlier message on fieldset

2006-05-22 Thread Ian Piper
On 21 May 2006, at 8:41 pm, Stuart Homfray wrote: You're right - it's a float issue! You can fix it (I've only checked in FF, IE6 and Safari) by removing the float declaration from the '.sel-box' rule. Hi Stuart, That did the trick. Thanks very much for your help. Regards, Ian. --

Re: [css-d] on pc (FF IE) appears a border....

2006-05-22 Thread [EMAIL PROTECTED]
hi Ian, i think that the usual nightmare is started... on my girlfriend's PC, IE 6 rendered the page properly... :( i'm starting testing it on more IEs... thank for the snapshot j. Il giorno 22/mag/06, alle ore 12:11, Ian Young ha scritto: hi i'm testing a page (

Re: [css-d] Fonts

2006-05-22 Thread Bob Easton
Nicholas Morgan wrote: Thanks Bob for your replay. I just don't get why this is not a priority. Does this mean that no one is going to do anything about this? I think this is a big deal and something that should be worked on as core for every browser. Not solving this problem just

Re: [css-d] Fonts

2006-05-22 Thread Christian Heilmann
That's great and all but you didn't answer my question. To me this is the same problem that we had without CSS. We used tables and other means to get the designs that we wanted. This is how I interpret what you just told me. We have carefully thought and put together 12 standard t-shirts.

Re: [css-d] site check / images in header question

2006-05-22 Thread Cem Meric
Basically I want to have an image across the top of the content area as shown on the test page. However, the live site is of a fluid design and I am wondering if there is any way to accomplish a fluid design while having a top image. I imagine way to do this is to have the image much wider

[css-d] Paragraph links

2006-05-22 Thread Daniel Kessler
I am trying to make all the links in my content section to be a particular color. Since I noticed that all the content is in p tags, I tried to set the links for p tags to that color. I did: p a{ color: #1863B5; text-decoration:none; } That seems to work with anything in the

[css-d] Empty space in image gallery.

2006-05-22 Thread Erik Gyepes
Look: http://www.pripisa.sk/ubytovanie/penzion-zeleny-dom--rajecke-teplice-18/ Why is there this empty space in the gallery? Erik __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

Re: [css-d] IE list padding/border bug

2006-05-22 Thread Eystein Alnaes
Forwarding this to the list: Thank you, it worked. ¨ Although it caused some other problems, so I'll have to leave it for now. I worked around the problem by setting a border-bottom, which fixes it in IE6, but not IE5. I'm to pressed for time to start altering to much :( Now I'm aware of it

[css-d] Layout Done... Now what about content?

2006-05-22 Thread Marc Funaro
I seem to have successfully built my first CSS-only layout, and it's working very well... The page loads are faster and the markup is clean and quite maintainable! I have the list to thank for this. I now have some questions about actual content that will be going into my layouts: 1. I'm still

Re: [css-d] 5 column CSS box

2006-05-22 Thread skye estes
On 5/22/06, Jono [EMAIL PROTECTED] wrote: Hi, When using this css for each div, how can I make it so that the divs expand with the size of the text Brian, As neat as it sounds to expand your layout on text resize, you really have to consider your total page size first. My site

[css-d] Drop-down menu Safari wackiness

2006-05-22 Thread benjy rose :: B:COMPLEX Creative
Hi all... I've created a dropdown menu that works fine on FF/Mac, FF/Win, and IE/Win, but has some weirdness on Safari. Basically, when the menu first drops down, it doesn't display the full width of the menu, but when I roll over the items, they each extend out to the proper length. Then, when

[css-d] floats making rows, not columns.

2006-05-22 Thread nooluyo?
This page should be something like this: Featured MagazinesMust Read Headline but everything keeps going under Featured Magazines Section. You can see by yourself @ http://www.alpalp.com/css3/tablecss.html

Re: [css-d] Empty space in image gallery.

2006-05-22 Thread Els
Erik Gyepes wrote: Look: http://www.pripisa.sk/ubytovanie/penzion-zeleny-dom--rajecke-teplice-18/ Why is there this empty space in the gallery? I don't see an empty space - I see 10 thumbnails with space between them - should I see something different? -- Els http://locusmeus.com/

[css-d] Can't get rid of IE margin!

2006-05-22 Thread Eystein Alnaes
This is driving me nuts! Can someone please tell me why I can't get rid of the margin between the main content and the right column? I thought it was the 3px gap or a has-layout issue, but those didn't help. Pretty please with sugar on top http://www.eystein.no/test/xrs/template_om.php

Re: [css-d] Layout Done... Now what about content?

2006-05-22 Thread Niklas Kanthak
I seem to have successfully built my first CSS-only layout, and it's working very well... The page loads are faster and the markup is clean and quite maintainable! I have the list to thank for this. Hello Marc, nice to read, welcome to the 21th century of web standards! 1. I'm still a

Re: [css-d] Drop-down menu Safari wackiness

2006-05-22 Thread Ingo Chao
benjy rose :: B:COMPLEX Creative wrote: I've created a dropdown menu that works fine on FF/Mac, FF/Win, and IE/Win, but has some weirdness on Safari. Basically, when the menu first drops down, it doesn't display the full width of the menu, but when I roll over the items, they each extend out

Re: [css-d] floats making rows, not columns.

2006-05-22 Thread cj
the problem is your width: 100%; here: .mustread{ float:left; width:100%; text-align:left; } if you tell it to be 100% width, it is going to bump down until it can take up the whole 100%. whatever width you specify needs to take into account the other columns you want.

Re: [css-d] Drop-down menu Safari wackiness

2006-05-22 Thread Ingo Chao
benjy rose :: B:COMPLEX Creative wrote: http://www.gmvoices.com/new http://www.gmvoices.com/screen.css http://www.gmvoices.com/new/screen.css There is this #nav li float with a fixed width of 10em, it is overflown by its descendant link of 171px width + padding. This exceeding part keeps

Re: [css-d] Paragraph links

2006-05-22 Thread Michael Geary
From: Daniel Kessler I am trying to make all the links in my content section to be a particular color. Since I noticed that all the content is in p tags, I tried to set the links for p tags to that color. I did: p a{ color: #1863B5; text-decoration:none; } That seems to

[css-d] font-stretch / CSS2

2006-05-22 Thread [EMAIL PROTECTED]
I found this as an example on one of the font specification pages referenced via the font thread email. This would be useful, but appears to be only implemented in CSS2. As a designer or user how do you access/force CSS2? Is it even viable at this time? h2 { font-stretch: expanded; }

Re: [css-d] Paragraph links

2006-05-22 Thread Daniel Kessler
On May 22, 2006, at 11:19 AM, Michael Geary wrote: That seems to work with anything in the second paragraph but not the first paragraph in this page: http://hhp.umd.edu/events/systems_thinking/content/ systems_thinking_5.cfm?q_ 1=cq_2=bq_3=bq_4=bq_5=bq_6=bq_7=bq_8=bq_9=bq_10=b The links

Re: [css-d] floats making rows, not columns.

2006-05-22 Thread Els
nooluyo? wrote: This page should be something like this: Featured MagazinesMust Read Headline but everything keeps going under Featured Magazines Section. You can see by yourself @ http://www.alpalp.com/css3/tablecss.html what is wrong; i've already gave

Re: [css-d] 5 column CSS box

2006-05-22 Thread Nick Fitzsimons
skye estes wrote: creating designs that resize well goes a long way towards improving the accessibility of the web. i suggest setting a pixel font size for the body and using ems for your units of measurement thereafter. Setting a pixel font-size for the body will prevent Internet Explorer

Re: [css-d] Paragraph links

2006-05-22 Thread Michael Geary
From: Daniel Kessler [mailto:[EMAIL PROTECTED] I reformatted question 1 and to me it looks like it's in p tags, but it doesn't work and the way you're saying that it's not in p tags makes me wonder what I'm misunderstanding. The validator also says that I have hanging /p tags, on

Re: [css-d] Empty space in image gallery.

2006-05-22 Thread Erik Gyepes
It is fixed now, but also thanks for reply. Erik Els wrote: Erik Gyepes wrote: Look: http://www.pripisa.sk/ubytovanie/penzion-zeleny-dom--rajecke-teplice-18/ Why is there this empty space in the gallery? I don't see an empty space - I see 10 thumbnails with space between them -

Re: [css-d] floats making rows, not columns.

2006-05-22 Thread nooluyo?
understood, it's working right now. but the problem is: how can i tell the width should be 100%-250px. :) because left column should be 250 px. and right column should be whatever there's left screen space. thanks, alp cj wrote: the problem is your width: 100%; here: .mustread{

[css-d] Holy grail and left column jumping

2006-05-22 Thread Ian Young
Been developing the Holy Grail code from ALA. Added drop down menu to it which I never had any problem with. In IE, the left column jumps into centre on hovering over the menu Stripped out version is at http://www.iyesolutions.co.uk/templates/new-dol/dol-test.html I would be interested in your

[css-d] RuthsarianLayouts: Skidoo broken on ie7... oo, that's nice...

2006-05-22 Thread nooluyo?
http://webhost.bridgew.edu/etribou/layouts/skidoo/demos/two_left_left.html left column background color does not work. wov, i've downloaded this template as a complete css template with all the hacks for different browsers etc, and i see that it is broken on ie7. gonna get a shotgun and kill

Re: [css-d] Drop-down menu Safari wackiness

2006-05-22 Thread Andrew Gregory
On Mon, 22 May 2006 21:55:10 +0800, benjy rose :: B:COMPLEX Creative [EMAIL PROTECTED] wrote: I've created a dropdown menu that works fine on FF/Mac, FF/Win, and IE/Win, but has some weirdness on Safari. Basically, when the menu first dropsdown, it doesn't display the full width of the

Re: [css-d] floats making rows, not columns.

2006-05-22 Thread Ann Adamcik
It looks like the width on mustread is set to 100% - too wide to fit in the available space after the 1st column. Set it to something less than the page width minus the 1st column. Btw, I find that setting borders on things really helps to debug problems like this - you can see just what's

Re: [css-d] 5 column CSS box

2006-05-22 Thread Felix Miata
On 06/05/22 09:54 (GMT-0400) skye estes apparently typed: On 5/22/06, Jono [EMAIL PROTECTED] wrote: Brian Jones wrote Tue May 16: When using this css for each div, how can I make it so that the divs expand with the size of the text One option is to size absolutely everything that needs

[css-d] Problem with Firefox

2006-05-22 Thread Marcelo Wolfgang
Hi list, I've made a website and I'm having an issue with firefox that I can't solve. The page in questions is this one: http://work.grillo.tk/vilarigno/produtos.html I have a gap at the foot of the table on the left that I don't know how to solve. Can anyone help me here ? TIA Grillo

Re: [css-d] Paragraph links

2006-05-22 Thread Daniel Kessler
On May 22, 2006, at 12:02 PM, Michael Geary wrote: Go get those Firefox extensions I mentioned - they will clear up any misunderstandings! :-) alright, I will. This is a section of your latest code as displayed by FireBug: body class=tan div class=margin_15 br/ p /p

[css-d] Positioning Left, middle, right

2006-05-22 Thread Travis Killen
I am trying to position year, place, and city span containers left, middle, and right respectively. Any idea's? http://936webdesign.com/index.php?option=com_contenttask=viewid=7Itemid=7 Thank you. __ css-discuss [EMAIL

Re: [css-d] Empty space in image gallery.

2006-05-22 Thread Cem Meric
Look: http://www.pripisa.sk/ubytovanie/penzion-zeleny-dom--rajecke-teplice-18/ Why is there this empty space in the gallery? Can you be a bit more specific please since the page you're referring to is not in English neither a picture gallery? -- Cem Meric | http://www.kalkadoon.net/

Re: [css-d] Layout Done... Now what about content?

2006-05-22 Thread Cem Meric
1. I'm still a little unsure about when tables SHOULD be used. For example, we very commonly build forms for data insert/edit in our web apps. Normally, we'd use a two column table, the left cells being for the form field label, and the right cells being used for the form fields

Re: [css-d] Problem with Firefox

2006-05-22 Thread Andrew Gregory
On Tue, 23 May 2006 04:30:35 +0800, Marcelo Wolfgang [EMAIL PROTECTED] wrote: I've made a website and I'm having an issue with firefox that I can't solve. Also in Opera... The page in questions is this one: http://work.grillo.tk/vilarigno/produtos.html I have a gap at the foot of

[css-d] Help with layout.

2006-05-22 Thread Chris Jackson
Im new to css and im looking for help in coding a simple layout. Can someone direct me to some resources of generate a simple example page for me? Im wanting to make my site have this layout: http:/2advent.com:81/CSSLayout1.gif im wanting it to be a centered layout on the browser window.

[css-d] spacing problem in IE windows

2006-05-22 Thread Dale Lists
Hello, Having a spacing problem with IE 6.x on Windows. the URL is: http://www.conditioncritical.net/test.php the CSS is: http://www.conditioncritical.net/css/test.css The spacing 'problems' are with the top random image along the top, there is more white space in IE that doesn't appear in

Re: [css-d] Problem with Firefox

2006-05-22 Thread Philippe Wittenbergh
On May 23, 2006, at 5:30 AM, Marcelo Wolfgang wrote: The page in questions is this one: http://work.grillo.tk/vilarigno/ produtos.html I have a gap at the foot of the table on the left that I don't know how to solve. Can anyone help me here ? Have you considered using a real html table

Re: [css-d] Positioning Left, middle, right

2006-05-22 Thread Roger Roelofs
Travis, On May 22, 2006, at 7:08 PM, Travis Killen wrote: I am trying to position year, place, and city span containers left, middle, and right respectively. Any idea's? http://936webdesign.com/index.php? option=com_contenttask=viewid=7Itemid=7 First think about your data. Divs and

Re: [css-d] Can't get rid of IE margin!

2006-05-22 Thread Gunlaug Sørtun
Eystein Alnaes wrote: Can someone please tell me why I can't get rid of the margin between the main content and the right column? http://www.eystein.no/test/xrs/template_om.php I have no idea, and no time to look for the correct bug. However, a little re-styling in the IE-stylesheet seems