[css-d] Form styling

2005-10-19 Thread Augusto Murri
Hi all, i've some problems to styling this form in FF.. http://www.opent.it/gasper/login.htm As u can see in IE it shows well but in FF the input TEXT hasn't margin Thx!! A __ css-discuss [EMAIL PROTECTED]

RE: [css-d] Site test and questions.

2005-10-19 Thread Mark Batty
Georg (and thanks to Susan Welter for suggestions and Mac testing) Thanks for the feedback. Just so that you know; poor old IE6 is forced to run in quirks mode, similar to IE5+ (see link below). That's fine with me, as I always do that on purpose anyway :-) I've heard the phrase before but

Re: [css-d] Print style sheet not working in Opera (8.5)

2005-10-19 Thread Andrew Gregory
On Wed, 19 Oct 2005 17:41:00 +0800, Bill Stemp [EMAIL PROTECTED] wrote: However, upon changing the media type to print, Opera prints the body background colour, despite this being overridden in the printsstyle.css. This is an Opera bug. However, by default the printing of backgrounds is

[css-d] Images not displaying in IE?

2005-10-19 Thread Julian Voelcker
I have thrown up a site which seems to work fine in FireFox, but not in IE - the images aren't displaying, well actually they are, but it looks like they are loading behind the main content div. The page is at: http://lc.tvw.net. It doesn't seem to matter if I use my own class to position the

