Re: [css-d] 100% DIV height in Firefox 2.0

2007-01-19 Thread Matt Fielding
Firefox (and other good browsers) will calculate 'height: 100%' on any container from its parent. You have forgotten to declare height on div.shadow, so div.container defaults to 'height: auto'. Now, if you add the following... div.shadow {height: 100%; display: table; width: 810px; margin:

[css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
Hi All, One the page in the link, www.oneyed.com/mt . I want to be able to make that image as background in #banner within the CSS file so its the same on all pages. After looking at various pages and trying to understand the different types of coding, I put in this line ( background :

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Rick den Haan
Kevin J Pledger wrote: One the page in the link, www.oneyed.com/mt . I want to be able to make that image as background in #banner within the CSS file so its the same on all pages. After looking at various pages and trying to understand the different types of coding, I put in this line (

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Nick Mavros
Kevin J Pledger wrote: ... After looking at various pages and trying to understand the different types of coding, I put in this line ( background : url(images/mt2.jpg) #fff; ) and as I thought it wasnt visible. When the #fff is removed the image appears, but breaks the page. I want to be

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
Rick den Haan wrote: The background CSS property is a culmination of several individual properties. Does it work if you set those separately? I.e.: background-image: url(images/mt2.jpg); background-color: #fff; background-position: top center; background-repeat: no-repeat; If you want to put

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
Nick Mavros wrote ... I think this is the correct structure background: #fff url(images/mt2.jpg) no-repeat top left; The #fff is the background color If you don't place the no-repeat then the img will repeat in both axes. You can also use repeat-x or repeat-y if you want it to repeat in an axis.

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Nick Mavros
Kevin J Pledger wrote: Nick, Tried this and white background disappeared and still no image. Very frustrating .. Will keep on reading and trying. Thanks for your input. One always keeps learning.. Regards, Kevin Maybe you got the url wrong. The url you are using

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Rick den Haan
Kevin J Pledger wrote: Rick den Haan wrote: See http://www.w3.org/TR/CSS201/colors.html#propdef-background for more information. Tried the link you give and get *The URL path in your request doesn't match anything we have available.* My bad.

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
-Original Message- From: Nick Mavros [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 18:40 PM To: Kevin J Pledger Cc: 'Css-D Lists' Subject: Re: [css-d] calling an image from within the CSS Kevin J Pledger wrote: Nick, Tried this and white background disappeared and still

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick den Haan Sent: Friday, January 19, 2007 19:07 PM To: 'Css-D Lists' Subject: Re: [css-d] calling an image from within the CSS Kevin J Pledger wrote: Rick den Haan wrote: See

Re: [css-d] 100% DIV height in Firefox 2.0

2007-01-19 Thread Gunlaug Sørtun
Matt Fielding wrote: You say I'm using the old centering method, so I was wondering if there a new, more acceptable way of doing it? For what I need this obviously works fine, but for standards purposes I'm just curious if there's a more appropriate way of doing it. You already have the

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Rick den Haan
Kevin J Pledger wrote: I had tried that already but the minute I try that the code goes from this: #banner { background-color: #fff; background-image: url(images/mt2.jpg); background-repeat: no-repeat; background-position: top center; height:75px;

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
Hi Rick, I worked it out in between me sending and receiving your reply. I put in the full url that I was testing from and it pulled in the image. It was then I realised what you meant and when I put url('../../images/mt2.jpg') it worked. Don't know why I didn't think of that in the first

[css-d] Validating CSS problems.

2007-01-19 Thread Christopher Blake
Hi all, I am trying to validate this site; http://www.neilp.newwavemedia.co.uk/index.html http://www.neilp.newwavemedia.co.uk/stylefile/style1.css The xml now validates thanks to some wonderful help from david Laasko but the css won't. It has this error report; Servlet has thrown

Re: [css-d] Validating CSS problems.

2007-01-19 Thread Bjoern Hoehrmann
* Christopher Blake wrote: It has this error report; Servlet has thrown exception:javax.servlet.ServletException: Timed out This is some internal error, there is presumably nothing you can do about it. You should download the style sheet to your computer and use the file upload feature of the

Re: [css-d] Validating CSS problems.

2007-01-19 Thread ~davidLaakso
Christopher Blake wrote: I am trying to validate this site; http://www.neilp.newwavemedia.co.uk/index.html http://www.neilp.newwavemedia.co.uk/stylefile/style1.css It has this error report; Servlet has thrown exception:javax.servlet.ServletException: Timed out It (the w3c validation

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Michael Stevens
Being curious I visited that page and it did indeed have the properties listed in the order: ['background-color' || 'background-image' || 'background-repeat' || 'background-attachment' || 'background-position'] But, at the bottom of that property the example is given: P { background:

[css-d] Navigation not showing in IE 6 and other problems - added

2007-01-19 Thread David Roberts
Hi all, The URL is: http://www.campbeltowngrammar.org.uk/cgs/index.php/ campbeltowngrammar/index/ I forgot to add also that the 3 pictures on the home page, in IE, the last one goes below the other two for some reason. I have just started building this site and would like to get the

[css-d] Line-break priorities with nested floats?

2007-01-19 Thread Barney Carroll
Hi guys, I'm afraid I have more general position behaviour questions. div id=1/div div id=2/div div id=3 div id=3a/div div id=3b/div div id=3c/div /div All these divs are float:left, and the second level of divs are enough to make div 3 quite wide. Normally all three level 1

Re: [css-d] Line-break priorities with nested floats?

2007-01-19 Thread ~davidLaakso
Barney Carroll wrote: Hi guys, I'm afraid I have more general position behaviour questions. [message trimmed] Any answers? Possibly? A simple generic test page on your home computer to a public server with a clickable link to it in your post. Or does your government spy on that, too

Re: [css-d] How can I style a select drop-down list in Zen Cart

2007-01-19 Thread Rob Stevenson
On 18-Jan-07, at 11:28 PM, ~davidLaakso wrote: Rob Stevenson wrote: Site: www.artcardshop.com/store/ CSS: ... /includes/templates/Custom/css/stylesheet.css I'm trying to make the text of the Artists drop-down list on the left look like the other text in other sideboxes on the left, such as

[css-d] Colour diferences in IE and FF...

2007-01-19 Thread Mark Finney
Hi, I am working on a web site for my band, not really experienced with css but have done a lot of reading up. I would really appreciate some help and comments on the coding and whether I am heading in the right direction or not. Link to test site: http://www.quoaklecards.co.uk/test/ Firstly,

Re: [css-d] Colour diferences in IE and FF...

2007-01-19 Thread Michael Stevens
I can't positively say I know what UTF-8 encoded characters are but I see two things that make me wonder: 1. You are using #39; for apostrophes and I always use rsquo; and lsquo; for a apostrophes and single quotes and ldquo; and rdquo; for double quotes. 2. This line: pMuch Love amp;

[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

Re: [css-d] Colour diferences in IE and FF...

2007-01-19 Thread Brian Riley
Mark Finney wrote: Hi, I am working on a web site for my band, not really experienced with css but have done a lot of reading up. I would really appreciate some help and comments on the coding and whether I am heading in the right direction or not. Link to test site:

[css-d] gratitude and a discovered trick for equal height columns for two column layout

2007-01-19 Thread Noah Learner
Hey all, I'm writing in to offer deep gratitude and a late thank you to BJ Clark, Georg, Don Hinshaw and Philippe Wittenbergh for their help with my first CSS site. You can see a preview at www.learnerdesign.com/acufamily/index.html. Browsershots showed me that safari 2.0, the div#main

[css-d] Layout flow-error

2007-01-19 Thread Stib AB
Hi everyone. Possible som e easy thing for you pros to check. Why is my page not inherited in the framework? http://beta.altaria.se/default.aspx?ID=100963 Regards Pelle __ css-discuss [EMAIL PROTECTED]

Re: [css-d] gratitude and a discovered trick for equal height columns for two column layout

2007-01-19 Thread _JOMAC_
Congratulations, your site is very beauty!!! 2007/1/19, Noah Learner [EMAIL PROTECTED]: Hey all, I'm writing in to offer deep gratitude and a late thank you to BJ Clark, Georg, Don Hinshaw and Philippe Wittenbergh for their help with my first CSS site. You can see a preview at

[css-d] Javascript Bookmarking in Safari

2007-01-19 Thread Geoff Krajeski
Does anyone know a method to bookmark in Safari using Javascript? I'm using this function currently, but cannot seem to find anything on a working model for adding in Safari/Mac: function bookmarksite(title,url){ if (document.all) window.external.AddFavorite(url,title); else if (window.sidebar)

[css-d] [ADMIN - OFF TOPIC] Re: Javascript Bookmarking in Safari

2007-01-19 Thread Alex Robinson
At 12:46 -0500 19/1/07, Geoff Krajeski wrote: Does anyone know a method to bookmark in Safari using Javascript? I'm using this function currently, but cannot seem to find anything on a working model for adding in Safari/Mac: This list is for the discussion of CSS and CSS alone. Please take

[css-d] rounded corner box without content

2007-01-19 Thread Livia Dobai
Hi all! This example here works when inside the div class=tretja /div is content. How can I display rounded corner box when it is no conten inside them? I try to tell the width but appare only the repeated middle image. The classes are because i must reuse the code for that rounded corner box.

Re: [css-d] Webpage check please!!

2007-01-19 Thread Andy Harrison
On 1/18/07, ken organ [EMAIL PROTECTED] wrote: I still have one little problem though . its the 'Home' mouseover in the top bar under the header. The background is white and I want to be able to change it to green to blend in with the rest of the top bar background. If I alter the a:link

[css-d] Specificity

2007-01-19 Thread Chris
Hi, I have a problem with the following style declarations with regard to specificity: li:hover table #one{background: red;} /* 0,1,0,2 */ li li:hover #all{background: blue;} /* 0,1,0,2 */ The comments at the end of the declarations are my understanding of the specificity. The first style

[css-d] Specificity

2007-01-19 Thread Chris
Hi, apologies for another post but I think a simpler example below is what is needed. I have obviously failed to understand a crucial aspect of CSS which deems that the table row style declaration does not overwrite the previous style for a specific cell within that row. Please enlighten me!

[css-d] FF2 : scrolbars disapear on top on a fixed img

2007-01-19 Thread Bernu Bernard
Is this a known pb ? What is a workaround ? http://www.lptl.jussieu.fr/users/bernu/pub/scrollbar.html I have a an img inside a fixed div covering most of the page (not all) In an other div I have a textarea standing on top of the img: the scrollbars are not active (white rectangle) and I do

Re: [css-d] Unwanted div expansion in IE6 (+7?) -- color values at fault?

2007-01-19 Thread ~davidLaakso
Tina G. wrote: In the IEs, hovering over a primary nav option (about us et al) causes its container, div#nav, to expand 3px at the bottom,...trimmed]. The page is here: http://tinyurl.com/3xbj78 Tina See if zeroing the margin in ruleset div#crumbs stops the bouncing in IE 6 7.:

Re: [css-d] Specificity

2007-01-19 Thread Jesse Skinner
Chris wrote: Hi, apologies for another post but I think a simpler example below is what is needed. I have obviously failed to understand a crucial aspect of CSS which deems that the table row style declaration does not overwrite the previous style for a specific cell within that row.

Re: [css-d] FF2 : scrolbars disapear on top on a fixed img

2007-01-19 Thread Philippe Wittenbergh
On Jan 20, 2007, at 8:31 AM, Bernu Bernard wrote: Is this a known pb ? What is a workaround ? http://www.lptl.jussieu.fr/users/bernu/pub/scrollbar.html I have a an img inside a fixed div covering most of the page (not all) In an other div I have a textarea standing on top of the img:

[css-d] Horizontal Expanding Menu with UL

2007-01-19 Thread Travis D. Falls
Hello All, I am looking for a good tutorial on creating a nested UL list and using it as a horizontal menu bar. On rollover I need to expand multiple layers. Any links would be much appreciated. I tried the normal google search for tutorials but they were all... well not so good. T

Re: [css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread david
eric cash wrote: Never again will I take a finish it job. Thanks to philippe for pointing out the obvious that I couldn't see past my red haze of anger. Hopefully, I'm done with this thing, http://www.mentallyregarded.com/advo , except for one problem, the first two items in the menu

Re: [css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread Gunlaug Sørtun
eric cash wrote: Hopefully, I'm done with this thing, http://www.mentallyregarded.com/advo , except for one problem, the first two items in the menu won't rollover to their hover states. Can't see any problems. Those menu items won't change on hover once visited though. Also, a site check

Re: [css-d] Layout flow-error

2007-01-19 Thread Roger Roelofs
Pelle, On Jan 19, 2007, at 12:00 PM, Stib AB wrote: Possible som e easy thing for you pros to check. Why is my page not inherited in the framework? http://beta.altaria.se/default.aspx?ID=100963 I'm not exactly sure what you mean. I'm guessing you are talking about how the text ov the page

Re: [css-d] centering

2007-01-19 Thread Donna Jones
Liz, does putting margin: 0 auto; on the content work, seemed to from here. best donna Liz wrote: Hello, Here is my sample http://www.egretdesign.com/footer/footer.html I am trying to center the yellow content area horizontally without losing my footer background image that stays on

Re: [css-d] centering

2007-01-19 Thread Liz
Thank you! I had tried that on the innerContainer div which I thought of as the container for the the content but it works on the content. Thanks! Regards, Liz On 1/19/07 9:20 PM, Donna Jones [EMAIL PROTECTED] wrote: Liz, does putting margin: 0 auto; on the content work, seemed to from

[css-d] Second Look - Outdoor Image

2007-01-19 Thread Keith Burgin
Thanks everyone for the initial site check - Could I talk a few of you into giving the site a second look now that it's live? Opinions welcome, even if you just don't like the color scheme. If it's off-topic, please e-mail me directly. http://www.outdoorimage.com Thanks very much. Keith

Re: [css-d] Clear: both Problem?

2007-01-19 Thread Richard Brown
Hi All On 17/01/07, Richard Brown [EMAIL PROTECTED] wrote: Site is: http://www.nanadobbie.com/ CSS is: http://www.nanadobbie.com/includes/templates/nanadobbie/css/stylesheet.css Many thanks for the help so far. Just to reiterate. I started with a three column design, content in the

Re: [css-d] a:hover not working in first two items of ul, plis IEMac sitecheck

2007-01-19 Thread Gunlaug Sørtun
eric cash wrote: I forgot to mention, the rollover problem is only in firefox, although I swear it was in IE earlier... No such problem in Firefox, except that (as mentioned earlier) :visited overrides :hover in all browsers. That's because you have those link styles in the wrong order -

[css-d] Border shift possible?

2007-01-19 Thread Dave M G
CSS-d I have a ul list that has a border on top only. I'd like the border to cover only 70% of the distance across the top, which I've achieved with: ul { border-top: thin solid #00; width:70%; } But the border is fixed on the left hand side, so that as I shorten it, it simply has more

Re: [css-d] Border shift possible?

2007-01-19 Thread Keith Burgin
I would use a background image as the border, and set it to display the way you want. That way, you control the alignment and the length. Just my opinion. Keith Burgin [EMAIL PROTECTED] ___ Note: This e-mail and its contents are private and intended for

Re: [css-d] Second Look - Outdoor Image

2007-01-19 Thread Gunlaug Sørtun
Keith Burgin wrote: Could I talk a few of you into giving the site a second look now that it's live? http://www.outdoorimage.com The 'em font-resizing bug'[1] in IE/win is triggered, so the design can easily be made to break more than it has to in that browser. The addition of... html