Re: [css-d] IE 100% Width

2007-03-20 Thread Gunlaug Sørtun
Mohsen Saboorian wrote: Here a sample page: http://siahe.com/zekr/dev/iewidth/102_yusufali-pickthall-transliteration-en.html The problem is actually with CSS rule table.customTrans in screen-style.css. If you're running in quirks mode - like the sample page, then the following addition

[css-d] The correct placement of inheritance selectors to make a drop down menu to work

2007-03-20 Thread Rory@ leftangle
I want to use Alistapart horizontal drop down menu http://alistapart.com/articles/horizdropdowns/ However, can you tell me the correct inheritance syntax so that this ul navigation list and its nested lists can be differentiated from a default ul which maybe used in a cms system by a non coder.

Re: [css-d] everything floating left messing up text wrap?

2007-03-20 Thread Gunlaug Sørtun
jeffrey morin wrote: http://www.melissagerstein.com/tests/akon/akon.htm for some reason i can't get that paragraph under the image to come up and wrap around. is it because i have set everything inside the #content to float:left? Yes. 1: content in floats can't wrap around other

Re: [css-d] The correct placement of inheritance selectors to make a drop down menu to work

2007-03-20 Thread Bradley Wright
On 20 Mar 2007, at 08:23, Rory@ leftangle wrote: However, can you tell me the correct inheritance syntax so that this ul navigation list and its nested lists can be differentiated from a default ul which maybe used in a cms system by a non coder. This is the html, css and js (for IE6)

Re: [css-d] The correct placement of inheritance selectors to make a drop down menu to work

2007-03-20 Thread Gunlaug Sørtun
Rory@ leftangle wrote: I want to use Alistapart horizontal drop down menu http://alistapart.com/articles/horizdropdowns/ However, can you tell me the correct inheritance syntax so that this ul navigation list and its nested lists can be differentiated from a default ul which maybe used

Re: [css-d] Just one tiny little thing missing

2007-03-20 Thread Gaspar
Olá Gamito, u oculd try to use in css declare. html, body { 100% } and in pink label declare too height: 100% but i thing u will get some issues because 100% of the screen dont include top and bottom label, sow in some browser you will get a pink label with 100 height more the height of top

[css-d] Very tricky situation :(

2007-03-20 Thread Mário Gamito
Hi, I'm making this page and i have a glitch. I wonder if someone can help me out on this. 1) http://www.gamito.org/topContainer0.html See the grey space below the pink left column ? 2) I solved it setting body background color to the same color as that pink:

[css-d] ul is not clearing

2007-03-20 Thread Phillip Cavaco
Hi, sorry I can't provide you an URL, the following information might help you helping me, thanks: - I have a class function to clear the float elements, is not working for the footer and I don't know why: ::XHTML:: div id=footer ul class=clearfix lia class=footerSelected

[css-d] Total newby question - linked/external css vs embedded

2007-03-20 Thread Charles Marcus
Hello, I've been lurking/reading in awe for the past few weeks, and have a very basic question. I've been hesitant to ask, hoping to see someone else ask it (or unintentionally answer it), so I wouldn't have to... I'm still very new to web design, and only just learned how to do some basic

Re: [css-d] Problems with my Wrapper and Content area in my CSS Layout

2007-03-20 Thread Teressa Terry
Have you tried the spacer div fix? At the end of your content2 div (right before your wrapper div closing tag) put div style=clear:both;nbsp;/div This usually takes care of that problem for me, if I'm understanding you correctly! Teressa Graphic Web Designer Opactive *-Original

Re: [css-d] ul is not clearing

2007-03-20 Thread Bradley Wright
On 20 Mar 2007, at 10:25, Phillip Cavaco wrote: - I have a class function to clear the float elements, is not working for the footer and I don't know why: #footer{ height:50px; margin-top:40px; background-color:#244878; } #simbolo{ width:74px; height:77px;

Re: [css-d] Very tricky situation :(

2007-03-20 Thread ~davidLaakso
Mário Gamito wrote: 3) But what if the right pane is smaller than the left pink column ? http://www.gamito.org/topContainer2.html I still want the left column to be pink, but the space below the table to be the same green as in the INITIAL PAGE. Is it possible to do this ? If so, how ?

Re: [css-d] Total newby question - linked/external css vs embedded

2007-03-20 Thread ~davidLaakso
Charles Marcus wrote: It was the post referencing the Layout Gala site that prompted this message, because I learn from working examples *much* faster (as I guess most do), and now I have a starting point. Anyway - where can I go to learn the entry level basics about CSS - like, for

Re: [css-d] Total newby question - linked/external css vs embedded

2007-03-20 Thread Charles Marcus
As for myself: I put the CSS in the head of the document (embed it) when designing a page. It is just easier, and faster for me to work that way. And when posting a CSS question to the list, it is a little easier for those responding to a question if the CSS is embedded. Excellent tip -

Re: [css-d] everything floating left messing up text wrap?

2007-03-20 Thread jeffrey morin
Yes. 1: content in floats can't wrap around other elements. 2: width on paragraphs make them inflexible, and triggers 'Layout' in IE/win which have negative effects in your case. Change paragraph rules as follows... p { font-size: 1.3em; line-height: 1.3em; margin: .5em 2.3em .5em

[css-d] Problems with DIVs lining up

2007-03-20 Thread Marty Martin
Hello everyone, I have worked on this until I'm cross-eyed. The page here- http://commonwealthentpc.com/ is using DIVs to separate the header, middle and footer content. They're the same width, etc. but are not lining up evenly. They seem to be a couple of pixels off on either side. Help!

Re: [css-d] Problems with DIVs lining up

2007-03-20 Thread Rimantas Liubertas
2007/3/20, Marty Martin [EMAIL PROTECTED]: Hello everyone, I have worked on this until I'm cross-eyed. The page here- http://commonwealthentpc.com/ is using DIVs to separate the header, middle and footer content. They're the same width, etc. but are not lining up evenly. They seem to be

Re: [css-d] Dealing with browser incompatibilities

2007-03-20 Thread Devon Miller
On 3/20/07, Charles Marcus [EMAIL PROTECTED] wrote: One more question before I crawl back into my cave for a few weeks... ;) Is there a good beginner explanation for how to deal with browser tests and incompatibilities? Ie, proper syntax for how to provide some CSS code that would only be