[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: pSome text goes

[css-d] Extra bullet point appears in firefox and netscape

2005-10-19 Thread 2geedesign
When viewing the following page in firefox 1.0 (WIN) and netscape 7.1 (WIN) an extra bullet point appears to the left of the main list. Ideas as to why and cures to fix this problem would be much appreciated. http://www.bearingsfiltration.co.uk/ Cheers Ian W Geddes

Re: [css-d] Line break issues

2005-10-19 Thread Christian Montoya
On 10/19/05, Chad Calhoun [EMAIL PROTECTED] wrote: 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

[css-d] Weird bug could use some help with

2005-10-19 Thread Julie Davis
Hello everyone! I have a strange IE bug that I have run across and can't seem to figure out why it is doing it and hope someone could shed some light on a possible fix. If you visit this page http://www.clarkson.edu/getting_into_clarkson/calendar/off_campus_interview.php and some random

Re: [css-d] Extra bullet point appears in firefox and netscape

2005-10-19 Thread Eric Shepherd
You're displaying your ul as a list-item itself. You don't really mean to do that, you actually just want the lis inside of the ul to be list items. Take that instruction out of .list in your style sheet and you're good to go. On 10/19/05, 2geedesign [EMAIL PROTECTED] wrote: When viewing the

Re: [css-d] Extra bullet point appears in firefox and netscape

2005-10-19 Thread Christian Heilmann
When viewing the following page in firefox 1.0 (WIN) and netscape 7.1 (WIN) an extra bullet point appears to the left of the main list. Ideas as to why and cures to fix this problem would be much appreciated. http://www.bearingsfiltration.co.uk/ Duno why, but the display:list-item; is the

Re: [css-d] Extra bullet point appears in firefox and netscape

2005-10-19 Thread Nick Cappadona
Hi Ian, I believe this is because you have set a class for your unordered list (ul) that defines a list-style-type to the ul itself. Try changing the list class (.list) in your stylesheet to .list li as shown below. This will ensure that the list-style-type is applied only to the list

Re: [css-d] Extra bullet point appears in firefox and netscape

2005-10-19 Thread Bill Stemp
- Original Message - From: 2geedesign To: css-d@lists.css-discuss.org Sent: Wednesday, October 19, 2005 3:08 PM Subject: [css-d] Extra bullet point appears in firefox and netscape When viewing the following page in firefox 1.0 (WIN) and netscape 7.1 (WIN) an extra bullet

Re: [css-d] Print style sheet not working in Opera (8.5)

2005-10-19 Thread Bill Stemp
- Original Message - From: Andrew Gregory To: Bill Stemp ; css-d@lists.css-discuss.org Sent: Wednesday, October 19, 2005 1:42 PM Subject: Re: [css-d] Print style sheet not working in Opera (8.5) On Wed, 19 Oct 2005 17:41:00 +0800, Bill Stemp [EMAIL PROTECTED] wrote:

Re: [css-d] Images not displaying in IE?

2005-10-19 Thread Julian Voelcker
Hi Christian, You have a space in the filename, I don't think IE likes that. Rename the file to sudan2007.jpg, rewrite the img tags, and see if that fixes the problem. Unfortunately it isn't that. IE doesn't have a problem with spaces and so removing them has made no difference. Any

Re: [css-d] Images not displaying in IE?

2005-10-19 Thread Ingo Chao
Julian Voelcker wrote: in IE - the images aren't displaying, well actually they are, but it looks like they are loading behind the main content div. The page is at: http://lc.tvw.net. Applying layout via the Holly hack [1] to #contenttext brings them back. ... they were hidden beyond the

[css-d] Consistent fieldset background image in IE FFox

2005-10-19 Thread Doug Ferguson
Anyone have any experience with using background images on fieldsets? Seems that IE and FFox treat the fieldset areas differently when it comes to tiled background images (and background colors for that matter)? The problem is where the acutal image or color starts. In FFox, it starts at the

RE: [css-d] Any complete resources for inline CSS?

2005-10-19 Thread Adam Kuehn
At 11:27 AM +1000 10/19/05, Peter Williams wrote: From: css man Does anyone know of any tutorials, reference or other sites that focus on inline CSS? CSS isn't different when it is applied inline, in a style element, or in an external stylesheet. It isn't fundamentally different, but I

RE: [css-d] Line break issues

2005-10-19 Thread Adam Kuehn
Yeah, but not every paragraph will have a br / 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

[css-d] Help With Form Submission Response

2005-10-19 Thread Linda Quinn
My request for help may be beyond the scope of this list, but I thought I would post it and see if anyone could help. I have a form, which submits to a file on the server. I've been told that once the server file receives a submission, it can send a response to the user stating that the

Re: [css-d] Images not displaying in IE?

2005-10-19 Thread Julian Voelcker
Hi Ingo, Applying layout via the Holly hack [1] to #contenttext brings them back. ... they were hidden beyond the background of their own parent ... this often happens when floats are descendants of non-layout-elements. Thanks. Actually solved it by setting the img tag to

Re: [css-d] Line break issues

2005-10-19 Thread Larry Israel
Is there any possible way to make line breaks before closed tags actually create a line break? pSome text goes herebr/ppMore text/p This might well do the trick. Do a global search and replace of your web pages. Find: br/p Replace: brnbsp;/p The space character ensures that there is some

Re: [css-d] Line break issues

2005-10-19 Thread Gunlaug Sørtun
Chad Calhoun wrote: Has anybody worked with styling a br /? What attributes are able to be applied? Essentially none that'll affect space - unless you use Moz/Firefox. Moz/FF can take 'float', 'positive margin', 'font-size/line-height' 'height', and IE/Mac reacts to some of it. No effect

RE: [css-d] Line break issues

2005-10-19 Thread Adam Kuehn
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 br //p). 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

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:

Re: [css-d] Opacity in Suckerfish

2005-10-19 Thread Chester Bullock
Arno @ Raketnet wrote: Hi, I'm using a son of suckerfish dropdown and I want to use a transparent background. The testpage: http://www.poetryin-e-motion.com/test/index.html The CSS: http://www.poetryin-e-motion.com/test/scripts/sheet1.css Have you (or anyone else) figured out why the menu

[css-d] Simple Question About Sign

2005-10-19 Thread Robin Whitman
Hi and thanks very much for solving my last problem. Here's another ... htmlbody #color_me_green { color: #00cc00; } I have never seen thesign used in a CSS style sheet. What does it do? ... Why not just use a dot in that code?: html.body #color_me_green { color: #00cc00; } Is

Re: [css-d] Simple Question About Sign

2005-10-19 Thread Adam Kuehn
htmlbody #color_me_green { color: #00cc00; } I have never seen thesign used in a CSS style sheet. What does it do? I would suggest reading the selectors portion of the CSS spec http://www.w3.org/TR/CSS21/selector.html. As you can see from that chart, a is the child selector. So

Re: [css-d] Simple Question About Sign

2005-10-19 Thread Keith Sader
It's the child selector such that you're selecting the strict child node in the DOM. Mostly it's used to get around defects in IE 6 that aren't present in other browsers since IE 6 doesn't recognize the child selector symbol() You'll see it a lot in the dreaded three pixel fixes /* get around

[css-d] drop down menus aren't clickable in IE

2005-10-19 Thread Betsy Garfield
Hi all. Love the list, learning a lot, first time posting. This design isn't perfect but my here's my main problem right now: the drop down menus aren't clickable in IE and the text in the li boxes is getting garbled. I have spent a gazillion hours on this trying different things and have

Re: [css-d] Hover/click and expand help needed

2005-10-19 Thread Christian Montoya
On 10/19/05, Mitko Gerensky-Greene [EMAIL PROTECTED] wrote: Thanks to all for trying to help! I got further requirements and I have a draft version based on some code Dreamweaver spat: http://websage.net/new/programs_menu.htm The CSS and JS code are respectively:

[css-d] Site Check

2005-10-19 Thread Paul Fundenburg
I'm not a pro so be kind ;) I'm just doing this for my church. This looks ok in win ie6 and firefox 1.7, but I'm sure it stinks in ie5 5.5 and who knows about Mac. I can't figure out if and when and how to use what hack. Any help would be greatly appreciated. I'm not going live for another

Re: [css-d] drop down menus aren't clickable in IE

2005-10-19 Thread Steve Clason
On 10/19/2005 7:59 PM Betsy Garfield wrote: This design isn't perfect but my here's my main problem right now: the drop down menus aren't clickable in IE and the text in the li boxes is getting garbled. test page: http://base.wrjdistrict13.org/index.html css: