Re: [css-d] Problem with table in a div

2009-01-27 Thread Simon MacDonald
Does it need to fill the div - can you put a width: on the table eg 95% -S --Original Message- -From: css-d-boun...@lists.css-discuss.org [mailto:css-d- -boun...@lists.css-discuss.org] On Behalf Of Sarah Atkinson -Sent: 27 January 2009 18:15 -To: Untitled -Subject: [css-d] Problem with

[css-d] help with box losing dimensions

2008-12-17 Thread Simon
Hi, I'm trying to use a carousel object, and we have the hard bit working the catch.. the box is losing it's dimensions.. We can fix it by adding a fixed height/width as here, but I'd much rather have it be flexible, as we don't know the height.. please help Fixed height code is here:

Re: [css-d] P won't center

2008-07-14 Thread Simon Tiplady | Mailing List
My centered p won't center. Help, please . . . Line 177 of grfxjobs.css has higher specificity and sets it left #ctrtext p Try using Firebug in Firefox to see what is happening with your styles and what is taking precedence

[css-d] ie6 gap issue.....my head hurts!

2008-04-11 Thread simon bullen
Hi everyone, I subscribed to this list after getting the url from my css mastery book. I have an issue with ie6, my site looks fine in ie7, firefox but ie6 is presenting me with a rather annoying 2 or pixel gap between my maincontent and navigation. But I'm looked and played and had late

Re: [css-d] IE8 beta1 parses IE5 mac band pass filter

2008-03-06 Thread Simon Tiplady | Mailing List
Same for me unfortunalty... goes to show why you should be careful using hacks.. Simon Tiplady W: www.stiplady.net E: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ingo Chao Sent: 06 March 2008 10:47 To: css Subject: [css-d] IE8 beta1

Re: [css-d] PRE extends outside DIV

2008-02-01 Thread Simon Tiplady
What immediately springs to mind is setting overflow: auto; on the .code definition, not sure if its the best option or even what you want... -Original Message- Subject: [css-d] PRE extends outside DIV So good. However, the design in liquid width, and yet the pre extends outside the

Re: [css-d] Need help with spacing

2008-01-10 Thread Simon Tiplady
It does have a 20px margin each side. The problem is there is no width defined and it is hiding under the left menu. One possibility to fix it is to add this to your #clientContentPad definition float: left; width: 605px; // total width - left - padding = 810 - 200 - 5 = 605 Simon

Re: [css-d] Fwd: Image resize with CSS

2007-08-07 Thread Simon Tiplady | Forums
This is now off topic if you are talking about server techniques There are lots of image resize options you have. If you send me an email directly, off list, I will help you out with this. Simon -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Phillip

Re: [css-d] [ADMIN] Re: Importing style sheets and vhosts

2007-05-31 Thread Simon Tiplady | Forums
on what day of the week it is and who's paying me and I've not seen this before, I suspect its just a misuse of the import command, it is definitely nothing to do with SSI or CGI. Simon -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alex Robinson Sent: 31

Re: [css-d] How to stop text from wordwrapping.

2007-05-10 Thread Simon White
Standard behaviour in browsers, nothing to do with CSS. If you want stuff not to wrap when there's not enough screen horizontal space, use nbsp; You could also set a div to be a certain number of pixels wide: .subtitle { [.. other declarations ...] width: 800px; } -Simon

Re: [css-d] span / crashing IE7

2007-04-30 Thread Simon Tiplady | Forums
What is the point of a span if it is not spanning anything? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: 01 May 2007 00:51 To: css-d@lists.css-discuss.org Subject: [css-d] span / crashing IE7 My IE7 crashes if I look at the following

Re: [css-d] transparent divs

2007-04-24 Thread Simon White
the link above to describe in a different way) -Simon __ 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] font-family font sizes

