Re: [css-d] Advertisement has unwanted link border around it

2009-11-08 Thread Theresa Mesa
Does giving #sideNavBar li a { } a rule of border:none help? Text- decoration has nothing to do with a border. Theresa On Nov 7, 2009, at 3:29 PM, Brian M. Curran wrote: Hi, In IE7 and Firefox the advertisement on my site http://www.locallaw11of1998.com/ has an unwanted border around

[css-d] floats with margins

2009-11-08 Thread Ari Army
Hello all, I have a div container which has many floated images inside of it. The images have 10px bottom and right margins, so they can space out and look good. I noticed when I put a background color on the container that it contains the all the images, yay which brings me to my question... I

Re: [css-d] What defines a ture holy grail layout?

2009-11-08 Thread Alan Gresley
Jay Tanna wrote: let lassko have a look at it. If he doesn't swear at you it must be fine ;) So is Lassko our resident expert on all things CSS here? Laakso is the American page shredder. The European mafia, Sørtun, Wittenbergh, Fassino and Chao are quite good also. Then there is

Re: [css-d] Vertical padding weirdness

2009-11-08 Thread Benct Philip Jonsson
G. Sørtun skrev: Benct Philip Jonsson wrote: So that's the margins of the h1 and the p interfering? Outside the boxes of the divs which contain them? I *really* don't understand how margins are calculated! You're encountering collapsing margins...

Re: [css-d] Vertical padding weirdness

2009-11-08 Thread G. Sørtun
Benct Philip Jonsson wrote: Will setting any small amount of padding on the innermost containing box do the trick, like 1px or even 0px as opposed to not declaring any padding at all? Has to result in a real vertical padding - minimum 1px - to work reliable, so 0px, or a value so small

Re: [css-d] floats with margins

2009-11-08 Thread Alan Gresley
Ari Army wrote: Hello all, I have a div container which has many floated images inside of it. The images have 10px bottom and right margins, so they can space out and look good. I noticed when I put a background color on the container that it contains the all the images, yay which brings me

Re: [css-d] floats with margins

2009-11-08 Thread Ari Army
You could create a class for the images on the bottom row img class=last and change the padding on the bottom to img.last {padding-bottom: 0;} The last row though may be populated by any number of images, as the site is a dynamic CMS like Drupal, so if the thumbnail size changes (if the user

Re: [css-d] Site check please

2009-11-08 Thread Ed Goodson
Hi Theresa, Thank you for the email, the LOGO.jpg is not uploaded that is why it is not showing. I do have an issue on IE though at the moment, the text string: Header2 and the text below is not showing within the confines of the grey background image. How can I make sure that this shows in the

Re: [css-d] Site check please

2009-11-08 Thread Ed Goodson
- Original Message - From: Theresa Mesa trixiesirishe...@gmail.com To: Norman Fournier nor...@normanfournier.com Cc: CSS Discuss css-d@lists.css-discuss.org Sent: Saturday, November 07, 2009 8:20 PM Subject: Re: [css-d] Site check please Well, according to your source code,

Re: [css-d] Site check please

2009-11-08 Thread Theresa Mesa
That's why Safari is giving you the missing image icon. The image your code is calling is missing, because it's not on the server. ;-) Which version of IE are you having the header issue with? To be honest, my attempts at making stuff work on IE are all hail Mary passes, but I'm learning.

Re: [css-d] Site check please

2009-11-08 Thread David Laakso
Ed Goodson wrote: http://www.copywritecolombia.com/test.html I do have an issue on IE though at the moment, the text string: Header2 and the text below is not showing within the confines of the grey background image. How can I make sure that this shows in the

[css-d] The holy grail

2009-11-08 Thread Colin (Sandy) Pittendrigh
The holy grail is that place we'll all be to (soon, I think) when we can finally stop worrying, thinking about and dealing with IEsicks. -- /* Colin (Sandy) Pittendrigh --oO0 */ __ css-discuss [cs...@lists.css-discuss.org]

[css-d] help with overriding a list style

2009-11-08 Thread Kathleen R Dery
Hello, I need help: I have this css in an external file: .box_inner ul li { list-style-image: url(images/bullet-teal.gif); margin-left: 3em; } I only want this to apply to one list that has external links. How can I override this css for my non-link lists? The lists are all

Re: [css-d] help with overriding a list style

2009-11-08 Thread russ
You could remove bullets on lists with a general rule: li { list-style-type: none; } Then you could assign a bullet class to the list you want: .bullet li { list-style-image: url(images/bullet-teal.gif); } Russ - Original Message - From: Kathleen R Dery krd...@gmail.com To: