Re: [css-d] Centering a Script

2009-12-22 Thread Delos Woodruff
Someone else may have a more clever idea, but I would just enclose the script in a div and center that. (put script here) Some will recommend keeping your css elsewhere, so you could also add this to your css: . twitter {width:450px; height:150px; margin:0 auto;} And then add this to your

Re: [css-d] New Intranet Design - IE 6 Woes

2009-12-04 Thread Delos Woodruff
Jacob, If FF 3 it looks fine but according to browsershots (http://browsershots.org/http://www.peelregion.ca/pathways/ ), it appears IE 6 slides everything below the header to the right. It's interesting that the columns float right instead of float left. I ran the page through the w3 markup

[css-d] background image conflict

2009-10-02 Thread Delos Woodruff
I have a site where the background image fails to show on certain pages. I don't see any place where the css has been overridden in the code that would prevent it. Here's an example of a page with the background image: http://checkitlocal.com/dixon-ralph-s-dpm.html And here's one without: htt

Re: [css-d] What's your preference -- fluid, elastic, or fixed?

2009-06-05 Thread Delos Woodruff
>> I'm not sure what distinction you make between "fluid" and >> "elastic", so I just wanted to mention that I've seen elastic as widths defined by ems, fluid by percents and fixed set by pixels. -Delos __ css-discuss [cs.

Re: [css-d] css interference

2009-06-02 Thread Delos Woodruff
On Jun 2, 2009, at 8:52 PM, David Hucklesby wrote: >> No need to recode the site! The incomplete HTML 4 DOCTYPE puts >> browsers into quirks mode. Nothing to do with XHTML code - which is >> treated as HTML by browsers anyway. >> Give your pages a complete DOCTYPE, including the DTD declarat

Re: [css-d] css interference

2009-06-02 Thread Delos Woodruff
David, Aha! I had posted http://checkitlocal.com/sample.htm but I went ahead and fixed all the little validation errors in the html and I switched the doctype to what the site itself uses just to be thorough. Apparently, the does not allow for the hover effect. When I put back in the htt

[css-d] css interference

2009-05-30 Thread Delos Woodruff
In addition to my site being a smidge too wide, I have a more important issue to worry about. Does php somehow interfere with css statements? I am trying to create a tab nav like you find at http://www.cssplay.co.uk/menu/one_page I have the code working perfectly on a test html page at home.

[css-d] Taming table widths

2009-05-30 Thread Delos Woodruff
I've got a site that is built using tables for layout and I'd like to eliminate the small horizontal scroll that shows up. I am assuming it has something to do with the margins/padding in all the nested tables but I would expect the problem to show up in IE or in FF but not both. It also go

[css-d] Two questions: Konqueror CSS and Two Column Layout

2006-12-06 Thread Delos Woodruff
First, I'm looking for direction on how to make minor conditional CSS margin/padding adjustments for Konqueror. I don't use Konqueror and I've never done anything with conditional comments, so I'm at a loss on what to try where to look for more information specific to Konqueror. Because there i

[css-d] Active/Focus trouble

2006-10-17 Thread Delos Woodruff
Hi folks! I have a simple question about the link, visited, hover, active and focus pseduoclasses. Everything works fine up until I get to the active tag. If a visitor is on (say) the Home page, I want the Home link to be high-lited. Since the w3schools page describes the active pseudoclass as

Re: [css-d] Validation assistance

2006-10-04 Thread Delos Woodruff
elos On Oct 4, 2006, at 11:24 AM, David Dorward wrote: > On 04/10/06, Delos Woodruff <[EMAIL PROTECTED]> wrote: >> I tried to validate a page and got a particular error. Specifically, >> because I'm using a strict html doctype, it didn't like the final > in

Re: [css-d] Validation assistance

2006-10-04 Thread Delos Woodruff
Thank you, Bjeorn. It seemed strange not to use the final >. The page this is taken from in written in HTML, so I can lose the /. I'm much more comfortable with that option. What a great list, huh? Thanks again. Delos On Oct 3, 2006, at 11:01 PM, Bjoern Hoehrmann wrote: > > If you use HTML

[css-d] Validation assistance

2006-10-03 Thread Delos Woodruff
Hello folks! I tried to validate a page and got a particular error. Specifically, because I'm using a strict html doctype, it didn't like the final > in the css link. I followed the help info on this and it says that the final > is not necessary, but that seems highly irregular to me. It als