Re: [css-d] Problems with IE 7

2006-02-03 Thread Els
a{ display:block; width:13em; } all the examples display properly in IE7, 6, 5.5, 5.01. (I've never used the height property to eliminate the gaps afair) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL

Re: [css-d] Positioning

2006-02-04 Thread Els
inner div inside the divs you already have. Say you have a div of 200px wide. Adding a padding of 5px, would make the div 210px wide. To avoid that problem: div id=side div id=inside bla bla /div /div CSS: #side{width:200px;} #inside{padding:5px;} -- Els http://locusmeus.com/ http

Re: [css-d] width variation

2006-02-06 Thread Els
. You're welcome :-) -- Els __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com

Re: [css-d] Image escaping floated div

2006-02-07 Thread Els
this to the top of your stylesheet, the image stays put: *{border-width:0px;} By putting it at the top, it won't eleminate any of the specific borders you've set later in the stylesheet. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Constructive Critisism, Please

2006-02-09 Thread Els
in the navigation a bit more styling, and make them clickable in the full width of the container, not just over the text. Also, it's a list of links, so best mark it up as a list. HTH :-) -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] pixel to em conversion revisited

2006-02-09 Thread Els
in ems on other elements though. -- Els __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css

Re: [css-d] Constructive Critisism, Please

2006-02-09 Thread Els
; } (the background colours on ul and li are only there so you can see what happens) HTH ;-) -- Els http://locusmeus.com/ http://locusoptimus.com/ -- Els __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css

Re: [css-d] Constructive Critisism, Please

2006-02-09 Thread Els
Els wrote: #nav li a:focus, #nav li a:hover, #nav li a:focus{ I meant to write #nav li a:focus, #nav li a:hover, #nav li a:active{ #nav li a.current:link, #nav li a.current:visited, #nav li a.current:focus, #nav li a.current:active, #nav li a.current:hover{ And here I meant to have

Re: [css-d] Adjacent Selector for IE6?

2006-02-10 Thread Els
2010 or later. If only dd were a child of dt. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] image border causes space at bottom of image

2006-02-13 Thread Els
. Is there another way around this? Try adding this rule: #img img{display:block;} -- Els __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7

Re: [css-d] CSS problems on IE Server specific?

2006-02-13 Thread Els
server *and* the one on your local machine? That way others could actually try and find what's different. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] Table cell borders disappearing in Firefox

2006-02-15 Thread Els
widths on the tds are different, and prints can't combine the widths of cells and borders to make a straight table? (just guessing - for better guesses, could you please add a url to the actual page?) -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Table cell borders disappearing in Firefox

2006-02-15 Thread Els
is different than on tds, and you have separate border styles for 'thead th' and 'th' in the CSS. Looking at your HTML, I see ths inside tbody in your html. Best get rid of the HTML errors too, and see if that betters it. HTH -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Table cell borders disappearing in Firefox

2006-02-15 Thread Els
or 3px wide borders. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki

Re: [css-d] ie/7b2 ::~dL

2006-02-15 Thread Els
remains in one piece, just like in my other browsers (Opera, FF, IE6, 5.01, Konqueror). -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2

Re: [css-d] IE Repeating Text

2006-02-15 Thread Els
by floated column widths in percentages, adding up to 100% of the available width. The fix would be making the percentage widths of the columns add up to less, and taking out any comments between them. On your page though, it doesn't look like this is what's happening. -- Els http://locusmeus.com

Re: [css-d] IE Repeating Text

2006-02-15 Thread Els
had people complain of images that were smeared over a stretch of the page) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

Re: [css-d] IE Repeating Text

2006-02-15 Thread Els
Els wrote: Scott Wilcox wrote: Ingo Chao wrote: Scott Wilcox wrote: http://x0f.org/music/ The text seems to get repeated under the last graph. No dup characters here. And I can't get the weather in Chesterton to hide. I have included a screenshot at: http://sc0tt.ca/etc/ie.jpg I'll

Re: [css-d] IE Repeating Text

2006-02-15 Thread Els
, including the border. You can add position:relative to the style of that div, and it will not peek and say boo again :-) BTW - I can't seem to get JavaScript switched back on in IE, so I can't check the result of your JS trick, but if you don't see it anymore, I'm sure it's gone ;-) -- Els

Re: [css-d] Liquid Design Maximum Width

