Re: [css-d] Strange extra padding issue in all browsers

2009-07-01 Thread JR Heard
That does the trick - thanks very much, Tim! -JR __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.o

[css-d] Strange extra padding issue in all browsers

2009-07-01 Thread JR Heard
Hi all, On every browser and every machine I've tried, there's an extra bit of padding after the last item in the on the right side of http://himom.jrheard.com . I can't for the life of me figure out what it is - poking at it with Firebug indicates that the is correctly sized and positioned, but

Re: [css-d] First element of list hiding for some reason

2009-02-25 Thread JR Heard
On Wed, Feb 25, 2009 at 3:57 PM, Els wrote: > Just one more thought - haven't you accidentally blocked it with adblock or > something? one click sometimes is enough. > > I just tested what happens if I adblock an image, and Firebug then gives > display:none for the element.style. Els: You are a

Re: [css-d] First element of list hiding for some reason

2009-02-25 Thread JR Heard
On Wed, Feb 25, 2009 at 3:41 PM, David Laakso wrote: > Adbrite is first this end On Wed, Feb 25, 2009 at 3:40 PM, Els wrote: > In my FF3 that's what's there, exactly the same as in IE7. > In FF3 on Mac the same, no problems. AdBrite logo is there in all of them. Well, that's comforting, thanks

Re: [css-d] First element of list hiding for some reason

2009-02-25 Thread JR Heard
Eep, sorry about that! http://jrheard.com/orl/index.php/anchor/resources/category/customers_partners/ Thanks, -JR On Wed, Feb 25, 2009 at 3:24 PM, Els wrote: > JR Heard wrote: > >> Anyone have any idea what's going on? Does this show up in your FF3 >> as well? (The

[css-d] First element of list hiding for some reason

2009-02-25 Thread JR Heard
Hi all, The image contained by the first of the under "customers" is having "style='display:none;'" applied to it in FF3, according to Firebug. Doesn't show up like that in the source, can't reproduce this problem in IE7, and I can't find any CSS or JS that would be targeting the display attribu

Re: [css-d] CSS Two Levels Deep

2009-02-05 Thread JR Heard
If it's only two levels, try ul li li { padding-left: 2px; } (also, you'll probably want to include the nested inside of its parent , so don't close that so soon.) Best, -JR On Thu, Feb 5, 2009 at 2:07 PM, Keith Kaiser wrote: > > I have a scenerio as follows; > > >whatever >

Re: [css-d] text align to left and image align to right on the same line

2009-01-23 Thread JR Heard
Hi Unnikrishna, Have you tried using "text-align: left;" on the containing element and "float: right;" on the image? Best, -JR On Thu, Jan 22, 2009 at 9:50 AM, unnikrishna menon damodaran wrote: > > hi all, > > how can i get this done. > > text need to align left and image align to right on the

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

2009-01-11 Thread JR Heard
Hi Matt, On Sun, Jan 11, 2009 at 1:14 PM, Matt Fielding wrote: > .content a:hover { >color: #EODCDC; > } Validating your markup via http://jigsaw.w3.org/css-validator/ shows that the color you've used for your a:hover is invalid - looks like you're using an O instead of a 0, and there aren't

Re: [css-d] Splitting wide columns of text

2009-01-08 Thread JR Heard
Hi Bruce, On Thu, Jan 8, 2009 at 3:06 PM, wrote: > Is it possible, using CSS, to arrange that paragraphs in that middle column > are themselves split into two columns of equal width, when a specified line > length is exceeded? The text in the resulting left-hand one of these two > columns sho

Re: [css-d] How to override CSS hosted elswhere

2008-12-28 Thread JR Heard
On Sun, Dec 28, 2008 at 1:06 PM, Bonnie Bucqueroux wrote: > #feedControl a.gf-branding-clickable { > color: #99; > } The answer's in the source - take a look at the HTML generated by the plugin. The div's got an id of "feed-control", not "feedControl", and I can't find any links with class "

Re: [css-d] Centering images with caption in a column

2008-12-25 Thread JR Heard
On Thu, Dec 25, 2008 at 4:20 PM, wrote: > > The page at http://www.maireadnesbitt.com/CSSexp.html has fixed-width columns > at the left and right (not of the same width) and a column of variable width, > depending on the screen size, in the middle - shown temporarily with a blue > border. In th

Re: [css-d] Specificity Problem

2008-12-24 Thread JR Heard
On Wed, Dec 24, 2008 at 11:44 AM, Dan Gayle wrote: > The full example can be found here: http://dangayle.com/test.html Firebug isn't picking up any of the div.extra-info styles you've defined in the head section. Solve that, and I'd bet you'll solve your problem. (I'd start by validating the CSS.