Re: [css-d] prob w div positioning

2012-05-11 Thread David Laakso
On Fri, May 11, 2012 at 8:47 PM, Leslie Albuquerque wrote: Hello, Will you explain why the div "main" won't clear the sb divs float right and sit on its left side. Thank you or any help you can provide. http://www.cwl-host.com/shop/index.php Because among other things the markup and the CSS are

Re: [css-d] prob w div positioning

2012-05-11 Thread Leslie Albuquerque
David, Thanks for your valuable help. I cleaned up some extra html tags as suggested by Woody and added the overflow: auto & *zoom:1; & the page layout is much improved. best wishes, Leslie On May 11, 2012, at 9:29 PM, David Hucklesby wrote: On 5/11/12 5:47 PM, Leslie Albuquerque wrote: Hell

Re: [css-d] prob w div positioning

2012-05-11 Thread Leslie Albuquerque
Thank you Woody, A valuable lesson in grafting. I got rid of the unnecessary tags in files which were placed with an include statement. best wishes, Leslie On May 11, 2012, at 6:59 PM, Woody Packard wrote: Oh Leslie, what's a browser to do with instructions like this. Start by seeing if you

Re: [css-d] prob w div positioning

2012-05-11 Thread David Hucklesby
On 5/11/12 5:47 PM, Leslie Albuquerque wrote: Hello, Will you explain why the div "main" won't clear the sb divs float right and sit on its left side. Thank you or any help you can provide. http://www.cwl-host.com/shop/index.php Umm. The div#main *is* clearing the float, which is why it appears

[css-d] prob w div positioning

2012-05-11 Thread Leslie Albuquerque
Hello, Will you explain why the div "main" won't clear the sb divs float right and sit on its left side. Thank you or any help you can provide. http://www.cwl-host.com/shop/index.php __ css-discuss [css-d@lists.css-discuss.org

[css-d] CSS3 101

2012-05-11 Thread Ted Rolle Jr.
I've lurked on this list, but the level of expertise required to understand posts is beyond my level. I've been to CSS3 design sites (w3school and others). I have 5 (may increase) boxes for data entry. Right now they'er vertically aligned. I'm using rather than because that seems more CSS-ish

Re: [css-d] Float drop... Can float:left drop left?

2012-05-11 Thread Micky Hulse
On Fri, May 11, 2012 at 1:15 PM, Micky Hulse wrote: > The latter. The shifting is not what I am worried about. Sorry, I meant "former", not "latter". :) __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mail

Re: [css-d] Float drop... Can float:left drop left?

2012-05-11 Thread Micky Hulse
Hi Daniel! Many many thanks for your quick reply and pro help! I really appreciate it. :) On Fri, May 11, 2012 at 12:51 PM, Venditelli, Daniel - Web Development Administrator wrote: > Assuming equal width columns, this means initially the viewer sees > [1][2][3][4] and as the window narrows, 4 dr

Re: [css-d] Float drop... Can float:left drop left?

2012-05-11 Thread Venditelli, Daniel - Web Development Administrator
The columns are dropping the way they are as much because of the source order of your code as the float properties. I think the only way you'll be able to get the LEFT columns to drop instead of the RIGHT columns would be to reverse your source order AND use float fight. i.e. As I understand it yo

[css-d] Float drop... Can float:left drop left?

2012-05-11 Thread Micky Hulse
Hello, I have a container that adapts at certain break points as the browser window gets smaller. Within this container, I have 4 floated:left columns; at the container's widest width, all four columns line up side-by-side. As the container gets smaller, the far RIGHT columns drop below the prec

Re: [css-d] Redefine All Images

2012-05-11 Thread Philip TAYLOR
D Mark Weiss wrote: Is there a way to make every image put into the site to assume this definition by redefining the tag like .img { float:right; padding-left:15px; } That doesn't seem to work. Remove the leading period. A leading period denotes a class, a leading hash denotes an ID;

Re: [css-d] Redefine All Images

2012-05-11 Thread Philip TAYLOR
D Mark Weiss wrote: Is there a way to make every image put into the site to assume this definition by redefining the tag like .img { float:right; padding-left:15px; } That doesn't seem to work. Remove the leading period. A leading period denotes a class, a leading has denotes an ID; t

Re: [css-d] Redefine All Images

2012-05-11 Thread JWN
Mark You wrote: In our site, we want every image to assume this CSS { float:right; padding-left:15px; } Is there a way to make every image put into the site to assume this definition by redefining the tag like .img { float:right; padding-left:15px; } That doesn't seem to work. Thanks

Re: [css-d] Redefine All Images

2012-05-11 Thread Dennis Bixler
Remove the period so the call is: Img { ... } Dennis Bixler Lashen Electronics, Inc. 21 Broadway Denville, NJ 07834 (973) 627-3783 FAX: (973) 625-9501 -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of D Mark Weiss Se

[css-d] Redefine All Images

2012-05-11 Thread D Mark Weiss
In our site, we want every image to assume this CSS { float:right; padding-left:15px; } Is there a way to make every image  put into the site to assume this definition by redefining the tag like  .img { float:right; padding-left:15px; } That doesn't seem to work.  Thanks Mark dadwe...@me