2006-02-15 Thread Els
more problem: IE doesn't understand max-width (or min-width). There is a workaround for it, but it's quite tricky to get it right. http://www.svendtofte.com/code/max_width_in_ie/ explains all about it. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Small gaps in menus

2006-02-15 Thread Els
long line, or write them like this: ul lia href=/HOME/a/li lia href=/About Us/a/li lia href=/Contact Us/a/li lia href=/Testimonials/a/li lia href=/F.A.Q./a/li /ul BTW, you can't have an image between the /li and the /ul. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] No left float in IE 6 width expression not working

2006-02-15 Thread Els
it. URL? -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http

Re: [css-d] Height problem

2006-02-15 Thread Els
% height. But there's a #header above the container. I think you want to wrap the #container and the #header together in another element and give that one 100% height instead. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Out damned dots!

2006-02-16 Thread Els
;} -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css

Re: [css-d] Out damned dots!

2006-02-16 Thread Els
Philippe Wittenbergh wrote: On Feb 16, 2006, at 6:33 PM, Els wrote: Bruce MacKay wrote: Hi folks, I have a border-bottom: 1px dotted #bbb; style applied to my links. I only want the style applied to text links, not image links. My problem is: How do I get it turned off image links

Re: [css-d] problem with images in a print stylesheet

2006-02-17 Thread Els
of without seeing the actual page, is lack of set widths on the floats perhaps. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

Re: [css-d] Another question about print stylesheet

2006-02-17 Thread Els
width on the table in the print stylesheet. Another option is to make two pages, one for print, and make a print-friendly link on the screen version. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL

Re: [css-d] :hover on a li in IE

2006-02-17 Thread Els
that works in IE? Add a span inside the a elements, apply some of the a styles to span, and some of the li styles to a, play with paddings and borders: http://here.locusmeus.com/temp/ann.html -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Aligning text with a background box

2006-02-17 Thread Els
options to resize the text in their browsers. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] :hover on a li in IE

2006-02-17 Thread Els
, and this is very nifty indeed. One more thing - I think you may wanna add a span{ cursor:pointer; } to your styles, because IE doesn't do it automatically over a span, even though it's inside an a. (added it to the example now too) -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Can I put a link on an image in CSS?

2006-02-18 Thread Els
Peter Snow Cao wrote: Els wrote: No, you have to add the link code a href=... to the HTML. So I do have to take the image out of the CSS and put it in HTML on each web page, or is the a way to map the area where the image will be with a link? Ah, didn't get you the first time. You can

Re: [css-d] Can I put a link on an image in CSS?

2006-02-19 Thread Els
Peter Snow Cao wrote: Els wrote: Ah, didn't get you the first time. You can have an invisible gif in the a element, or even just a nbsp; if you set the a element to display:block;. Just position this link with position:absolute; over the background image that's there. That way it won't mess

Re: [css-d] Clearing internal floats

2006-02-19 Thread Els
of it. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ

Re: [css-d] Can I put a link on an image in CSS?

2006-02-20 Thread Els
just tried it out, no link is showing, nor the title attribute. You can't tab to it either, it is skipped in a list of links. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] floated image doesn't overlap [was: no subject]

2006-02-20 Thread Els
, IE6 and FF. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ

Re: [css-d] Clearing internal floats

2006-02-20 Thread Els
. Try it. If you have an example of it not working, I'll be happy to have a look at it. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

Re: [css-d] Clearing internal floats

2006-02-20 Thread Els
Tom Edwards wrote: --- Els [EMAIL PROTECTED] wrote: Maybe I didn't explain it well enough :-) I use it every day, and it works. In short: div id=sidebar /div div id=content div id=content1 img src=image.jpg alt=alt-text ptext/p /div div id=content2 ptext/p /div

Re: [css-d] centering bordered image

2006-02-21 Thread Els
div class=img-bdr img src=/images/5.jpg / /div I think you aren't using a doctype declaration. Add this to the top of your document and the padding will be seen even in IE: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd; -- Els http://locusmeus.com

Re: [css-d] IE 5.x extra spacing issue

2006-02-21 Thread Els
on hover), but I'm not sure, and even if so, I can't remember how. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http

Re: [css-d] IE 5.x extra spacing issue

2006-02-21 Thread Els
hack, without the hacks on #contact h2 and #contact dl, that part neatly stays within the column by itself. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org

Re: [css-d] Problem with printing