Re: [css-d] Dealing with browser incompatibilities

2007-03-20 Thread Charles Marcus
Is there a good beginner explanation for how to deal with browser tests and incompatibilities? Ie, proper syntax for how to provide some CSS code that would only be applied to IE5 (or IE6 - or IE7) for example? I've seen a few examples, but didn't understand how they worked, and I'd rather

Re: [css-d] Total newby question - linked/external css vs embedded

2007-03-20 Thread Mark Story
Hi Charles. A couple good CSS resources are: The w3: http://www.w3.org/Style/CSS/learning and w3schools.com : http://www.w3schools.com/css/default.asp These are both good references, and finding a book or online cheat sheet (*http://www.ilovejackdaniels.com/cheat-sheets/css-cheat-sheet/)*

Re: [css-d] Total newby question - linked/external css vs embedded

2007-03-20 Thread Dave Goodchild
I would also get hold of some good books and absorb them. Some recommendations: Cascading Style Sheets (Briggs et al), Friends Of Ed CSS Mastery (Andy Budd) Friends Of Ed anything by Eric Meyer. __ css-discuss [EMAIL PROTECTED]

[css-d] Subject: Problems with my Wrapper and Content area in my CSS Layout

2007-03-20 Thread steff
*-Original Message- *From: [EMAIL PROTECTED] *[mailto:[EMAIL PROTECTED] On Behalf Of John Moynihan *Sent: Monday, March 19, 2007 2:32 PM *To: css-d@lists.css-discuss.org *Subject: [css-d] Problems with my Wrapper and Content area in *my CSS Layout * * *Hi Folks, *I was wondering the

Re: [css-d] Total newby question - linked/external css vs embedded

2007-03-20 Thread Austin Harris
These are both good references, and finding a book or online cheat sheet (*http://www.ilovejackdaniels.com/cheat-sheets/css-cheat-sheet/)* is also a good idea. I find http://gotapi.com/ really handy. (After my css reference pocket book thingy from O'Reilly fell apart!)

[css-d] Frames or CSS? Dynamic section of page

2007-03-20 Thread Robert Tilley
My page has a static top, sides, and bottom. I would like to have a dynamic center which changes according to menu (top of page) selections. The only solution which I understand is to use frames. It would work to reload the entire page with each selection, but avoiding is the main purpose of

[css-d] Trying yet another Drop-Down Menu

2007-03-20 Thread THOMAS ROGERS
Hello again The last horizontal menu system I tried was by Tedd Sperling (http://sperling.com/examples/menuh/). Unfortunately it depends on a unique file called csshover.htc which didn't seem to do the trick for me. I even went into my apache configuration but it just doesn't seem to be worth

Re: [css-d] Frames or CSS? Dynamic section of page

2007-03-20 Thread Douglas Fraser
Robert Tilley wrote: My page has a static top, sides, and bottom. I would like to have a dynamic center which changes according to menu (top of page) selections. The only solution which I understand is to use frames. It would work to reload the entire page with each selection, but

[css-d] Inner HTML/CSS

2007-03-20 Thread Glenn E. Lanier, II
Hi, I've created a simple page (http://www.lanierconsulting.net-a.googlepages.com/ErrorTest.html) that displays an problem I'm having. I want to parse my form's inputs, report errors if any (by creating and styling an unordered list) in a box (with an appropriate background/color to draw

Re: [css-d] Frames or CSS? Dynamic section of page

2007-03-20 Thread Fora
The only solution which I understand is to use frames. It would work to reload the entire page with each selection, but avoiding is the main purpose of CSS. With my increasing knowledge of CSS, I'm trying to move away from such hacks and to code according to standards. This does do the

Re: [css-d] Inner HTML/CSS

2007-03-20 Thread Glenn E. Lanier, II
_ From: Glenn E. Lanier, II [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 20, 2007 3:35 PM I've created a simple page (http://www.lanierconsulting.net-a.googlepages.com/ErrorTest.html) that displays an problem I'm having. I want to parse my form's inputs, report errors if any (by

[css-d] IE7 special code

2007-03-20 Thread Pelle
Hi all. I have this in my CSS * html .clearing {display:none;} i NEED this to imp+lement in IE7 too, but NOT in Ffx or so. What is the bug code for this? In pure .css file cause it is external, no javascript or [if lte IE 7] works in this case :( Regards Pelle

[css-d] 2 issues with my page, please advice

2007-03-20 Thread hepabolu
Hello, I have this page: http://people.apache.org/~hepabolu/final6.html and there are 2 issues left: 1. (most important) when the browser is resized to 800x600 the right green block and the blue block drop below the 2 blocks on the left and the news section creeps in gap between the blue and

[css-d] Problem with a:hover

2007-03-20 Thread John M Shepard
I am working on this page with all the css on same page but having a difficult time getting the ³a:hover² to work. I am trying to get the color to change slightly when the mouse hovers over. Here¹s the mockup site: http://pushforpd.earthpedal.com/ Can anybody help? John Shepard

Re: [css-d] 2 issues with my page, please advice

2007-03-20 Thread francky
hepabolu schreef: Hello, I have this page: http://people.apache.org/~hepabolu/final6.html and there are 2 issues left: 1. (most important) when the browser is resized to 800x600 the right green block and the blue block drop below the 2 blocks on the left and the news section creeps in

Re: [css-d] IE7 special code

2007-03-20 Thread francky
Pelle wrote: Hi all. I have this in my CSS * html .clearing {display:none;} i NEED this to imp+lement in IE7 too, but NOT in Ffx or so. What is the bug code for this? In pure .css file cause it is external, no javascript or [if lte IE 7] works in this case :( Regards Pelle Hi

Re: [css-d] Problem with a:hover

2007-03-20 Thread francky
John M Shepard schreef: I am working on this page with all the css on same page but having a difficult time getting the ³a:hover² to work. I am trying to get the color to change slightly when the mouse hovers over. Here¹s the mockup site: http://pushforpd.earthpedal.com/ Can anybody help?

Re: [css-d] Problem with a:hover

2007-03-20 Thread Stephen Van Doren :: Fusionbox
Your navigation images (such as help_nav.gif) aren't transparent, so the background image you pass in the a:hover isn't being seen. I'd recommend, anyway, using actual text instead of images, but if you're married to that font, you need to make those navigation images transparent. -Original

Re: [css-d] Problem with a:hover

2007-03-20 Thread ~davidLaakso
John M Shepard wrote: I am working on this page with all the css on same page but having a difficult time getting the ³a:hover² to work. I am trying to get the color to change slightly when the mouse hovers over. Here¹s the mockup site: http://pushforpd.earthpedal.com/ Can anybody help?

Re: [css-d] 2 issues with my page, please advice

2007-03-20 Thread Gunlaug Sørtun
hepabolu wrote: http://people.apache.org/~hepabolu/final6.html 1. (most important) when the browser is resized to 800x600 the right green block and the blue block drop below the 2 blocks on the left and the news section creeps in gap between the blue and the grey block. Add... #bodyText