2007-04-24 Thread Simon White
but currently unsupported (http://www.w3schools.com/css/css_reference.asp#font) -Simon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7

Re: [css-d] font smoothing

2007-04-23 Thread Simon White
in fact any application can have it. -Simon -- Simon White, French Site Manager http://www.fr.lastminute.com le site de voyages et de loisirs 54/56 boulevard Victor Hugo - 93 585 Saint-Ouen Cedex Tél : +33 1 49 21 68 34 | Fax : +33 1 49 21 67 91

Re: [css-d] Target Mozzilla Browsers

2007-04-23 Thread Simon White
. If you need specific Firefox (and no other browsers) then you'll have to find a hack that works only for Firefox. I don't have one handy. But basically for min-width, then any browser that respects it should be OK, and hiding from IE can be done just the same like !-- [if !IE] --. -Simon -- Simon

Re: [css-d] IE7: bug (?) on divs display: none / block toggle with javascript and overflow: auto

2007-04-20 Thread Simon White
Simon White wrote: At any one time, three are hidden (display:none) and by clicking on the icon at the top of the block, you toggle the one which is not hidden (display:block) via a javascript function act_tab(). Ingo wrote: Can't test it on a local copy due to all that ads stuff

Re: [css-d] IE7: bug (?) on divs display: none / block toggle withjavascript and overflow: auto

2007-04-20 Thread Simon White
which duplicated content (also with display:none) was in fact acting as if the div (also with display:none) before it it was still there, too. God only knows how IE must be working out their block rendering, and why adding a -3px margin fixes it. Thanks Ingo! -Simon -- Simon White, French Site

[css-d] IE7: bug (?) on divs display: none / block toggle with javascript and overflow: auto

2007-04-19 Thread Simon White
annoy some people]. Regards, -- Simon White, French Site Manager http://www.fr.lastminute.com le site de voyages et de loisirs 54/56 boulevard Victor Hugo - 93 585 Saint-Ouen Cedex Tél : +33 1 49 21 68 34 | Fax : +33 1 49 21 67 91

Re: [css-d] IE Bug (67): Absolutely positioned element takes up vertical space

2007-04-18 Thread Dave Simon
It's the way you reveal the UL. Why display: inline;? If you let the UL stay block then IE won't have the bug. Use display: block; instead of display: inline;. What's interesting is that I believe AP elements are required to be block at all times just like floats are, but then display:

[css-d] IE Bug (67): Absolutely positioned element takes up vertical space

2007-04-17 Thread Dave Simon
Long time reader, first time caller. Ha ha. Anyway, here's my issue: I have a menu that is essentially a group of nested lists: ul id=main-nav li id=about-12-trails-edge-lia href=#About 12 Trails Edge/ a/li li id=details-floorplans-lia href=#Details amp; Floor Plans/a

Re: [css-d] drop down navigation with css (using minimal JS for IE)

2007-01-30 Thread Simon Tiplady | Forums
anyone help me fix it for IE6? Cheers, Simon -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Bradbury Sent: 23 January 2007 18:56 To: css-d@lists.css-discuss.org Subject: Re: [css-d] drop down navigation with css (using minimal JS for IE) Not sure

[css-d] Rollover Images with CSS Layers

2007-01-10 Thread Simon Rodriguez
I used absolute positioning to place an image on a page. Now I want to make the image a rollover image, with a link to another page. But when I insert the rollover effect (using Dreamweaver 8), the second image (the highlighted one) appears in a different part of the page. Thanks for your

[css-d] Mac IE5 positioning problem

2006-10-24 Thread Simon Gough
Does anyone know what's happening here? I'm sure you do, I think I'm missing something obvious! Simon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css

[css-d] CSS best practice?

2006-08-31 Thread Simon Levy
I have a few questions about how to layout and organise your CSS files A) I have many selectors, classes and ID's that all have the following value:property - font-weight:bold is it best practice to have a) multiple selectors, classes and ID's in one line like so with one value

[css-d] centering entire content in IE

2006-07-10 Thread Simon Kerr
no max width or min width attributes. Anyway, due to the fact that its now fixed layout, how can I centralize the pages in the browser? THe page in question is http://www.i4cevents.com Cheers, Simon __ css-discuss [EMAIL PROTECTED

[css-d] setting default styles for DIV but still having it cascade

2006-07-05 Thread Simon Kittle
which sets the color to red, I have to manually set the color on each of the TD's inside that child table as well as on the DIV container, which is not ideal. What is the recommended way to solve this? Thanks Simon __ css

[css-d] setting default styles for DIV but still having it cascade

