[css-d] IE6 rounding bug?

2007-01-19 Thread Ben Liu
If you look at this test page (problem occurs in IE6 only): http://dev.gelatincube.com/jindo/ http://dev.gelatincube.com/jindo/common/master.css (css) There is a 1 pixel gap on the right side of the navigation tab, under the "legal" tab. Does anyone know if this is caused by some kind of IE6 roun

Re: [css-d] mousing over an unordered list and child list item broken

2007-01-18 Thread Ben Liu
On 1/18/07, Ben Liu <[EMAIL PROTECTED]> wrote: > I'm trying to make an animated navigation menu using unordered lists > and list items. Test page here- > > http://dev.gelatincube.com/jindo/ Sorry to respond to my own post, but I found the basis of a solution to

Re: [css-d] mousing over an unordered list and child list item broken

2007-01-18 Thread Ben Liu
> CSS: Your menu items consist of an anchor nested inside an > LI. Which element has been given the onmouseover behavior, A or > LI? Are they styled to be the same size? If this points to the > problem, I would style the anchor as a block and dimension it to > contain its contents, and let the

[css-d] mousing over an unordered list and child list item broken

2007-01-18 Thread Ben Liu
I'm trying to make an animated navigation menu using unordered lists and list items. Test page here- http://dev.gelatincube.com/jindo/ css here- http://dev.gelatincube.com/common/master.css (some css in-line and in head section of page, all javascript in head section of page). The problem: Whe

Re: [css-d] Firefox floated element onclick event ignored

2007-01-17 Thread Ben Liu
afari: http://www.optiledtech.com/ click on the "sign in" text in the header, left side. You should see registration form fields alpha-in and alpha-out as you click on "Sign In". - Ben On Jan 16, 2007, at 9:20 PM, Richard Grevers wrote: > On 1/17/07, Ben Liu <[E

[css-d] Firefox floated element onclick event ignored

2007-01-16 Thread Ben Liu
okay, admittedly this is not really a CSS question, but I was hoping someone on this list has come across this or is familiar with the problem. For some reason, in Firefox only (doesn't seem to apply to Safari or IE6/7), if you float an element and add an onclick event, Firefox ignores the onclick

Re: [css-d] Can't figure this out - Center a div with variable width

2006-11-04 Thread Ben Liu
Hi Mark, I ran into a similar problem about a year ago. I needed to build a horizontal nav bar that was variable in width depending on the number of menu options. Some users with admin privilege had more menu options than regular users so their menu bar would be wider. Since I did not know exactly

Re: [css-d] Looking for info on Firefox 2 Beta

2006-09-01 Thread Ben Liu
On Aug 31, 2006, at 6:02 PM, L. David Baron wrote: On Thursday 2006-08-31 14:57 -0400, Ben Liu wrote: Does anyone know where to find a list of CSS rendering changes in the now released Firefox 2 Beta? I poked around the developer.mozilla.org site and could not find anything specific to CSS

[css-d] Looking for info on Firefox 2 Beta

2006-08-31 Thread Ben Liu
Does anyone know where to find a list of CSS rendering changes in the now released Firefox 2 Beta? I poked around the developer.mozilla.org site and could not find anything specific to CSS equivalent to the MSDN blogs listing the CSS rendering changes in IE7. Thanks for any help. - Ben ___

Re: [css-d] Image Fading Effect w/ CSS

2006-06-19 Thread Ben Liu
at a lower opacity (which would have to be done in an image editing program like Photoshop), you could then swap between the two on hover using some CSS. - Ben On Jun 20, 2006, at 1:14 AM, TMH Design wrote: Couldn't you just change the opacity of an image? -Original Message----

Re: [css-d] Image Fading Effect w/ CSS

2006-06-19 Thread Ben Liu
You can do this with a:hover and two separate background images I think. - Ben On 6/20/06, TMH Design <[EMAIL PROTECTED]> wrote: > Look at this page please - > http://www.santarosadentist.com/enriching_lives.htm When you mouse over the > pictures the opacity changes, or so it would seem. Can thi

Re: [css-d] CSS Layout

2006-06-16 Thread Ben Liu
Oh and you are missing a lot of tags too, perhaps Ed's recommendation should be addressed first, you seem to have some html code to fix first before the CSS can be addressed. On 6/16/06, Ben Liu <[EMAIL PROTECTED]> wrote: > Oops, sorry. Now that I look at your html, that CSS r

Re: [css-d] CSS Layout

2006-06-16 Thread Ben Liu
ore information more information To assess the students' development of core abilities On 6/16/06, Ben Liu <[

Re: [css-d] CSS Layout

2006-06-16 Thread Ben Liu
Hi Debra, I might be wrong about this but I think the reason that extra gap exists between the 4 and the A is because margin is being added twice, once in the ul and once for the li that contains it. I might be wrong about this because browsers collapse margins between elements sometimes. A rule l

Re: [css-d] Dynamic CSS bar graph

2006-06-16 Thread Ben Liu
html or css? If it does belong in the CSS, it would have to be in-line because I don't think there is a way to write it dynamically into an outside linked style sheet. - BL On 6/16/06, Christian Montoya <[EMAIL PROTECTED]> wrote: > On 6/16/06, Ben Liu <[EMAIL PROTECTED]>

[css-d] Dynamic CSS bar graph

2006-06-16 Thread Ben Liu
Hello All, I've developed a simple online bar graph for a client. The page queries a database, tallies the total number of orders coming in from each US state and then draws a series of bar graphs to represent the number of orders. The report works fine expect when the user tries to print it. The

Re: [css-d] footerStickAlt method not working on my site

2006-06-10 Thread Ben Liu
Hi Brett, I feel your pain™. My suggestion might be a bit unwelcome on this message board but from personal experience, the only way I've been able to get a footer to stick consistently in all browsers is by using a table for layout. This is a pretty good resource if you want to go down t

Re: [css-d] Short CSS course - what should I teach?

2006-04-27 Thread Ben Liu
Hi Paul, I would approach it this way: I. Separation of style and content II. Where to put CSS: style sheets, between head tags, inline III. Block vs. Inline Elements IV. Margins, Padding, Border I think that is about all you can reasonably cover in 3 hours considering your other curriculum item

Re: [css-d] CSS editor?

2006-04-21 Thread Ben Liu
BBEdit http://barebones.com/products/bbedit/index.shtml On 4/21/06, SystemAdmin <[EMAIL PROTECTED]> wrote: > what do you guys (and gals) recommend as a CSS editor? > __ > css-discuss [EMAIL PROTECTED] > http://www.css-discuss.org

Re: [css-d] layout - not centered, not left aligned

2006-04-11 Thread Ben Liu
body {position: relative;} div#container {width: 900px; position: fixed; right: 0;} Anybody got something more elegant? On 4/11/06, Trey <[EMAIL PROTECTED]> wrote: > say you have a page/design that's 900px wide, but you want anyone > with a view portal of say 800px

Re: [css-d] how to keep footers at the bottom

2006-02-21 Thread Ben Liu
/29/ > > :) > > On 21 Feb 2006, at 15:38, Ben Liu wrote: > > > Thanks Jim, > > > > That's an interesting solution. I'm discussing it with the designer > > right now. We prefer to keep the footer pinned to the bottom and > > having the entire pag