2006-02-22 Thread Els
a URL to the page? Makes it easier to determine what's happening. Personally, I haven't seen any black bars on my print previews in Firefox. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED

Re: [css-d] Using Transparent PNG's in IE 6

2006-02-22 Thread Els
doesn't do PNG alpha transparency. It does gifs, and PNG-8 (beta transparency iirc). -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2

Re: [css-d] CSS image rollover - IE 6?

2006-02-22 Thread Els
button to go back to your page, that the desired visual effect is there. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub

Re: [css-d] CSS image rollover - IE 6?

2006-02-22 Thread Els
that liked my mouseover effect g) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7

Re: [css-d] CSS image rollover - IE 6?

2006-02-22 Thread Els
Els wrote: Nick Fitzsimons wrote: Mikhail Bozgounov wrote: Just a general question concerning CSS rollovers: You remember, that in *some cases* IE tries to download a CSS image background EVERY TIME you mouse over the link! This happens on developers' machines but normal people don't see

Re: [css-d] IE7 hovers and a IE vertical list bug?

2006-02-22 Thread Els
disappears. Either in one long line, or like this: ul li.../li li.../li li.../li /ul -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2

Re: [css-d] Getting confused with the cascade

2006-02-22 Thread Els
back to the li above it. Any ideas, anyone? Just set a font-size on the container around the top UL. That way all sub-lists have the same size. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL

Re: [css-d] centering an absolutely positioned DIV

2006-02-25 Thread Els
(on a 3MB DSL line) for each image to load. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] Displaying a image

2006-02-26 Thread Els
left. The other lines will then sit on the right of the picture, as long as they vertically still fit there. HTH -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org

Re: [css-d] Sequences of float clear divs

2006-02-27 Thread Els
Michal Cizmazia wrote: Thank you, Els. IE is doing it wrong. You now have the sequence as 1 left, 1 right, 1 left, 1 right. Because the second right comes after the second left, it starts at the same height as the second left, which is not at the bottom of first right, since that one

Re: [css-d] Sequences of float clear divs

2006-02-27 Thread Els
Els wrote: The solution for this particular set of images, would be to change the order to: #2, #1, #4, #3. That way, #1 wants to stay at the same level as the preceding #2, #4 wants to stay at the same level as the preceding #1, but is pushed down by #3, #3 wants

Re: [css-d] wrapping text around a floated image

2006-02-28 Thread Els
, as the 3px jog is not a problem if you want the paragraphs to wrap. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] Right Floated Nav Source Order

2006-03-01 Thread Els
it works even in Mac IE. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki

Re: [css-d] Content being pushed down

2006-03-01 Thread Els
the left column, and horizontally 580px to the right of the middle. To find out which styles have to be eliminated, it would help to know what the desired result is :-) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css

Re: [css-d] Content being pushed down

2006-03-01 Thread Els
Tom McNeer wrote: Hi Els, Thank you for your very complete explanation. Aside from the syntax errors, and the fact that I should have stated that I hadn't attempted to make any adjustments for IE yet, perhaps it would be clearer if (as you suggest), I explain my intent. Actually

Re: [css-d] Can margins be reduced when an H1 is directly above anotherheading?

2006-03-03 Thread Els
the bottom margin (and perhaps padding) of the h1 to 0? Would it then get too close to a following paragraph if there weren't an h2? -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] Why the gap?

2006-03-03 Thread Els
is that asking too much? Difficult to tell with nothing more than the CSS code. How about a url, so that we can see the HTML code as well as the circumstances? -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL

Re: [css-d] Why the gap?

2006-03-03 Thread Els
bug, which can be remedied either by the way you did it, or else like so: /* \*/ * html #header div.right{ position:relative; left:-3px; } /* */ -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL

Re: [css-d] Why the gap?

2006-03-03 Thread Els
where I can check it from there. I only tested Mozilla on Linux, because you said it didn't work in Mozilla, and I don't have Mozilla on this Windows box. I did test it in all my other browsers, and all work. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] OL problem - Numbers/Letters not displaying in Netscape

2006-03-05 Thread Els
;. With just 'list-style', you're using the short form to set all the different list-style values at once, and it sets al the not mentioned property values to their default. Default for list-style-image, is a dot (disc) :-) -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] What On Earth?! Absolute Positioning Madness

