[css-d] CSS2: IE overflow problem

2005-11-01 Thread Matthijs van de Water
Hi all, I've been struggling with a XHTML/CSS2 design that should work in both IE and FF (recent versions) and have come accros a problem, best explained by this example: http://www.matthijs.net/overflow_problem.html (Short description: two-column menu/contents layout with a large table the conten

Re: [css-d] CSS 3 - Multiple Backgrounds ?

2005-11-01 Thread Christian Heilmann
> Is there something like multiple backgrounds in css 3 ? Yes http://www.w3.org/TR/2005/WD-css3-background-20050216/#layering So far only Safari supports it (AFAIR) http://webkit.opendarwin.org/blog/?p=15 -- Chris Heilmann Blog: http://www.wait-till-i.com Writing: http://icant.co.uk/ Binaries:

[css-d] CSS 3 - Multiple Backgrounds ?

2005-11-01 Thread Martin Petrov
Is there something like multiple backgrounds in css 3 ? __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.

Re: [css-d] Suckerfish blues (again)

2005-11-01 Thread Chris Akers
> The original problem is the fact that I had to reduce the size of the > text via "font-size: 1px" to get it to render properly on IE6. To me > that seems rather hacky and I was wondering if there was any more > elegant way of achieving this. Try #nav li { float: left; overflow:

Re: [css-d] question

2005-11-01 Thread Christian Heilmann
> I have created 'custom' graphics for my bullet points > at the following website: This is one of the most common CSS problems. and can be solved by using a background image on the LI instead of list-style-image: http://css.maxdesign.com.au/listutorial/index.htm http://www.google.com/search?q=us

[css-d] question

2005-11-01 Thread Patrick Roane
Hey folks, I have created 'custom' graphics for my bullet points at the following website: www.cpcconstruction.net/1/homes.html *** HOVER YOUR MOUSE OVER THE 1ST COLUMN/2ND ROW HOUSE PIC. The trouble is: 1. the graphics are not showing up at all in IE, but they are in the right position and th

Re: [css-d] Tables and Vertical Alignment

2005-11-01 Thread Roger Roelofs
Richard, On Nov 1, 2005, at 10:27 AM, Richard Brown wrote: > Hi Guys > > I have been styling a site at: > catparid=347&merchant=Wilsons> > > The css is embeded. I have used tables but cannot get to grips with > vertical-alignment. I have

Re: [css-d] Suckerfish blues (again)

2005-11-01 Thread Graham Reeds
css.student wrote: >what are the problems? All that I can see is that the link text is not >being hidden...anything else? > >to hide the text, you'll need to edit the markup: >link > >and the css, accordingly: > >li a b {visibility:hidden;} > >- CSS Student > > >On 10/31/05, Vicki Stebbins <[EMAIL

Re: [css-d] Problem setting width on an a link

2005-11-01 Thread Christian Montoya
Float things left: li { float:left; } They'll line up. You would probably need to have a clearing element afterward, just in case. br { clear:left; } -- -- C Montoya rdpdesign.com ... liquid.rdpdesign.com ... montoya.rdpdesign.com

[css-d] Odd border + padding behavior: cross-browser

2005-11-01 Thread Daniel LeVangie-Stricklen
Hi all, I've trolled through the list archives, a little of evolt, and, of course, Google, to no avail. I consulted positioniseverything.net and quirksmode.org. The issue I have seems simple enough that I'd have turned it up on any of those sources, but, alas, that's not the case. So, please re

[css-d] Server issues

2005-11-01 Thread Tom Livingston
I'm sending this blind. . . Can a list mom contact me off list please. Since the server switching that I heard about from a WSG lister, I am not receiving any messages from the CSS-D list. Thanks! -- Tom Livingston Senior Multimedia Artist Media Logic www.mlinc.com Using Opera's revolution

Re: [css-d] Site Page Check please.

2005-11-01 Thread tedd
David: I'll try to answer your questions as I can -- for now: >Why is each top level item in a list with just one item in it? To mimic the typical menu layout you find in applications. You see, in any application you may have, the top menu item is usually a category and, as such, seldom takes

Re: [css-d] Missing border in FireFox

2005-11-01 Thread Ingo Chao
Tom Dell'Aringa wrote: > ... I have the typical UL vertical left > navigation on one of my sites. In FireFox/Mozilla only, the separating bottom > border lines tend to > disappear at certain rates. I read somewhere this was an issue with relative > font sizing, but I > tried changing the font si

Re: [css-d] Newbie in CSS Questions

2005-11-01 Thread Anthony Ettinger
left column right colum #leftcolumn { float: left; } #rightcolumn { float: right; } if you need to clear the parent (ie - with background-color ), then google "site:positioniseverything.com clearfix" Here's an example 3-column layout I did: http://chovy.dyndns.org/layout/three-column

