Re: [css-d] scroll to a particular item automatically within scroll area

2005-08-03 Thread Christian Heilmann
Hi, One of my applications demands the following. There is a long list of items with radio buttons in a scroll area ( a 'div' item styled with the overflow:auto option ). The user can click on any of the items and when he does this some processing happens at the backend and the

OFF-LIST Re: [css-d] Is there any workaround to this bug (overflow:visible;)?

2005-08-03 Thread Uwe Kaiser
Roberto Gorjão schrieb: Olá Uwe! I must confess that I had not understood your solution in first place. If we skip the position:relative; rule in the first container and apply it to the second container, with a negative value for the margin-right rule proportional to the wanted width (in

[css-d] Negative margin, border dispute in IE Win

2005-08-03 Thread Travis Nep Smith
OK, so I'm trying to create a box like this: +--+ / | |---| | | | | | | | | +---| `---+ Here's the URL of a test case so you can see the problem (in IE Win):

Re: [css-d] Is there any workaround to this bug (overflow:visible;)?

2005-08-03 Thread Ingo Chao
forgot: If you shrink the window to about 300-400px, the orange container starts to grow again. -- http://www.satzansatz.de/css.html __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List

Re: [css-d] Negative margin, border dispute in IE Win

2005-08-03 Thread Ingo Chao
Travis Nep Smith wrote: http://www.hopstudios.com/nep/rightside_error.htm I thought I could just make a box with side borders and no top border, create an image that was 2 px wider than the box, and use a -2px negative left margin on the image to yank it out, over the left border. but when

Re: [css-d] clearing a float within a float

2005-08-03 Thread Jim Davis
Hi, Here is a link that may help you with the problem: http://www.positioniseverything.net/easyclearing.html Jim On 8/3/05, Mark Renn Caluag [EMAIL PROTECTED] wrote: is there a way to [clear floats]... doing this pushes #others below the height of #sidebar. i only want to clear the float

RE: [css-d] full height tables - what's the best way?

2005-08-03 Thread Pringle, Ron
I'm using an xhtml doctype on my pages and am not able to have table height be 100%. When I change the doctype to an html traditional with no url, though, the table displays correctly at the full page height. Try adding height:100% to the HTML and the BODY tags. Also, I believe that with

RE: [css-d] full height tables - what's the best way?

2005-08-03 Thread Pringle, Ron
Apologies, my last solution wasn't quite there. This one works in both IE6 and Firefox 1.0.6: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd; html style=height:100%; head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 titleBorder

[css-d] How to handle higher DPI?

2005-08-03 Thread Sam Brown
Just after the launch of our newly redesigned site (http://www.networksolutions.com) we discovered there are problems displaying pages in IE on some displays using a higher DPI[1]. As near as I can figure it, IE scales the rendered page based on the DPI of the display in an effort to keep things

[css-d] seperation of styles

2005-08-03 Thread Scot Schlinger
In working on my first project, I have come across the following dilemma: The site design that I instituting will have a different look for the body of the home page versus the rest of the pages thereafter. My style sheet for the portion of the site that pertains to this area is getting rather

Re: [css-d] How to handle higher DPI?

2005-08-03 Thread Felix Miata
Sam Brown wrote: [1] DPI on most displays is set to 96ppi, however, on this particular laptop we were shown, the default (and shipping DPI) was 120ppi on a widescreen display. Though I could increase the DPI on my CRT to 120ppi, I could not reproduce the effect. Try higher. Some people go

Re: [css-d] seperation of styles

2005-08-03 Thread Arnie Shafer
Hi Scott, I still classify myself as a newbie too. I will be interested in what the pros have to say. But I think you solution might be to create two style sheets. Call one for your home page, call the second one for all other pages. hth, Arnie - Original Message - From: Scot

[css-d] Preventing Border Slant, where they join?

2005-08-03 Thread Kevin Cannon
Hi, Is it possible to prevent the border slant that happens when 2 different coloured borders meet? e.g. http://www.infimum.dk/HTML/slantinfo.html I want there to be a solid edge on both side, not an angled join. I'm expecting that it's not possible, but though to check before I give in to

[css-d] site check - opera 7.54

2005-08-03 Thread Tekin Suleyman
Hi. New to css-discuss, but am learning so much, nice to see such an active, helpful mailing list. Been working on this website for a while, finally got it to the stage where I'm happy with how it looks in IE, Firefox, Opera 8, but it plays up with my windows install of Opera 7.54.

Re: [css-d] Is there any workaround to this bug (overflow:visible;)?

2005-08-03 Thread Roberto Gorjão
Ingo, Uwe, I'm much obliged to both of you. I'm sorry if I've extended this discussion more than needed because of the errors of the examples I've built and uploaded too quickly. I hope I've got it this time... I've set three examples, side by side, so each method merits and demerits can be

Re: [css-d] seperation of styles

2005-08-03 Thread Paul Novitski
At 07:22 AM 8/3/2005, Scot Schlinger wrote: In working on my first project, I have come across the following dilemma: The site design that I instituting will have a different look for the body of the home page versus the rest of the pages thereafter. My style sheet for the portion of the site

Re: [css-d] seperation of styles

2005-08-03 Thread Schalk Neethling
Scott Here is an interesting article on the subject: http://www.digital-web.com/articles/architecting_css/ Scot Schlinger wrote: In working on my first project, I have come across the following dilemma: The site design that I instituting will have a different look for the body of the home

RE: [css-d] Q: Son of a Suckerfish

2005-08-03 Thread Peach Lynda L Contr 96 CG/SCTOA
I'm familiar with that JavaScript -- we stopped using it quite some time ago. Check that the JS doesn't have something that is directed to specific versions of IE. It could have something also setting the CSS that is causing the problem. If you find something in the JS dealing with CSS, I think

RE: [css-d] seperation of styles

2005-08-03 Thread Scot Schlinger
global.css Styles that apply site-wide index.css Styles for the home page only (when that's significantly different from the rest of the pages) How do you actually include each file in the html then? I have never worked with more than one style sheet... link rel=stylesheet

RE: [css-d] seperation of styles

2005-08-03 Thread Dan Kletter
On Wed, 3 Aug 2005, Scot Schlinger wrote: How do you actually include each file in the html then? I have never worked with more than one style sheet... Inside your head/head tags use: style type=text/css media=all @import /path/to/global.css; @import /path/to/index.css;

RE: [css-d] site check - opera 7.54

2005-08-03 Thread Tekin Suleyman
Ok, my (x)html is now valid. I've also added the IE conditional to get rid of the flash in everything but IE (my head is hurting from all the z-index experimentation!). But the original question still stands, is it worth attempting to rectify the rendering issues with the pop up windows in opera

Re: [css-d] firefox is displaying unwanted gap between menu and below content, other issues

2005-08-03 Thread Ingo Chao
Bruce Gilbert wrote: http://www.wealthdevelopmentmortgage.com/test/test_file.htm in FF 1.0 PC, I am getting unwanted spacing between the top green menu and the flash file below which I can't come up with a fix for. UA's have different defaults for some elements. ul#navlist

Re: [css-d] Is there any workaround to this bug (overflow:visible;)?

2005-08-03 Thread Roberto Gorjão
I've also created a fluid version of the previous page: http://www.castelosnoar.com/studies/aboutCSS/IE_bugs_hacks/overflow_visible_fluidVersion.htm Cumprimentos, Roberto --- Roberto Gorjão wrote: I've set three examples, side by side, so each method merits and

Re[2]: [css-d] seperation of styles

2005-08-03 Thread Steve Clay
Wednesday, August 3, 2005, 11:36:27 AM, Scot Schlinger wrote: link rel=stylesheet href=style/global.css type=text/css media=screen / link rel=stylesheet href=style/index.css type=text/css media=screen / Or is there a different/better way? There are /different/ ways, but there's nothing

[css-d] Layer Behaviors CSS

2005-08-03 Thread Kathi Cushman
Hi, I'm still a beginner with CSS--I'm working on a site that has hide/show javascript layer behaviors generated in Dreamweaver (you mouse over an image and text layers/divs change to different text layers). Is there a way to do this using CSS, the way one does hover and on click, instead of

Re: [css-d] seperation of styles

2005-08-03 Thread Gunlaug Sørtun
Steve Clay wrote: There are /different/ ways, but there's nothing wrong with having multiple link elements for CSS as you have above. http://meyerweb.com/ has 6 of them. As a side note: I use more than 20 stylesheet links on some pages... Just remember to limit the number to 30, as IE/win

[css-d] [Re-Post] Border Trouble w/ Form Column

2005-08-03 Thread Tim S. Raisbeck
Thought I would re-post this again in the hopes of getting a suggestion:0) The following page: http://www.charlottes-saddlery.com/giftcard.htm has issues with the right column border(left) being moved over to the left column. It occurs in IE or IE related browsers but not Mozilla. It

Re: [css-d] Q: Son of a Suckerfish

2005-08-03 Thread Michiel van der Blonk
Hi My guess is you don't. You probably want overlib for it's popups/tooltips, which can be done using pure css. see http://psacake.com/web/jl.asp or http://www.meyerweb.com/eric/css/edge/popups/demo.html You're using CSS for the menu anyway! Anyway, it's been a long time since I used

[css-d] IE Win won't display margins correctly

2005-08-03 Thread patrick mattison
I'm sure this is a common problem but I can't seem to figure it out. in IE for Windows #container and #bricks seem to have an inherent left margin. I tried adding an IE style sheet with negative margins but that didn't work. Also, the #footer margin-top -300 isn't being applied in IE Windows.

Re: [css-d] Layer Behaviors CSS

2005-08-03 Thread Janet Lynn Ford
Hi, I'm still a beginner with CSS--I'm working on a site that has hide/show javascript layer behaviors generated in Dreamweaver (you mouse over an image and text layers/divs change to different text layers). Is there a way to do this using CSS, the way one does hover and on click, instead of

Re: [css-d] fixed width table column

2005-08-03 Thread Zoe M. Gillenwater
Arie wrote: i've have problem on creating fixed width column table. how can i create a table cell that always have fixed width even if it is empty. and how can i override browser width so that table width will be based on its column width. Arie, Can you send a link to a page that exhibits

Re: [css-d] clearing a float within a float

2005-08-03 Thread Zoe M. Gillenwater
Mark Renn Caluag wrote: is there a way to this div id=sidebar Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh /div div id=content div id=main-article img src=something.gif / h3title/h3 p/p div class=clearleftnbsp;/div /div div id=others/div /div

Re: [css-d] Layer Behaviors CSS

2005-08-03 Thread Thierry Koblentz
Kathi Cushman wrote: Hi, I'm still a beginner with CSS--I'm working on a site that has hide/show javascript layer behaviors generated in Dreamweaver (you mouse over an image and text layers/divs change to different text layers). Is there a way to do this using CSS, the way one does hover and

[css-d] a few more issues in FF (perhaps dealing with float clearing)

2005-08-03 Thread Bruce Gilbert
Hey guys, I am having a few more issues at : http://www.wealthdevelopmentmortgage.com/test/test_file.htm CSS: http://www.wealthdevelopmentmortgage.com/test/WDM.css when reviewing in FF, I notice the image (the key in hand image), has some unwanted space between the top of the image and the

[css-d] Newbie: Text Align items in a dropdownlist?

2005-08-03 Thread Lisa Carter
I am a newcomer that is working on a project using vb.net and asp.net. We are using CSS to format our web forms. I have been able to get the text in the label and textbox controls to center align and would like for the items in the dropdownlist to be centered as well. Can anyone help? Thanks

[css-d] fieldset margin issue with Safari

2005-08-03 Thread chuck clark
Hello, Safari seems to be ignoring margin on my form fieldset. I want spacing between fieldsets in a form and Safari just crams them together, all other browsers i have tested put space between them. form fieldset{margin:20px 0; padding:0; border-style:none; clear:both;}

[css-d] Ghost In the Box difficulties

2005-08-03 Thread Valette Ragland
I am having difficulties understanding the Ghost In the Box IE hack [1]. In my test page [2], I cannot seem to get my fixed bottom div to stay put in IE: it scrolls with the rest of the content instead of staying put and letting the content scroll behind it. I have played with the fixed footer

Re[2]: [css-d] Negative margin, border dispute in IE Win

2005-08-03 Thread Steve Clay
Wednesday, August 3, 2005, 6:03:17 PM, Travis wrote: http://www.j-learning.org/index_working.php In IE, all boxes get the fourth background. Why's this? How can I fix it? It doesn't look like a coding error, but all I can do is suggest another technique. Rather than use 4 separate images,

Re: [css-d] IE Win won't display margins correctly

2005-08-03 Thread D Ross
Try adding display: inline to all floated elements that have margins. On Aug 3, 2005, at 3:34 PM, patrick mattison wrote: I'm sure this is a common problem but I can't seem to figure it out. in IE for Windows #container and #bricks seem to have an inherent left margin. I tried adding an IE

[css-d] clear issue in everything but IE

2005-08-03 Thread John Haas
The URL: http://www.buyblue.org/stg/node/87 (user/pass: buyblue:letmein) At the bottom of the Center column lies the Company discussion area. It's div (profile_forum) seems to be clearing left (to the bottom of the left column) in all but IE, no matter what clear property i give it.

[css-d] Forms select form

2005-08-03 Thread Abyss Information
Hi all, Does anyone have any good select form styling code? because the code that I am using doesn't seem to work. select { Background-Image: URL(../img/DefaultCSS/InputBackground.png); Background-Color:#fff; Border:1px Solid #000; Color:#000; Font-Family:Times

[css-d] 2 column List Issue In Firefox

2005-08-03 Thread Brian Peddle
I am trying to do a 2 column list. In IE 6.0 it looks as I wanted it: http://www.savedbyzero.org/test/csshelp.html But in Firefox the list start to go to new lines. The list is in the right column there are 2 inside a box. I have messed with widths, floats, display etc and no luck. Any help

[css-d] Disappearing (sometimes) background - IE/Win

2005-08-03 Thread Travis Nep Smith
This list has been so helpful with my previous two bugs, I thought I'd try one last issue that I've been working on for ages, and I'm getting very stumped. http://www.j-learning.org/index_working.php/build_it/ In Firefox and Safari, all colors appear properly in the center and left column.

Re[2]: [css-d] Negative margin, border dispute in IE Win

2005-08-03 Thread Travis Nep Smith
At 2005/08/03, Steve Clay Said unto me: Wednesday, August 3, 2005, 6:03:17 PM, Travis wrote: http://www.j-learning.org/index_working.php In IE, all boxes get the fourth background. Why's this? How can I fix it? It doesn't look like a coding error, but all I can do is suggest another

Re: [css-d] Newbie: Text Align items in a dropdownlist?

2005-08-03 Thread Matthew Ohlman
Lisa Carter wrote: I am a newcomer that is working on a project using vb.net and asp.net. We are using CSS to format our web forms. I have been able to get the text in the label and textbox controls to center align and would like for the items in the dropdownlist to be centered as well. Can

Re: [css-d] Disappearing (sometimes) background - IE/Win

2005-08-03 Thread Matthew Ohlman
Travis Nep Smith wrote: In Firefox and Safari, all colors appear properly in the center and left column. But in IE for Windows, the top background color and some of the text disappear: Specifically, the Build It! blue header in the center column, and the Plan It green header in the left

Re: [css-d] Issue with Safari

2005-08-03 Thread Roger Roelofs
Jeetu, On 8/1/05, Jeetu Mahtani [EMAIL PROTECTED] wrote: Hello - We had a designer create the following site for us - http://www.locobazooka.com. Unfortunately he is on vacation right now and we seem to have run into an issue with Safari. In Safari the menu items (Home, Info, Who's

Re: [css-d] Disappearing (sometimes) background - IE/Win

2005-08-03 Thread Steve Clay
Wednesday, August 3, 2005, 9:10:12 PM, Travis wrote: http://www.j-learning.org/index_working.php/build_it/ But in IE for Windows, ...you get peek-a-boo bugs (probably). Most harmless fix: add position:relative to the float and float container.

Re: [css-d] Print Preview floating elements

2005-08-03 Thread Roger Roelofs
Andre, On 8/2/05, medial | André Huf [EMAIL PROTECTED] wrote: i am trying to put together a print style sheet for an existing page where i am only allowed to add my print stylesheet - not to change the existing html or css. Furthermore the layout of the content area should look the same in

Re: [css-d] Disappearing (sometimes) background - IE/Win

2005-08-03 Thread Travis Nep Smith
At 2005/08/03, Matthew Ohlman Said unto me: Travis Nep Smith wrote: In Firefox and Safari, all colors appear properly in the center and left column. But in IE for Windows, the top background color and some of the text disappear: Specifically, the Build It! blue header in the center

Re: [css-d] Negative margin, border dispute in IE Win

2005-08-03 Thread Ingo Chao
Travis Nep Smith wrote: (Though why IE insisted on using the wrong background image I'll never know.) Can you provide an to the hover/background problem, please? Ingo -- http://www.satzansatz.de/css.html __ css-discuss

Re: [css-d] Disappearing (sometimes) background - IE/Win

2005-08-03 Thread Ingo Chao
Travis Nep Smith wrote: At 2005/08/03, Matthew Ohlman Said unto me: Sounds like the peek-a-boo bug. Try position everything: http://www.positioniseverything.net/explorer/peekaboo.html Thanks. I tried: a) adding position: relative to the floating DIVs, and I tried b) adding height: 100% to