Re: [css-d] page check in IE7 please

2007-06-19 Thread Roger Roelofs
, -- Roger Roelofs [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com

Re: [css-d] page check in IE7 please

2007-06-19 Thread Roger Roelofs
Luc, On Jun 19, 2007, at 11:37 AM, Luc wrote: Good afternoon Roger, It was foretold that on 19/6/2007 @ 10:14:22 GMT-0400 (which was 11:14:22 where I live) Roger Roelofs would write: snipped a bit This design assumes users will browse at full screen and have large monitors

Re: [css-d] Click on thumbnail to show larger image on the side

2007-06-13 Thread Roger Roelofs
. Roger, -- Roger Roelofs [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css

Re: [css-d] Firefox and Opera bug

2007-06-10 Thread Roger Roelofs
;} -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported

Re: [css-d] Clearing absolutely positioned elements

2007-06-09 Thread Roger Roelofs
size to see what I mean). It may look like clearing, but it isn't. -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page

Re: [css-d] unwanted padding-top padding-bottom

2007-06-08 Thread Roger Roelofs
div. To do that you must prevent them from 'touching' the div margins. Interposing a tiny bit of padding (or border) can do that. #content { padding-top: 1px; padding-bottom: 1px; } Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] My list looks crap. Will altering display help?

2007-05-31 Thread Roger Roelofs
a{ width: 22%; margin: 0; padding: 0; padding-left: 18px; float: left; clear: left; font-size:12px; background: url(../images/small-blue-arrow.gif) no-repeat; } -- Roger Roelofs __ css-discuss [EMAIL

Re: [css-d] Adding bg images to list items

2007-05-30 Thread Roger Roelofs
sorry for being incomplete. You will also have to use the background-position rule to put the image where you want it. Is there any way to see this page, or a mockup? I have a feeling something else is going on, but I'm not sure what it might be. Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] Adding bg images to list items

2007-05-29 Thread Roger Roelofs
can use padding on inline elements to get the spacing you need. Something like .affils li { padding-top: 35px } firebug ( for firefox as you would guess ) is great for seeing where rules override one another. -- Roger Roelofs

Re: [css-d] Different ways of doing the same thing

2007-05-26 Thread Roger Roelofs
inaccessible. It the page has to be in quirks mode, or you need to support ie5/win, you can get the same result with body { text-align: center; } #pageWrapper { width: 760px; margin: 0 auto; text-align: left; } -- Roger Roelofs

Re: [css-d] Backgound highlight for wrapped text

2007-05-21 Thread Roger Roelofs
you want, but there aren't other pseudo-elements for the other lines. The only solution I've come up with is an ugly javascript hack to wrap each line in a span, but my code is only a proof of concept. Getting it to play nice with window and font resizing would be a nightmare. -- Roger

Re: [css-d] Two images side by side

2007-05-20 Thread Roger Roelofs
to alter code I wrote a year or two ago and have spent more time figuring out what the original code was doing than actually enhancing the page. Yes, I confess to being a clean html freak. -- Roger Roelofs __ css-discuss

Re: [css-d] horizontal menu quirk

2007-05-19 Thread Roger Roelofs
mangled source but still remove the spaces by writing it something like this ul id=navlist li class=firsta href=/?nextPage=clients id=c1Clients/ a/li li class=firsta href=/?nextPage=contractors id=c2Contractors/a/li /ul -- Roger Roelofs

Re: [css-d] Extra vertical space

2007-05-05 Thread Roger Roelofs
the margins from 'touching', the h1 and p margins become the margins for the div. You can stop this effect by adding 1px padding or border to the div. #content { padding: 1px 10px; } hth -- Roger Roelofs __ css-discuss

Re: [css-d] Span tags set to not display make containing div not display

2007-04-24 Thread Roger Roelofs
{ /* all spans inside #test ul: reset the default */ display: inline; } Since the second rule has a higher specificity, it will override the first rule. -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] Span tags set to not display make containing div not display

