[css-d] CSS Family Tree?

2005-12-09 Thread Chad Calhoun
I'm looking to make a family tree and I think the best way to do it is using
a list, but I'm not sure.  Has anybody tried doing this before or are there
any examples up somewhere?




__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Flash and CSS

2005-11-21 Thread Chad Calhoun
Actually, if you're interested in using DENG, the CSS support is amazing
(includes CSS3).  Not ALL of the features are supported, but it is a lot
better than Macromedia's base support.  It will take some playing around
with to learn to work with it.  Here are a couple links to check out:

http://claus.packts.net/ 
http://deng.com.br/forum/ 

If you're interested in keeping the text info and styles all within your
flash file instead of importing from an external file, check out this
thread:
http://deng.com.br/forum/viewtopic.php?t=221 
 
 
------
Chad Calhoun
overitmedia
e] [EMAIL PROTECTED]
w] www.overit.com 
 
-Original Message-

On Nov 20, 2005, at 6:26 PM, Kat Lindsey wrote:
> Is it true you have limited use of the CSS tags in flash?  And if so, 
> does
> anyone know where I might be able to find out more about this business 
> of
> creating styles using actionscript?





__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] Line break issues

2005-10-19 Thread Chad Calhoun
This is pretty damn close but not quite.  I think we've pretty much
exhausted my idea of doing this strictly with css.  Thanks anyways.  

-Original Message-
From: Adam Kuehn [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 19, 2005 4:02 PM
To: Chad Calhoun; 'CSS List'
Subject: RE: [css-d] Line break issues

At 11:52 AM -0400 10/19/05, Chad Calhoun wrote:
>I can't add a margin to "p" because I only need it to apply on the first
>paragraph there (with the ).  I can't add a bottom-margin to all
>"br" tags because it would create a margin in the middle of the paragraph
>and still would have inconsistencies.

What you need is to style br:last-child, but this solution requires a 
CSS3-capable browser (Mozilla understands this selector).  If you 
want to bring IE along for the ride, however, I'm afraid you are 
stuck with classes, search & replace, or scripting, as others have 
suggested.

Sorry there is no easy answer for this particular problem.
-- 

-Adam Kuehn




__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] Line break issues

2005-10-19 Thread Chad Calhoun
That wouldn't always work either.  

someSome text here and some more.

Has anybody worked with styling a ?  What attributes are able to be
applied?  

-Original Message-
From: diego nunes [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 19, 2005 12:02 PM
To: Chad Calhoun; css discuss
Subject: Re: [css-d] Line break issues

On 19/10/05, Chad Calhoun <[EMAIL PROTECTED]> wrote:
> I can't add a margin to "p" because I only need it to apply on the first
> paragraph there (with the ).
Why don't use just..
p:first-child { /* css goes here */ }

   ???

--
diego nunes




__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] Line break issues

2005-10-19 Thread Chad Calhoun
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci.

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore.

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore.

I can't add a margin to "p" because I only need it to apply on the first
paragraph there (with the ).  I can't add a bottom-margin to all
"br" tags because it would create a margin in the middle of the paragraph
and still would have inconsistencies.  What I would like to do is this:
br { display:block; float:left; margin-left:-4px; width:2px;
overflow:hidden; height:1em; }

However, what I would like to do is different from what I can do...  That
doesn't seem to work.  Not that the :after pseudo class is great across all
browsers, but that doesn't seem to work for me in Firefox either.  

br:after { content:" " }

^ Just as a simple example


-Original Message-
From: Adam Kuehn [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 19, 2005 11:30 AM
To: Chad Calhoun; CSS List
Subject: RE: [css-d] Line break issues

>Yeah, but not every paragraph will have a  at the end of it.  Those
>are the cases where I need to do this.

Margins are the way to go, here.  Do you need this extra space at 
every occurrence of a paragraph, list, etc., or only on some of them? 
If on only some of them, you will need to apply a class or use some 
kind of contextual selector to single out the ones you want.  The 
most practical solution will depend on your specific situation.  If 
you can provide some more details (best: provide a URL), we could 
express more definite opinions as to the best method.

-- 

-Adam Kuehn




__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] Line break issues

2005-10-19 Thread Chad Calhoun
Yeah, but not every paragraph will have a  at the end of it.  Those
are the cases where I need to do this.

-Original Message-
From: Christian Montoya [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 19, 2005 9:29 AM
To: Chad Calhoun
Cc: css-d@lists.css-discuss.org
Subject: Re: [css-d] Line break issues

Couldn't you give every < br /> a margin or padding in the CSS?
Usually in my stylesheets I apply a bottom margin to all paragraphs,
usually .5em, and I'm sure you could just do that to your br's:

br { margin-bottom:.5em; }

Basically that should beef them up and force them to take up space.

--
C Montoya
rdpdesign.com ... liquid.rdpdesign.com ... montoya.rdpdesign.com




__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Line break issues

2005-10-19 Thread Chad Calhoun
Is there any possible way to make line breaks before closed tags actually
create a line break? I work with clients who have both flash and html sites
and am trying to make the html text look like flash due to flash's inability
to handle html correctly. 

Here's an example:

Code:

Some text goes hereMore text



Html rendering:
Some text goes here
More text

Flash rendering:
Some text goes here

More text


This issue is the same with , , etc... 



Just to give you guys a better idea, right now I'm using coldfusion find and
replace to replace all "" or "" tags with "  to create a
space. The end result is good because it matches the way flash renders html,
but the client doesn't understand because they are working with a wysiwyg
editor in a CMS that is rendering text as it looks before coldfusion does
the find/replace.  It would be nice if I could use css on the  to make
that act the same as a the ...

 

Any suggestions?

 

- Chad 

 

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] CSS Dropdown

2005-04-28 Thread Chad Calhoun
I'm working on a site and am having a couple problems.  My main issue right
now is that I can't get the dropdowns to show up on top of the nav in IE.
It's working fine in Firefox.  I know the z-index works differently in IE
and I've worked around it before but I can't figure out / remember what to
do to fix it.  The link to the site is: http://dev.overit.com/daystar/www/ 

My second problem, but I'm not as worried about this, is with the middle and
right column in the home page.  In Firefox, they line up next to each other
without any margin between, but the right column has a margin on the
right-hand side of about 2px.  When I look at it in IE, the right column is
lined up correctly on the right side, but there is a margin between the
middle and right column of 2px.  

Again, my main issue is with the dropdown.  I've been referring to the
Hybrid CSS dropdown article in ALA to create it.

Thanks for the help,
 - Chad



__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/