[css-d] relative or absolute urls?

2007-06-17 Thread Ross
When linking to images do you use relative or absolute urls? background-image:url(../images/myimage.jpg); or background-image:url(http://.mysite.php/images/myimage.jpg); I have a common header on all pages with different folders and sub folders and the relative urls only work for the

[css-d] Right columns drops under the rest in IE

2007-06-17 Thread Fora
http://www.poetryin-e-motion.com/larissa/lessen.html http://www.poetryin-e-motion.com/larissa/styles/lessen.css Hi, I have a problem with the right column that drops under the rest in IE. I figure it has something to do with the margins, but it didn't help when I tried to reduce the size /

Re: [css-d] Right columns drops under the rest in IE

2007-06-17 Thread Fiona
Hi Fora, Just at a quick glance, your right div is placed outside of the wrapper div holding the other elements, so will be displayed after the rest of the content. Also, the set width of the wrapper is 800, but the set widths of the left div, content div and right div add up to more than

[css-d] IE Problem with Son of Suckerfish and form select fields

2007-06-17 Thread grovesdavid
Hello, (RE-POST) Come on CSS wizards, someone must have an answer to this. Works (poorly with JavaScript) here: http://www.linkhomes2000.co.uk/trials/tryagain-index-3.php Problem here: http://www.linkhomes2000.co.uk/helper/tryagain-index-4.php Question how to resolve this, you can all see

Re: [css-d] Right columns drops under the rest in IE

2007-06-17 Thread Audra Coldiron
Fora wrote: http://www.poetryin-e-motion.com/larissa/lessen.html http://www.poetryin-e-motion.com/larissa/styles/lessen.css Hi, I have a problem with the right column that drops under the rest in IE. I figure it has something to do with the margins, but it didn't help when I tried to

Re: [css-d] Footer at the Bottom of the page

2007-06-17 Thread alan
Someone asked about putting the footer at the bottom of the page - that one got me for awhile too but I found a good page that explains it: http://www.xs4all.nl/~peterned/examples/csslayout1.html Cheers Al Dunbar http://www.akhlah.com

Re: [css-d] Right columns drops under the rest in IE [SOLVED]

2007-06-17 Thread Fora
@ Fiona, Thanks for that, that solved the problem. I miscalculated the total width of the columns and I completely overlooked that the right column was outside the wrapper. @AC I made the wrapper in case they decide at some point to center the page in the viewport. Better put it there now than

[css-d] submenu li hover

2007-06-17 Thread kdavis
Hi all- Please excuse if this is a half-baked question. I'm definitely learning as I go here. I have a draft page with a submenu that changes color on hover (see left, middle of page): http://www.kdwebstudio.com/ccaz.html I want the first li to not hover, i.e. not chage to light yellow. Is it

Re: [css-d] Right columns drops under the rest in IE [SOLVED]

2007-06-17 Thread Audra Coldiron
@AC I made the wrapper in case they decide at some point to center the page in the viewport. Better put it there now than having to solve the problem later in a lot of files. Thanks for the advise anyway. Actually, you can at that point put a width on the body then declare margin: auto

Re: [css-d] IE Problem with Son of Suckerfish and form select fields

2007-06-17 Thread Ingo Chao
[EMAIL PROTECTED] wrote: Hello, (RE-POST) Come on CSS wizards, someone must have an answer to this. Works (poorly with JavaScript) here: http://www.linkhomes2000.co.uk/trials/tryagain-index-3.php Problem here: http://www.linkhomes2000.co.uk/helper/tryagain-index-4.php

Re: [css-d] submenu li hover

2007-06-17 Thread Anna Vester
On 6/17/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: http://www.kdwebstudio.com/ccaz.html I want the first li to not hover, i.e. not chage to light yellow. Is it possible to do this somehow? TIA for any thoughts! Well, the easiest way to fix that would be to create a new style for the

[css-d] using CSS hover for something other than lists

2007-06-17 Thread Andrew Gaffney
I want to use CSS :hover for something other than a standard pop-up menu. I'm working on an internal webapp, and I want a DIV to appear when I hover over another DIV. The initial visible DIV is named menu_closed. When I hover over it, I want menu_opened and menu_opened_border (I could combine

Re: [css-d] using CSS hover for something other than lists

2007-06-17 Thread Luc
Good afternoon Andrew, It was foretold that on 17/6/2007 @ 12:11:15 GMT-0500 (which was 14:11:15 where I live) Andrew Gaffney would write: snipped a bit I've been looking at examples of using CSS :hover to do menus in an attempt to figure out what it's really doing, but I haven't really

Re: [css-d] IE Problem with Son of Suckerfish and form select fields

2007-06-17 Thread Ingo Chao
I think the problem is that the select is a windowed object in IE7. Search for select windowed object, or, http://blogs.msdn.com/ie/archive/2006/01/17/514076.aspx Ingo -- http://www.satzansatz.de/css.html __ css-discuss

Re: [css-d] Site breaking in IE7

2007-06-17 Thread Rick Faircloth
Looks good in IE7 here... Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joanne Sent: Friday, June 15, 2007 7:04 PM To: 'CSS-discuss' Subject: [css-d] Site breaking in IE7 I have built a site which looks fine on my computers in IE6, IE7, Firefox

Re: [css-d] using CSS hover for something other than lists

2007-06-17 Thread Andrew Gaffney
Luc wrote: Good afternoon Andrew, It was foretold that on 17/6/2007 @ 12:11:15 GMT-0500 (which was 14:11:15 where I live) Andrew Gaffney would write: snipped a bit I've been looking at examples of using CSS :hover to do menus in an attempt to figure out what it's really doing, but

Re: [css-d] Bullets not aligned with first line of UL

2007-06-17 Thread Dave Pierce
Dave dolefully delineated: On this website, which is located at http:// www.pierceartanddesign.com/testfiles/ the bullets in all versions of IE are aligned with the bottoms of any li that is longer than the width required to keep it on all on one line. Any ideas why? and Audra artully

[css-d] IE7 (6?): AP UL LI A atop IMG -- How?

2007-06-17 Thread Micky Hulse
Hi all. I have been trying to figure out why IE7 is not liking my CSS test page: http://www.ambiguism.com/sandbox/nova/list-test.php Basically, I need to get the a.next element to sit on top of the image. The a.prev element needs to be removed from the flow. The above test page is working in

Re: [css-d] relative or absolute urls?

2007-06-17 Thread Micky Hulse
Ross wrote: When linking to images do you use relative or absolute urls? background-image:url(../images/myimage.jpg); background-image:url(http://.mysite.php/images/myimage.jpg); I prefer root relative urls: background-image: url(/images/myimage.jpg); Cheers, M -- Wishlists:

Re: [css-d] Bullets not aligned with first line of UL

2007-06-17 Thread David Laakso
Dave Pierce wrote: Dave dolefully delineated: On this website, which is located at http:// www.pierceartanddesign.com/testfiles/ the bullets in all versions of IE are aligned with the bottoms of any li that is longer than the width required to keep it on all on one line. Any ideas

[css-d] image border hover states

2007-06-17 Thread Jason Chan
thanks all for answering my first question regarding the image border. i have take your advice and used the display: block property for the image. however, i ran into another problem regarding the hover state. basically i want the border of the image to change colors when hovered over and so

Re: [css-d] hasLayout issue in IE (6/7, at least)

2007-06-17 Thread Sasha Gerrand
On 15/06/07, jeffrey morin [EMAIL PROTECTED] wrote: On 6/15/07, Sasha Gerrand [EMAIL PROTECTED] wrote: Hi, I'm having an issue with the way the CSS is being rendered on a page[1] I am designing. For some reason, it looks like the DIV that is the container for the text, nested within

Re: [css-d] text box expanding to full td width inappropriatley

2007-06-17 Thread David Hucklesby
Jonathan wrote: [...] I have included my code example in this email and have also posted that at: http://overheadgaragedoorstore.com/text-box-example.html Audra Coldiron replied: Hi Jonathan. Welcome to the list. Float is appropriate if you need to keep it a block element. However,

Re: [css-d] relative or absolute urls?

2007-06-17 Thread David Hucklesby
Micky Hulse wrote: Ross wrote: When linking to images do you use relative or absolute urls? background- image:url(../images/myimage.jpg); background- image:url(http://.mysite.php/images/myimage.jpg); Micky Hulse replied: I prefer root relative urls: background-image:

Re: [css-d] text box expanding to full td width inappropriatley

2007-06-17 Thread Audra Coldiron
@Audra: I'm not quite sure what you are suggesting here, since Jonathan wanted to shrink-wrap the element, not to centre it. He originally did use an inline element but asked about using a block element (P or DIV). I just took a look at what he was trying to achieve according to his example

Re: [css-d] image border hover states

2007-06-17 Thread David Hucklesby
On Sun, 17 Jun 2007 15:32:16 -0700, Jason Chan wrote: [...] however, i ran into another problem regarding the hover state. basically i want the border of the image to change colors when hovered over and so far this is what i got. It works in FF but not in IE6. XHTML: div id=design h1

Re: [css-d] Bullets not aligned with first line of UL

2007-06-17 Thread Philippe Wittenbergh
On Jun 18, 2007, at 4:56 AM, Dave Pierce wrote: On this website, which is located at http:// www.pierceartanddesign.com/testfiles/ the bullets in all versions of IE are aligned with the bottoms of any li that is longer than the width required to keep it on all on one line. Any ideas why?