2007-04-23 Thread Roger Roelofs
can help debug? Roger, -- Roger Roelofs [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http

Re: [css-d] Scrollbar In Firefox adjusting layout.

2007-04-09 Thread Roger Roelofs
John, On Apr 5, 2007, at 5:33 PM, Johnny G's wrote: Is there a way to have no scrollbar when not needed yet the layout not be adjusted when Firefox adds one? Only if you are willing to use a layout that is left aligned. Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] AltText using CSS ?

2007-03-10 Thread Roger Roelofs
without css will see it as a part of the link text, all run together. hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL

Re: [css-d] Wierd IE 6 position: relative with ghosting

2007-03-09 Thread Roger Roelofs
as appropriate. The browser should not shift following content due to the offset unless clearing floats would dictate otherwise. hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] Safari not loading stylesheet?

2007-02-12 Thread Roger Roelofs
be fine. Safari is more likely than other browsers to drop a bad css file than try to work around it (which I prefer). It would be nice if Safari made debugging easier tho... -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison

Re: [css-d] mac/ie5.2 issue

2007-01-30 Thread Roger Roelofs
%; margin-left: -30%; } Made it work down below 600px width, and much less 'twitchy'. This didn't seem to bother ff2, but I didn't do any other browser checks :-). -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] ie7 not centered; mozilla netscape don't show vertical border

2007-01-27 Thread Roger Roelofs
. In short, if you fix the html and the doctype, styling will be more consistent. Also, you could achieve this layout with _many_ fewer tables. In fact, this page doesn't need any. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns

Re: [css-d] Layout flow-error

2007-01-19 Thread Roger Roelofs
border to move to after the text, you will have to attach it a different way. If I guessed wrong, try again. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] Content Overflow in Firefox 1.5.0.9

2007-01-17 Thread Roger Roelofs
, -- Roger Roelofs [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported

Re: [css-d] Another cleanup tip needed

2007-01-17 Thread Roger Roelofs
they adapt well to changes in text and window size from one browser to another. Unfortunately you have to add ie/win specific instructions to get around its flawed float rendering. hth -- Roger Roelofs Datacomp Appraisal Services -- Roger Roelofs Remember, if you’re headed in the wrong direction

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

2007-01-17 Thread Roger Roelofs
: #FBFBF1; } I don't think there is a robust way to do it without floating. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL

Re: [css-d] Bottom 3 divs are displaced in Firefox 1.5

2007-01-17 Thread Roger Roelofs
; font-size: .8em; } #hotBoxContainer div.body { float: none; width: auto; margin: 0 5px; padding-top: 10px; background-color: white; border: 1px solid black; border-top: none; height: 150px; } #hotBoxContainer a img { border: 0 none;} -- Roger Roelofs Remember

Re: [css-d] ie spacing on list

2007-01-04 Thread Roger Roelofs
; background-image: url(/images/arrowLn.gif); background-repeat: no-repeat; background-position: center left; } -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] list

2006-12-28 Thread Roger Roelofs
met positief resultaat afgerond.br / br / December 2006/p /body /html -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css

Re: [css-d] font family : Mozilla issue

2006-12-21 Thread Roger Roelofs
this. If you tried to put a style element anywhere but the head element, browsers (except ie) will ignore it because it is not valid to put style or link anywhere but in the head. If I missed the point of the question, put up a test page and point us to it. -- Roger Roelofs Remember

Re: [css-d] Form layout

2006-12-15 Thread Roger Roelofs
the first few letters of the item you want. IE win will let you tab into select elements by default. Once activated, you can type the first letter of the item you want and down arrow if there are multiple items with the same first letter. hth Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] bug with cursor in textarea in FF

2006-12-13 Thread Roger Roelofs
of a div with position: fixed. That sure looks like a browser bug. I filed a bug for this https:// bugzilla.mozilla.org/show_bug.cgi?id=363692. Unfortunately, I haven't been able to come up with a workaround. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God