2006-03-05 Thread Els
anywhere in my document and it'll go to the correct position only the Top value gets interpreted differently. Doesn't need to be a div, could be an element called body ;-) If you add: html,body{ padding:0; margin:0; } Does that help? -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Floating elements at an 'edge'

2006-03-06 Thread Els
'stick' the link to the correct place. Any suggestions? Wrap the a element in a div, which you give the exact same width and min-width as the table, and set text-align:right; to it. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] simple problem?

2006-03-07 Thread Els
on that div and should not be affected by/or affect the search box. That is only true if the content div is floated itself. Otherwise, it does get affected by/affects other floats outside the content div. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Looking for some layout help...

2006-03-07 Thread Els
text area that I can't figure out either. I don't see a gap. Where is it and in which browser? -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo

Re: [css-d] Alternative font sizing

2006-03-07 Thread Els
that when I adjust my font-size in the browser, the content div will display my preferred font-size, while the sidebar content went too large. Nah, really, can't see any benefit at all of this idea... -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Looking for some layout help...

2006-03-07 Thread Els
[EMAIL PROTECTED] wrote: Thanks Brett and Els for your quick responses. I implemented your suggestions and the promotion text area is now properly centered. Brett your suggestion to change the height to 48px properly tightened up the gap that I am seeing on firefox and Safari but still

Re: [css-d] Layout Errors

2006-03-07 Thread Els
them to the a element that the image is wrapped in. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] Basic confusion on syntax

2006-03-07 Thread Els
, elements and or id's means, paste it into the Selectoracle for clarification: http://gallery.theopalgroup.com/selectoracle/ HTH -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] Basic confusion on syntax

2006-03-07 Thread Els
Els wrote: the second element is a child of the first one. Some examples: 'ul#subNavlist li' means a li element, that is a child of a ul element with id=subNavlist. '#subNavlist li' means a li element, that is a child of any element with id=subNavlist. 'ul#subNavlist' means a ul element

Re: [css-d] Q: variable image in DIV with some text on top.Possible?

2006-03-08 Thread Els
the links that appear. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki

Re: [css-d] Setting Div Height in IE6

2006-03-08 Thread Els
that they fit within the 5px, IE will probably display it as desired. Another option is overflow:hidden. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] Extra Border in IE6

2006-03-08 Thread Els
on the div#navcontainer. Add a width (even 100% does the trick) to div#navcontainer, or drop the negative margin on the ul, and the duplicate disappears. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL

Re: [css-d] Specificity, siblings, descendants

2006-03-08 Thread Els
.gif); } If this is not what you were after, please can you give a URL or a sample of the HTML as well? -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] CSS Positioning Question

2006-03-08 Thread Els
the green and the transparent parts of the footer are broken by the middle column. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2

Re: [css-d] can't combine rollover and slidding doors

2006-03-09 Thread Els
. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css

Re: [css-d] can't combine rollover and slidding doors

2006-03-09 Thread Els
Els wrote: AFAICS it's not a sliding door though, sliding doors are using only two images (left and right in your case), which change position on hover. Scratch that - I'm mistaken. I've only ever used the sliding doors combined with rollover, thinking it's the 'sliding' of the background

Re: [css-d] 1 px offset in IE

2006-03-10 Thread Els
to encompass them, and they seem to start centered, pushing the image content to the right, sticking out of the page. This can be solved by giving each box the correct width, instead of stating width:0px, which apparently, IE7 takes literally. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Vertical Drop down css- submenu shifts right in IE

2006-03-10 Thread Els
haven't got JS installed on IE) Anyway, I found a solution that makes it work properly in Opera, but you'll have to check if it works for IE as well. I removed position:relative from #mainMenu. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Navigation Woes

2006-03-10 Thread Els
solid black; margin-bottom:5px; } li a{ display:block; text-decoration:none; } li a img{ border:0; } Obviously, when the width of the word becomes larger than the width of the li, the word will stick out, or in the case of IE, make the li wider. -- Els http://locusmeus.com/ http

Re: [css-d] IE6 Multiple Class Bug - Order of Declaration Seems toMatter?

2006-03-11 Thread Els
#innerWrapper and the classname, like so: #innerWrapper .sidebarBK If the former, then it is only the bug playing up, and you can work around it by giving those classnames to the body element of each page, and use selectors like: body.HOGAR #innerwrapper and body.sidebarBK #innerWrapper -- Els

Re: [css-d] Confused re: validation