[css-d] Newbie in CSS Questions

2005-11-01 Thread Reynier Perez Mira
Well as you can see in the subject of the email, I'm newbie in use CSS. Investigating and do some search on Internet I found that page contains DIV are more practically than pages contains only tables and other HTML elements. Now I pass all the code of my site to DIV because all of them are build u

[css-d] Page not printing properly in IE

2005-11-01 Thread Fred Boulton
The following page prints fine in FireFox but in IE6 the first printed page is o.k. but the 2nd is not. If I remove the 3 lower right-hand pictures the printout is fine. I've spent too many hours trying to fix the prob and I'm hoping someone on the list can see what's happening. Thanx Fred Boulto

Re: [css-d] Site Page Check please.

2005-11-01 Thread Christian Heilmann
> > Good job! One comment/question: have you > > tried/considered keyboard navigation? Would it be > > possible to update the code to accommodate tabbing and > > selection of child sub menus in the drop downs using > > the keyboard? > > I wrote a script to take care of this. It goes only one level

Re: [css-d] Site Page Check please.

2005-11-01 Thread Thierry Koblentz
Krassy wrote: > Good job! One comment/question: have you > tried/considered keyboard navigation? Would it be > possible to update the code to accommodate tabbing and > selection of child sub menus in the drop downs using > the keyboard? I wrote a script to take care of this. It goes only one level

Re: [css-d] Suckerfish blues (again)

2005-11-01 Thread css.student
what are the problems? All that I can see is that the link text is not being hidden...anything else? to hide the text, you'll need to edit the markup: link and the css, accordingly: li a b {visibility:hidden;} - CSS Student On 10/31/05, Vicki Stebbins <[EMAIL PROTECTED]> wrote: > At 11:26 AM

[css-d] Problem setting width on an a link

2005-11-01 Thread Ryan Tyer
Hello all. My basic problem is this: I need to get an input on the same line as an . The needs to have a width set and right padding (trying to get the inputs to line up, ala a table. I don't want to use a table in this case, because we're going to have a nested tree of information). Is there

Re: [css-d] Site Page Check please.

2005-11-01 Thread Krassy
--- tedd <[EMAIL PROTECTED]> wrote: > http://www.sperling.com/examples/menuh/ > --- for how it works, looks, and if it is > technically correct. Hi Tedd, Good job! One comment/question: have you tried/considered keyboard navigation? Would it be possible to update the code to accommodate tabbing a

Re: [css-d] Site Page Check please.

2005-11-01 Thread David Dorward
On 01/11/05, tedd <[EMAIL PROTECTED]> wrote: > Please review this page -- > http://www.sperling.com/examples/menuh/ In Opera, the drop down menu appears over the preceeding paragraph and not in the gap. It suffers the usual problem of requiring users to have the motor skills to track the menu exa

[css-d] Site Page Check please.

2005-11-01 Thread tedd
Hi gang: Please review this page -- http://www.sperling.com/examples/menuh/ --- for how it works, looks, and if it is technically correct. Thanks in advance for your review, suggestions, or corrections. tedd --

Re: [css-d] Space after List Items

2005-11-01 Thread jordan WOLLMAN
Cancel that order! I Found an old post on here about it. Seemed I had failed to specify a width. :D Thanks. Jordan WOLLMAN // Ariamedia Corporation > I¹ve come across this problem repeatedly... I cannot find a way to fix it. I > thought I had found one, but it doesn¹t seem to make a difference.

[css-d] nested ul question

2005-11-01 Thread Schalk
Greetings All I am currently developing a menu that uses a nested within an , nothing new here. However, what I want to do is that when the is clicked the nested should show and push down the rest of the 'top-level' elements not, display over them. Anyone knows of a tutorial etc. on this u

[css-d] Tables and Vertical Alignment

2005-11-01 Thread Richard Brown
Hi Guys I have been styling a site at: The css is embeded. I have used tables but cannot get to grips with vertical-alignment. I have styled the tables using css and used vertical-alignment: top; to get

[css-d] Space after List Items

2005-11-01 Thread jordan WOLLMAN
All, I¹ve come across this problem repeatedly... I cannot find a way to fix it. I thought I had found one, but it doesn¹t seem to make a difference. url: http://www.fringeimage.com/ css: http://www.fringeimage.com/assets/styles/global.css The li¹s in the nav at the top (two rows of links) has sp

[css-d] 100% Height Issues

2005-11-01 Thread jordan WOLLMAN
Hello all, I recently launched my site: http://www.blueplasmarecordings.com/ Relevant CSS: http://www.blueplasmarecordings.com/assets/styles/global.css The height thing again. Seems like this is a problem I can¹t seem to get right! Any 404 page is a good example. Works fine on the Mac FF and Saf