Re: [css-d] site check (IE7 please!)

2006-12-13 Thread Roger Roelofs
for the body element. That means the browser default/user choice appears all around the edges of your layout. In my case it is kind of a blue-green color. I'm betting you were envisioning white :-) All in all, a nice looking page. -- Roger Roelofs

Re: [css-d] image has border running over it

2006-12-11 Thread Roger Roelofs
. -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported

Re: [css-d] forms FF2.0 vs. IE7

2006-12-11 Thread Roger Roelofs
in the header, and a bright green on the page. Do you have the google toolbar installed in ie? It marks fields with colors to indicate which ones can be auto-filled. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] Firefox Misbehaves on Table Length

2006-12-09 Thread Roger Roelofs
the floats. I tried both float: left; and overflow: hidden; and they both looked fine to me. You will have to asses how this affects other pages on the site. This was tested in current versions of firefox, opera and safari. hth -- Roger Roelofs Remember, if you’re headed in the wrong

Re: [css-d] Space under image link in Mozilla

2006-12-08 Thread Roger Roelofs
; } -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information

Re: [css-d] need help with several positioning problems

2006-12-04 Thread Roger Roelofs
://www.wonderbabydesigns.com/testing/final_test.htm -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] Help with a few minor nitpicks please...

2006-12-03 Thread Roger Roelofs
the cursor: pointer; css property, but that will confuse your users to no end. hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL

Re: [css-d] IE 6 pixel shift

2006-12-03 Thread Roger Roelofs
-- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http

Re: [css-d] help with bottom positioning column floats

2006-12-01 Thread Roger Roelofs
be a lot more straight forward if you didn't have to work around ie6's shortcomings :-(. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css

Re: [css-d] Not sure how to do this in CSS.

2006-11-30 Thread Roger Roelofs
; } This is assuming all your elements are images. Putting text into this kind of a grid layout is an invitation to insanity. hth -- Roger Roelofs Datacomp Appraisal Services -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa

Re: [css-d] Not sure how to do this in CSS.

2006-11-30 Thread Roger Roelofs
. Just leave the unused space empty (or have some kind of background image for the whole grid that shows through the empty spaces). It does mean that you have to manually figure out where an empty space is and edit the css when you add a new image, but I think that's unavoidable. -- Roger

Re: [css-d] Menu floats down in IE6

2006-11-30 Thread Roger Roelofs
of the navigation list. Unless the client demands it, I'd get rid of the flash object and the scrolling window title. All that movement makes it hard to actually read the page. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison

Re: [css-d] Menu floats down in IE6

2006-11-29 Thread Roger Roelofs
. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information

Re: [css-d] Positioning Question

2006-11-28 Thread Roger Roelofs
to me, and communicates better to users without css than a series of anchors that happen to be next to each other in the source. Give yourself a pat on the back. You've made a lot of progress. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns

Re: [css-d] Elementary questioning about positioning a div

2006-11-26 Thread Roger Roelofs
of the web, we pull our hair out, and our users go away unhappy. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] Extra space in IE on css dropdown navigation

2006-11-26 Thread Roger Roelofs
accomplishes. Her current code hides the sub-menus off-left rather than using visibility: hidden. Why is it better to hide them 'in place'? It seems like there is more to undo on hover with this method. What am I missing? -- Roger Roelofs Remember, if you’re headed in the wrong direction

Re: [css-d] Padding in Firefox - Horizontal navigation menu sits too far to left

2006-11-25 Thread Roger Roelofs
how css works and how browsers implement it has a definite learning curve. If it would help, I could code up a sample of your page. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] div doesn't expand with content

2006-11-25 Thread Roger Roelofs
though... The three columns in #main are all floated and so taken out of the normal document 'flow'. IE is displaying a convenient bug here. You can either float #main also, add a clearer inside #main at the bottom, or use the 'clearfix' method from p.i.e. hth -- Roger Roelofs Remember