Re: [css-d] how to keep footers at the bottom

2006-02-21 Thread Ben Liu
I've implemented the "man-in-blue" footerStickAlt technique on my test site and it seems to work quite well in Safari, IE5.5/6, breaks in IE7beta2 as expected. However, on my test site homepage (http://dev.gelatincube.com/gcpsiro/index.php) I use absolute positioning on the main content area to cre

Re: [css-d] how to keep footers at the bottom

2006-02-21 Thread Ben Liu
Hi cj, This looks more like what I need. Absolute positioning never seemed entirely "ready for primetime" to me, especially due to spotty browser implementation. I'll take a crack at my site using this technique and post back. - Ben On 2/21/06, cj <[EMAIL PROTECTED]> wrote: > the best footer sol

Re: [css-d] how to keep footers at the bottom

2006-02-21 Thread Ben Liu
/css/frames/ > Alex has done a lot more playing with this and helped me solve a problem > that Roger's didn't address. > > -- > Marc Luzietti > Flagship Project > Bayview Financial, L.P. > (305) 341-5624 > > > > > > "Ben Liu" &l

Re: [css-d] how to keep footers at the bottom

2006-02-21 Thread Ben Liu
> Ben, > > Just change one line: > > /* position:fixed for modern browsers - header and footer do not scroll */ > body>div#headerwrap { > position:absolute;<--- change from fixed to absolute > > > Jim > On 2/21/06, Ben Liu <[EMAIL PROTECTED]> w

Re: [css-d] how to keep footers at the bottom

2006-02-21 Thread Ben Liu
we desire. - Ben On 2/21/06, Jim Davis <[EMAIL PROTECTED]> wrote: > Ben, > > See this demo for a possible solution: > > http://www.456bereastreet.com/lab/cssframes/ > > Jim > > > On 2/21/06, Ben Liu <[EMAIL PROTECTED]> wrote: > > Thanks in advance for

[css-d] how to keep footers at the bottom

2006-02-21 Thread Ben Liu
Thanks in advance for any help. I'm trying to create a site that requires a horizontally stretching footer that is pinned to the bottom of the browser port. This I understand is a common issue in CSS design when a tables-based layout is not used. I referenced the article "Exploring Footers" by Bobb

Re: [css-d] two colored headers

2006-01-27 Thread Ben Liu
Thanks for response cj, and for correcting my spelling of Lerryyy. :-) On 1/27/06, cj <[EMAIL PROTECTED]> wrote: > i think spans are the way to go for this situation ... __ css-discuss [EMAIL PROTECTED] http://www.css-disc

[css-d] two colored headers

2006-01-27 Thread Ben Liu
Apologies if this has been answered before. What is the semantically correct method of coding a two color header? Is this the optimal syntax: LeroyJenkins .blue_part_of_the_header {color: blue;} .red_part_of_the_header {color: red;} Thanks for any help. - Ben Liu

Re: [css-d] some css guru help needed

2005-12-29 Thread Ben Liu
s <[EMAIL PROTECTED]> wrote: > Ben, > > On Dec 29, 2005, at 12:24 PM, Ben Liu wrote: > > > Got it pretty close using your suggestions. I still can't get the > > arrow to appear. The left padding applied to #navbar causes all the > > child li items to appear t

Re: [css-d] some css guru help needed

2005-12-29 Thread Ben Liu
tried placing the arrow.gif image as a background image to the entire ul#navbar, however, that doesn't solve the problem of aligning the line to the link text when the font is resized. On 12/29/05, kenny heaton <[EMAIL PROTECTED]> wrote: > On 12/29/05, Ben Liu <[EMAIL PROTECTED]

Re: [css-d] some css guru help needed

2005-12-29 Thread Ben Liu
Thanks Kenny, I'm going to try your suggestions. I would prefer to eliminate the dual list structure also, anything to make it more semantic. - Ben On 12/29/05, kenny heaton <[EMAIL PROTECTED]> wrote: > On 12/29/05, Ben Liu <[EMAIL PROTECTED]> wrote: > > I've b

[css-d] some css guru help needed

2005-12-29 Thread Ben Liu
y help or advice would be appreciated. Thanks, Ben Liu pequod communications__ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.or