2006-03-13 Thread Els
, it then will show text-shadow being an error, as it is part of CSS2, but not CSS2.1 - take your pick as to which error you prefer ;-) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] Two / Three columns float clearing in IE in 3col layout

2006-03-13 Thread Els
advice on how to solve this. How about showing us the patient? ;-) Wild guess though: what happens if you leave a space inside that clearing div and/or use clear:both instead of clear:left? -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Problem with floated items and clears

2006-03-14 Thread Els
Els wrote: If the above solution doesn't work, a URL would help to see the exact situation. Sorry about that, Gunlaug's reply showed me I simply overlooked your URL. I tried your layout locally, and just adding .galleryitem div{zoom:1;} solves it and doesn't mess up IE7. -- Els http

Re: [css-d] Problem with floated items and clears

2006-03-14 Thread Els
, display:inline-block;: http://www.brunildo.org/test/InlineBlockLayout.html -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

Re: [css-d] Page looks different in IE7

2006-03-26 Thread Els
... and /a will do. The same underscore is apparent in Opera too btw. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] rollovers in safari

2006-03-27 Thread Els
a simpler version that works, feel free to copy this one: http://here.locusmeus.com/temp/ross.html -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css

Re: [css-d] Peer Review Request: MacNimble.com Holy Grail Template

2006-03-28 Thread Els
think of atm is that in IE on (very) narrow window widths, the two side columns close ranks and the content is entirely hidden. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] Problem with background color change on hover

2006-03-28 Thread Els
. #navigationlinks li a { width: 100%; } You just need to add display:block on the a element. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] win/2000 ie 5.0 and 5.5 ::~dL

2006-04-04 Thread Els
). -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css

Re: [css-d] son of suckerfish problems, please help

2006-04-05 Thread Els
have to do something with z-index maybe :-) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com

Re: [css-d] Is there a way to simulate smthg. like float: center on

2006-04-05 Thread Els
be helpfull. [1] http://www.satzansatz.de/cssd/tmp/floatspacer.html [2] http://www.satzansatz.de/ That's two columns though - having images in the middle of a paragraph isn't possible afaik. -- Els http://locusmeus.com/ http://locusoptimus.com

Re: [css-d] Absolute positioning in relative element - bug ormisunderstanding?

2006-04-06 Thread Els
not body that lost its top margin, it's the top margin of #content that was pushing body down 50px first, and isn't now anymore. This you can check very easily: remove the top margin from body in your no-border version, and you'll see nothing changes. -- Els http://locusmeus.com/ http

Re: [css-d] Footer will not display

2006-04-08 Thread Els
Martha's Web wrote: I am trying to convert my website to be table-less, all CSS. I have my copyright in an include that is inserted into a div, but it won't display. http://www.marthas-web.com/special/test2.html Displaying fine here in IE, FF and Opera. -- Els http://locusmeus.com

Re: [css-d] Extra img spacing

2006-04-10 Thread Els
to the bottom of their line-height, which works on your page. -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http

Re: [css-d] Peculiar behavior with IE and alpha image loader

2006-04-10 Thread Els
://home.tiscali.nl/developerscorner/css-discuss/test-jakob-nav.htm Nice one! :-) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub

Re: [css-d] Problems with unordered lists used for navigation menu in IE

2006-04-12 Thread Els
in the source. You need 3px extra on the wrapper, or 3px less on on of the columns. (probably the 3px jog bug causing one of the columns to shift 3px to the right) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL

Re: [css-d] question about safari, IE and FF

2006-04-12 Thread Els
am I missing? Analytical minds would like to see the patient ;-) -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub

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

2006-04-13 Thread Els
test this in IE 6 and let me know if it works? Thanks in advance. IE6 on Win98: nope, IE just displays the left part of the page. IE6 can be tricked though, by adding: html dir=rtl ... body dir=ltr Not tested with complex pages, just a simple text only page of 900px wide. -- Els http

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

2006-04-13 Thread Els
the float:right causes absence of a horizontal scrollbar. I don't think that's a desired effect? -- Els http://locusmeus.com/ http://locusoptimus.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css

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

2006-04-13 Thread Els
-right:0; margin-left:auto; } #container{ position:relative; } #left{ position:absolute; left:-150px; width:150px; } div id=container div id=left ... /div ... /div IE6 needs a refresh after resizing the window though. -- Els http://locusmeus.com/ http://locusoptimus.com

  1   2   3   >