Re: [css-d] hanging indent

2006-11-25 Thread Roger Roelofs
edges, so you will want padding- left to be = text-indent. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] Help with some minor browser compatibility issues

2006-11-25 Thread Roger Roelofs
and that browser is fading into the mists of time, so maybe you don't need to care. Also, you might want to specify a background-color on your body element. Not everyone has white set as their default. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns

Re: [css-d] Unwanted underlines in image links (Firefox)

2006-11-13 Thread Roger Roelofs
in Firefox. The image is display: inline; by default, so it is part of the text. Set the image to display: block; and it will not be underlined. If you choose to keep the br element, you will want to style it away with something like display: none; hth -- Roger Roelofs Remember, if you’re

Re: [css-d] Nested divs, constrain one within the other.

2006-10-30 Thread Roger Roelofs
need more help with this. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] css-d Navigation menu inconsistencies between IE everything else

2006-10-30 Thread Roger Roelofs
, but I didn't see any other replies to your post. You may have fixed the page already as it only looked about 5px off from firefox to me. You are already hacking for ie anyway, so why not * html #navigation li ul { bottom: 12px; } hth -- Roger Roelofs Remember, if you’re headed in the wrong

Re: [css-d] Safari Layout Problems

2006-10-30 Thread Roger Roelofs
=1uri=http%3A%2F% 2Fwww.toolcrib.com%2Findex.aspx css http://jigsaw.w3.org/css-validator/validator? profile=css2warning=2uri=http%3A%2F%2Fwww.toolcrib.com%2Findex.aspx -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] Partial percentage heights

2006-10-24 Thread Roger Roelofs
to the page, so I'd be tempted to save this problem to the end and see if it needs to be addressed at all. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] Mac IE5 positioning problem

2006-10-24 Thread Roger Roelofs
benefit of having the content stop at the left edge and add a horizontal scroll bar for narrow viewports. #contentwrapper { margin: 0 auto; background-color: #FF; width: 760px; position: relative; } Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] Strange Navigation Menu Problems

2006-10-22 Thread Roger Roelofs
elements to they are of equal height whether the link takes 1 line or two. hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss

Re: [css-d] margin ok, but bouncing menu

2006-10-19 Thread Roger Roelofs
? You are getting a 1px shift on hover because you are adding a bottom border. You will have to remove 1px extra bottom padding on hover. Add padding-bottom: 3px; to ul li a:hover Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] h2 tags with padding don't hover properly

2006-10-19 Thread Roger Roelofs
could clarify what you are trying to accomplish? -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] link in FF

2006-10-18 Thread Roger Roelofs
, I would avoid overflow: hidden on your body element. You can make it a fixed width so your kiosk won't have scroll bars, but allow the site to work on the web for those of us with smaller windows. No sense having to write it twice :-) Hope that gets you started. -- Roger Roelofs

Re: [css-d] Inline or block display for div question

2006-10-18 Thread Roger Roelofs
shrinks to fit, but is not supported in ie/win. hth -- Roger Roelofs __ 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] form fieldset legend in Safari

2006-10-12 Thread Roger Roelofs
the problem by adding #MainForm { overflow: hidden; } which creates a new positioning context. What has me curious is why it _isn't_ happening in other browsers. hth -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] extra space after div in IE

2006-10-12 Thread Roger Roelofs
looks the same to me in ff1.5 and ie6. Could you tell us again what you would like to see on this page? -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http

Re: [css-d] vertical space in text

2006-10-12 Thread Roger Roelofs
elements, something like the following should do. p { margin: 2em 0; } hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL

Re: [css-d] Problem with Scrolling Div

2006-10-12 Thread Roger Roelofs
double scroll bars at short window heights and a gap at the bottom for tall ones. BTW, it would be more semantic html to use thead and tbody rather than two separate tables. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison

Re: [css-d] Unwanted space above horizontal list

2006-10-05 Thread Roger Roelofs
to verify that the css is at least syntactically correct. Second, one of the ul elements inside #header has a margin that is sticking up out the top of #header. The following fixes the problem but is a little too broad for production use. #header ul { margin: 0; } hth Roger, -- Roger

Re: [css-d] Best wawy to overlay images on a background

2006-10-01 Thread Roger Roelofs
, however. Is there a url to a test page available? hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] Adding a top border makes DIV snap to the top. Why?

2006-10-01 Thread Roger Roelofs
and this will force the #header to grow to contain the h1 margin. Clear as mud, right? Here's a good article. http://www.complexspiral.com/publications/uncollapsing-margins/ hth -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] z-index

2006-10-01 Thread Roger Roelofs
://developer.mozilla.org/en/docs/Understanding_CSS_z-index -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org

Re: [css-d] Styling the br element?

2006-09-27 Thread Roger Roelofs
! WHOOO!!! It is an interesting concept, but that document is technically invalid because xhtml has no 'cow' element. It would need to be served with an appropriate xml doctype (or no doctype at all) to be technically correct. Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] Newbie-ish question

2006-09-26 Thread Roger Roelofs
: 1.5em; } Somehow I missed the first message in this thread. If I missed the point, let me know and I'll try again. Roger, -- Roger Roelofs [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org

Re: [css-d] background image not showing up

2006-09-26 Thread Roger Roelofs
to understand float containment in general. http://www.complexspiral.com/publications/containing-floats/ Roger, -- Roger Roelofs [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

Re: [css-d] Newbie-ish question

2006-09-26 Thread Roger Roelofs
Mark, On Sep 26, 2006, at 9:47 AM, Mark J. Reed wrote: On 9/26/06, Roger Roelofs [EMAIL PROTECTED] wrote: Somehow I missed the first message in this thread. If I missed the point, let me know and I'll try again. Thanks for your reply. Take a look at the sample page, which I linked

Re: [css-d] [w/website]page border doesn't border page

2006-09-22 Thread Roger Roelofs
, -- Roger Roelofs [EMAIL PROTECTED] __ 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] Menu gone awry in IE6 - SORTED?

2006-09-21 Thread Roger Roelofs
hard coding the width in pixels. http://www.iyesolutions.co.uk/menu-test.html css at http://www.iyesolutions.co.uk/includes/nav.css This is a known ie bug that i've learned to live with. Hopefully ie7 will be better about this. -- Roger Roelofs

Re: [css-d] URGENT... Client's requirement changed... Rip and tear at an entire CSS now??

2006-09-21 Thread Roger Roelofs
solution. Is that true? -- Roger Roelofs __ 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] a:link in inline style, how?

2006-09-15 Thread Roger Roelofs
easier/safer. hth -- Roger Roelofs __ 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] Link not working in Firefox

2006-09-14 Thread Roger Roelofs
in Firefox, I would be most grateful. http://www.starqualitydesigns.com/BestHealth #bodypart is covering up the links. It has a relative position top of -110px and a margin-top of -120px This pulls it way up over the header. hth -- Roger Roelofs Remember, if you’re headed in the wrong

Re: [css-d] Table vs. CSS when decorative graphic required?

2006-09-12 Thread Roger Roelofs
this markup and have difficulty applying your other styles to it, let me know and I'll see if I can help. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] application/xhtml+xml: background-color disappears!

2006-09-11 Thread Roger Roelofs
there is no forgiveness for errors. The parser just stops and puts up an error message rather than trying to display the page anyway. hth -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

Re: [css-d] how to prevent two divs to break line?

2006-09-11 Thread Roger Roelofs
Patrick, On Sep 11, 2006, at 6:00 PM, Patrick Aljord wrote: On 9/11/06, Roger Roelofs [EMAIL PROTECTED] wrote: Without a test page, I can't be sure.  The first thing I would try is to add width: 24%; to #regions.  If that doesn't work, put up a test page and we'll try to give you a better

Re: [css-d] how to prevent two divs to break line?