2006-07-05 Thread Simon Kittle
which sets the color to red, I have to manually set the color on each of the TD's inside that child table as well as on the DIV container, which is not ideal. What is the recommended way to solve this? Thanks Simon __ css

[css-d] (no subject)

2006-07-03 Thread Simon Kerr
Hi all. I've been trying to think of a way to make a nice fluid layout. My page consists of three content areas that are inline. Behind them is a background image (www.i4cevents.com). When the browser is resized, the content areas should move and the background image should shrink or enlarge.

[css-d] font issues

2006-06-28 Thread Simon Kerr
Hi all. This might be a really stupid question but has anyone ever had a problem with displaying a certain font using css? In my style sheet for the body tag I've said I want verdana then a list of other fonts should the user not have verdana on their system. It works in my browser but when I

[css-d] font issues

2006-06-28 Thread Simon Kerr
hi all. sorry about that. I've styled the body as such: body{ margin:0; padding:0; height:450px; width:100%; font: 62.5% verdana, sans-serif; } but the content areas use the following path: body #foreground ul li .boxContent where the foreground

[css-d] Subject: Re: ie6 not displaying site at all, Why? (Ingo Chao)

2006-06-08 Thread Simon Kerr
. My only real problem now is what to do about the pngs. I might just use jpgs in ie but this makes the site look a little less professional and rather boxy. Thanks. Simon __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] ie6 not displaying site at all, Why? (Ingo Chao)

2006-06-07 Thread Simon Kerr
suggest a solution to this? Regards, Simon __ 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

[css-d] ie6 not displaying site at all, Why?

2006-06-06 Thread Simon Kerr
boss. Regards, Simon __ 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

[css-d] YAL (Yet Another Layout)

2006-02-23 Thread Raphael Simon
I am quite new to CSS and all its greatness. Trying to get away from tables and enter the modern age of CSS positioning. I must say that so far the experience has been a bit frustrating and have been tempted more than once to go back to the good ol' table tr td... In particular I have been trying

[css-d] Vertical alignment within td, two separate blocks

2006-02-08 Thread Simon Celen
Hi all, long time lurker, first time poster. I have a td in wich i need one block of text aligned to the top and the other to the bottom. I can set a vertical-align on the td, but this aligns both blocks ofcourse. Its probably not best practise to do what i'm trying, but right now i don't have

[css-d] Strange Issues Under FF 1.07 and all NN I have tried

2006-01-30 Thread Simon
of items which never appear. Then as soon as I mouse over any of the items which changes the background colour and font colour it reverts back to the original problem. Any ideas? I can post all the code if that helps? Regards Simon

[css-d] Vertically centering (again!) text and image relative to each (not just within container)

2006-01-19 Thread Simon Kittle
Hey, I'm after a simple way to get the equivalent of table height=200px tr td valign=centertext thats 10px height/td td valign=centerimg src=graphics/image_20px_high.png //td /tr /table I'm aware that I can use the line-height CSS property center the line object in the container, as so: div

[css-d] what could give similar effect to line-height?

2005-12-26 Thread Simon Kittle
; for example, in a blank HTML document then I get this same effect. But I've done global searches on all my code, html, and css and I've only got about 2 uses of line-height in the whole site. Are there any other CSS attributes that might give a similar behavior to line-height? Kind Regards, Simon

Re: [css-d] Header Width

2005-09-01 Thread Simon Jessey
The header elements are known as block level elements. You can turn them into inline elements to with the following style rule: h1, h2, h3, h4, h5, h6 { display: inline; } Simon Jessey Business Email: [EMAIL PROTECTED] Personal Email: [EMAIL PROTECTED] Business Site: http

Re: [css-d] Header Width

2005-09-01 Thread Simon Jessey
and some sort of preprocessing). Simon Jessey Business Email: [EMAIL PROTECTED] Personal Email: [EMAIL PROTECTED] Business Site: http://keystonewebsites.com/ Personal Site: http://jessey.net/ - Original Message - From: Mr. Kim Siever The header elements are known

[css-d] Strange IE Form Behavior

2005-07-27 Thread Dave Simon
area or not. Any help would be appreciated! -- Dave Simon, Web Designer Oddlaa Creative [EMAIL PROTECTED] or [EMAIL PROTECTED] 406.580.6991 __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List