Re: [css-d] Pages get weird when uploaded EC

2011-10-09 Thread John
On Oct 9, 2011, at 8:56 PM, John wrote: > I had been using the name Styles_A.css and made my style sheet today the same > name. I uploaded the markup and the graphics, but did not upload (and > therefore overwrite) the old Styles_A.css that should read did not upload the new, and therefore ove

Re: [css-d] Pages get weird when uploaded

2011-10-09 Thread John
On Oct 9, 2011, at 8:34 PM, Jukka K. Korpela wrote: > The pages you mentioned first refer to an external style sheet quite > different from the one referred to by the third one- > >> I began with one that worked both locally and online, and > > replaced the content (words) bit by bit, proofed t

Re: [css-d] Pages get weird when uploaded

2011-10-09 Thread Jukka K. Korpela
10.10.2011 5:05, John wrote: Here are 2 pages, each built on the SAME structure: - - they are SUPPOSED to look like this one: - - Can somebody please help me to understand what happened? The pages you mentioned first refer to an external style sheet quite different from the one referred t

Re: [css-d] Trying to override site style sheet with inline CSS?

2011-10-09 Thread Jukka K. Korpela
10.10.2011 5:57, Keith Purtell wrote: Here'a a direct link... http://tahlequahnow.com/story.php?id=568 Didn't you get my message that I sent to the list? (Sen Sun, 09 Oct 2011 13:20:32 +0300) You have the HTML attribute name "style" misspelled as "stye". (P.S. Tried the "!important" meth

Re: [css-d] Trying to override site style sheet with inline CSS?

2011-10-09 Thread Keith Purtell
On 10/9/2011 12:24 PM, css-d-requ...@lists.css-discuss.org wrote: Date: Sun, 09 Oct 2011 12:03:34 +1300 From: Mark Henderson To: css discuss Subject: Re: [css-d] Trying to override site style sheet with inline Keith Purtell wrote: > But one item defies all efforts. For some reason, hiss CSS

Re: [css-d] Pages get weird when uploaded

2011-10-09 Thread David Laakso
On 10/9/11 10:05 PM, John wrote: Here are 2 pages, each built on the SAME structure: http://www.coffeeonmars.com/testing/index.html http://www.coffeeonmars.com/testing/WPR_Wire.html Can somebody please help me to understand what happened? John The style sheet does not match the markup. Best

Re: [css-d] Pages get weird when uploaded

2011-10-09 Thread Michael Geary
On Sun, Oct 9, 2011 at 7:05 PM, John wrote: > Here are 2 pages, each built on the SAME structure: > > http://www.coffeeonmars.com/testing/index.html > http://www.coffeeonmars.com/testing/WPR_Wire.html > > > they are SUPPOSED to look like this one: > > http://www.coffeeonmars.com/testing/redo_WPR_

[css-d] Pages get weird when uploaded

2011-10-09 Thread John
Here are 2 pages, each built on the SAME structure: http://www.coffeeonmars.com/testing/index.html http://www.coffeeonmars.com/testing/WPR_Wire.html they are SUPPOSED to look like this one: http://www.coffeeonmars.com/testing/redo_WPR_Wire.html Can somebody please help me to understand what h

Re: [css-d] Floating Boxes & Text Wrap Help

2011-10-09 Thread Alan Gresley
On 10/10/2011 2:54 AM, Jeff Ferrell wrote: On Oct 9, 2011, at 10:03 AM, Alan Gresley wrote: I guess you have not noticed the below CSS contained in the selectors on line 1078 and line 1877. #review-meta-container, #post-meta-container { float: right; margin-left: 10px; margin-bottom: 10px; }

Re: [css-d] Text-indent and 100% height issues

2011-10-09 Thread John
On Oct 8, 2011, at 8:13 PM, David Laakso wrote: > > Yeah. Math ain't our bag. We work visually -- as in put up and tickle it > until it "looks" right -- or, at least, sort of... > Revised layout on our server: > Ha! yeah... Well, the idea that you

Re: [css-d] Floating Boxes & Text Wrap Help

2011-10-09 Thread Jeff Ferrell
On Oct 9, 2011, at 10:03 AM, Alan Gresley wrote: > I guess you have not noticed the below CSS contained in the selectors on line > 1078 and line 1877. > > #review-meta-container, #post-meta-container { > float: right; > margin-left: 10px; > margin-bottom

Re: [css-d] dynamic CSS strategies

2011-10-09 Thread David Laakso
On 10/9/11 11:18 AM, Dan Kaufman wrote: Excellent solution Barney! Same general concept IF, but much more elegantly and efficiently delivered. Dan K Gentlepeople, How about trimming your replies to the list so all of us do not wind up with an in-box full of stuff we have already read [s

Re: [css-d] dynamic CSS strategies

2011-10-09 Thread Dan Kaufman
Excellent solution Barney! Same general concept IF, but much more elegantly and efficiently delivered. Dan K -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Barney Carroll Sent: Sunday, October 09, 2011 8:14 AM To: D

Re: [css-d] Trying to override site style sheet with inline CSS?

2011-10-09 Thread Rod Castello
- Original Message From: Keith Purtell To: css discuss Sent: Sat, October 8, 2011 3:23:46 PM Subject: [css-d] Trying to override site style sheet with inline CSS? I've taken on a project supplying content for an online new source. The problem is that the guy who set it up did a pre

Re: [css-d] dynamic CSS strategies

2011-10-09 Thread Barney Carroll
None of the above: Use a class to determine the various layout conditions. Assuming some kind of inline templating engine: CSS: .navigation { width: 16%; } .navigationWide { width: 25%; } Template: etc etc Keep all your CSS in one place, introduce CSS hooks from the

Re: [css-d] dynamic CSS strategies

2011-10-09 Thread Dan Kaufman
One solution is to use your server-side programming to dynamically generate the CSS file. This way you can control all sorts of things in your layout and look-and-feel relative to your database queries. In your case, for your column of links, write an IF/ELSE statement based on the record count.

Re: [css-d] dynamic CSS strategies

2011-10-09 Thread David Laakso
On 10/9/11 10:22 AM, Colin (Sandy) Pittendrigh wrote: Let's say my content management system is currently using a three column layout, where a left side column of links is usually defined as 16% of available width. However, if it turns out the current page has a larger than normal number of navi

[css-d] dynamic CSS strategies

2011-10-09 Thread Colin (Sandy) Pittendrigh
This is a CSS discussion list. So programming issues are not on topic here. But if I keep my dynamic CSS question abstract enough I don't see why it isn't a CSS issue as much as anything else. Let's say my content management system is currently using a three column layout, where a left side colum

Re: [css-d] Floating Boxes & Text Wrap Help

2011-10-09 Thread Alan Gresley
On 10/10/2011 12:17 AM, Jeff Ferrell wrote: *Sigh* -- I'm getting nowhere with this and hoping someone can help. On pages like this http://rchseaglesnest.org/extra/dread-test/ and this http://rchseaglesnest.org/pumpkin/, I've got some boxes floated to the right -- one holding an image, and the ot

[css-d] Floating Boxes & Text Wrap Help

2011-10-09 Thread Jeff Ferrell
*Sigh* -- I'm getting nowhere with this and hoping someone can help. On pages like this http://rchseaglesnest.org/extra/dread-test/ and this http://rchseaglesnest.org/pumpkin/, I've got some boxes floated to the right -- one holding an image, and the other, beneath it, that can potentially hold

Re: [css-d] Trying to override site style sheet with inline CSS?

2011-10-09 Thread Jukka K. Korpela
9.10.2011 2:03, Mark Henderson wrote: Keith Purtell wrote: But one item defies all efforts. For some reason, hiss CSS for general text content is set up with a 1cm indent, which looks pretty ugly. I've been tolerating it with paragraphs, but it also kicks in whenever I try to add a list, which