2006-09-10 Thread Roger Roelofs
, sans-serif; font-size: 15px; } Without a test page, I can't be sure. The first thing I would try is to add width: 24%; to #regions. If that doesn't work, put up a test page and we'll try to give you a better answer. hth -- Roger Roelofs

Re: [css-d] Need some testing and bug fixes for a blog skin

2006-09-10 Thread Roger Roelofs
expect. hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2

Re: [css-d] Mac assistance please?

2006-09-09 Thread Roger Roelofs
into place. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

Re: [css-d] konqueror/safary image problem

2006-09-08 Thread Roger Roelofs
'above' the left side images in safari while it is 'below' them in the other browsers. Using margin instead of padding should fix this. Try something like this... #mainwindow { padding: 45px 0px 0px 0; margin: 0 0 0 170px; ... Roger, -- Roger Roelofs [EMAIL PROTECTED

Re: [css-d] Mac assistance please?

2006-09-08 Thread Roger Roelofs
ignoring it lately. If you don't get specifics from others on the list, I'll see what I can do. In terms of the navigation, the sub-categories need to be indented more, maybe in a smaller font-size to make it clearer that they are sub-menu items. -- Roger Roelofs

Re: [css-d] layout problems

2006-07-05 Thread Roger Roelofs
; min-width: 100px; background: url(../images/nav.gif) no-repeat center; } #nav a.active, #nav a:hover { background: url(../images/nav_over.gif) no-repeat center; } hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns

Re: [css-d] (no subject)

2006-07-03 Thread Roger Roelofs
, -- Roger Roelofs [EMAIL PROTECTED] __ 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] Problem with Safari Mac

2006-06-28 Thread Roger Roelofs
us which browser is not displaying as you wish. I currently have 10 installed, and I had to try 4 of them before I saw the problem. Thank you for posting a url to the problem. It makes debugging much easier. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God

Re: [css-d] Wide Table and CSS Based Layout?

2006-06-28 Thread Roger Roelofs
, and will require ie hackery. If you want a horizontal scroll bar for the table, then set a width and overflow: auto; on #maincontent. hth -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke

Re: [css-d] Strange serif font in Firefox??

2006-06-25 Thread Roger Roelofs
win-pc? On my mac, ff 1.07 and 1.5.0.4 render similarly to each other and not like your ff screen shot. What happens if you create a new profile so you can be sure all settings are at their defaults? -- Roger Roelofs __ css

Re: [css-d] CSS/JS dropdowns and IE 6 (so close...)

2006-06-11 Thread Roger Roelofs
directly. -- Roger Roelofs Remember, if you’re headed in the wrong direction, God allows U-turns! ~Allison Gappa Bottke __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

Re: [css-d] styling SELECT OPTION

2006-06-02 Thread Roger Roelofs
. hth -- Roger Roelofs __ 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/ Supported

Re: [css-d] Page footers

2006-06-01 Thread Roger Roelofs
are incredibly complex. Anyway, if the php approach doesn't appeal to you, you could do it with javascript instead. That's off-topic for this list, so if you want to pursue it, contact me off-list. -- Roger Roelofs __ css

Re: [css-d] floating list/picture gallery style page

2006-06-01 Thread Roger Roelofs
get rid of the min-height on the containing div. hth -- Roger Roelofs __ 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] Elements side by side

2006-05-27 Thread Roger Roelofs
-left: 3em; } If it is really an ordered list, then you should think about changing the xml to not include the numbers (which will change the corresponding css). hth -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] baby questions: images and aligning text right and left in div box

2006-05-26 Thread Roger Roelofs
tableless version is at http://dbs.myflorida.com/tablelessI.shtml Roger, -- Roger Roelofs [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] making of a nice login page

2006-05-23 Thread Roger Roelofs
boxes but when I modify line-height it doesn't work Can you give us a url to your page? We can't debug what we can't see. -- Roger Roelofs __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2

  1   2   3   >