Re: [css-d] background-position problem in Safari

2005-11-01 Thread Roger Roelofs
Beth, On Oct 31, 2005, at 11:03 AM, Creighton, Beth wrote: > Hi, I'm redoing my personal blog: http://astarwithin.com and I can't > seem to > get my background to work correctly in Safari. It completely ignores > the > background positioning and moves it to the default position (0px 0px). What

[css-d] Missing border in FireFox | Mozilla in vertical menu using UL

2005-11-01 Thread Tom Dell'Aringa
This was part of another question I asked. I was able to solve the content box issue, so this is more specific to my other problem which remains unsolved. I have the typical UL vertical left navigation on one of my sites. In FireFox/Mozilla only, the separating bottom border lines tend to disapp

Re: [css-d] IE and the horse it rode in on...

2005-11-01 Thread Ingo Chao
Rob Day wrote: > ... As I understand > it, when a PNG is specified as a background in CSS with > AlphaImageLoader filter applied AND that element is absolutely > positioned, links in that element (or its children) will be messed up > in IE 6 (and 5.5, I believe). > > Here's my example: http://grou

Re: [css-d] IE6 border color change on refresh

2005-11-01 Thread Ingo Chao
Big John wrote: > Ingo Chao wrote: > >> Looks like as if the bug is triggered by a li with a background-image, >> "layout", and dotted or dashed border. Depending on the vertical >> starting point of the ul, different parts of the page content is >> mirrored into the space between the dots of t

Re: [css-d] Hover Persistence in CSS

2005-11-01 Thread Roger Roelofs
Jared, On Oct 31, 2005, at 1:19 PM, Jared Nielsen wrote: > I'm rebelling against javascript (for the hover states) in my tabular > menus > so I'm seeking some guidance > > It all works swimmingly, but the "active" state is what I want to > persist > once they have clicked on it. Having a 'liv

[css-d] white gaps between divs inIE6

2005-11-01 Thread William Gates
Many thanks Georg - problem fixed. William __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_sup

Re: [css-d] white gap between two divs in IE6 Win

2005-11-01 Thread webmaster
Hi there, You posted 10 hrs ago so maybe you've fixed this? I don't see any gap on IE6 win xp. Cheers, Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of William Gates Sent: Monday, October 31, 2005 2:25 PM To: css-d@lists.css-discuss.org Subject: [css

Re: [css-d] white space in listitem menu

2005-11-01 Thread Roger Roelofs
Maarten, On Oct 31, 2005, at 7:27 AM, Maarten Reynders wrote: > I'm building my first "table-less" site with s and css. But now > I've got a problem which is driving me nuts for over 3 hours. You can > check the site at http://www.inventis02.be/. In firefox everything is > fine, but when you c

Re: [css-d] IE6 border color change on refresh

2005-11-01 Thread Big John
Ingo Chao wrote: > Looks like as if the bug is triggered by a li with a background-image, > "layout", and dotted or dashed border. Depending on the vertical > starting point of the ul, different parts of the page content is > mirrored into the space between the dots of the border. Again and ag

Re: [css-d] site check - Omega-Tek.com

2005-11-01 Thread Ingo Chao
Philippe Wittenbergh wrote: > Bug 286368 > > I think. > The outline-offset is as good a workaround as possible. Thanks, Philippe :) Interesting discussion, I hope they don't ship 1.5 with the need for that workaround. Ingo -- http://www.satz

Re: [css-d] Vertical Scroll not working in Mozilla

2005-11-01 Thread Roger Roelofs
Tim, On Oct 31, 2005, at 5:44 PM, Tim Robertson wrote: > Hi, > I'm VERY new to CSS and am attempting a page with three vertical div > areas. > -First area - menu - static - no scroll > -Second area - content - scroll as needed > -Third area - static - no scroll > > My page works fine in Internet

Re: [css-d] background

2005-11-01 Thread Chris Akers
> Can you stretch a background image like a windows desktop? > i wish to have a gradient background and i wish to stretch it based on the > resolution On background images, no. On regular images, yes. But that is bad, bad, bad. Definitely don't do this: http://www.w3.org/TR/html4/strict.dtd";>

Re: [css-d] site check - Omega-Tek.com

2005-11-01 Thread Philippe Wittenbergh
On 1 Nov 2005, at 12:37 am, Ingo Chao wrote: > I mentioned in another thread [1] on that URL Christian provided that >#rightnav a:active, >#rightnav a:focus {outline-offset: -1px;} > > seemed to fix it at that specific moment in Fx1.5beta2 (Mozilla/5.0 > Windows; U; Windows NT 5.1; en-US;