Re: [css-d] H tags and style

2010-11-22 Thread Jack Timmons
topic of CSS does, in which case you can say "It doesn't matter what tags we use, CSS will let us make it look the way we want to. So let's take the sane/questionable/crazy method of ..." and apply your own ending as desired. -- Jack Timmons @_Codeacula Trollfree: 8503290326 __

Re: [css-d] Quirks compendium?

2010-11-07 Thread Jack Timmons
//www.quirksmode.org/compatibility.html The best document I've found regarding hasLayout: http://www.satzansatz.de/cssd/onhavinglayout.html I'm also sure if you search the archives, you'll find emails from a variety of members whose signatures link to their personal CSS sites. If I ne

Re: [css-d] Hover Effect on an Image Map

2010-10-15 Thread Jack Timmons
dards, and at the end provides a fallback example. If you don't have experience or the capability, there's always the fallback to Javascript. [1] - http://www.alistapart.com/articles/flashsatay -- Jack Timmons @_Codeacula ___

Re: [css-d] ADMIN: Off topic, web hosting help

2010-08-26 Thread Jack Timmons
#x27;ll be glad to help. [1] - http://css-discuss.incutio.com/wiki/Off_Topic -- Jack Timmons @_Codeacula __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://cs

Re: [css-d] Amrinder Sandhu has invited you to Dropbox

2010-04-17 Thread Jack Timmons
On Sat, Apr 17, 2010 at 7:50 AM, Dropbox wrote: > We're excited to let you know that Amrinder Sandhu has invited you to Dropbox! Clicked the link to block further Dropbox invites. I'm sure List Mom will handle the rest if needed. -- -Jack Timmons http://www.trotlc.com Twitte

Re: [css-d] highlighting an input button

2010-04-10 Thread Jack Timmons
On Sat, Apr 10, 2010 at 1:40 AM, Philippe Wittenbergh wrote: > That would probably be :focus. More than probably. Forgive the oversight. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-discuss

Re: [css-d] highlighting an input button

2010-04-09 Thread Jack Timmons
submit button is an > image. I can change the state with a mouse, but this needs to be a > tab. Is this even possible with css? > > Dave Solko > Pixel Alchemy > d...@pixelalchemy.com > 513.300.2165 :active should do it for you. -- -Jack Timmons

Re: [css-d] In HTML CSS vs. Separate style sheet CSS

2010-03-15 Thread Jack Timmons
same) 100%px isn't valid, unless my programming mind is tying to make too much sense. Stylesheets should never overwrite a style defined in the actual tag (Unless it's on the user's side). http://www.w3.org/TR/CSS2/cascade.html#sp

Re: [css-d] Having problems with ww3 validator

2010-03-02 Thread Jack Timmons
x27;d start with user agent, maybe. In either case, it seems like something is cause your webserver to choke on itself. Also, this sort of question is great to ask over at http://webdesign-l.com/. Granted, many of us frequent said list, also, but to keep things on topic we try to steer

Re: [css-d] FireFox/CSS Question

2009-11-19 Thread Jack Timmons
gners here use the windows default, while the owners use 120, so it can cause problems in the layout if not paid attention to or taken care of properly before hand. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-di

Re: [css-d] FireFox/CSS Question

2009-11-18 Thread Jack Timmons
On Wed, Nov 18, 2009 at 8:36 AM, tedd wrote: > At 8:03 AM -0600 11/18/09, Jack Timmons wrote: > Jack: > > Really!!??!! Boy this is a real mystery (at least to me). > > This is what I see: > > http://php1.net/a-menus/simple-drop-down/drop-down.gif > > If I choos

Re: [css-d] FireFox/CSS Question

2009-11-18 Thread Jack Timmons
more than likely not catching some detail, I'd appreciate it. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/

Re: [css-d] FireFox/CSS Question

2009-11-16 Thread Jack Timmons
margin:0; padding:0; -moz-box-sizing: border-box !important; <--- This one right here. } -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-discuss [cs...@lists.css-discuss.org] ht

Re: [css-d] CSS background image hover problem

2009-11-16 Thread Jack Timmons
ground: url(../images/backToTop.png) no-repeat left bottom; } #footer #backToTop:hover { background: url(../images/backToTop.png) no-repeat left top; } #footer #backToTop a{ visibility: hidden; } That should accomplish what you're seeking. -- -Jack Timmons http://www.trotlc.

Re: [css-d] CSS background image hover problem

2009-11-16 Thread Jack Timmons
On Mon, Nov 16, 2009 at 8:00 AM, Jack Timmons wrote: > } > #footer #backToTop a{ >        visibility: hidden; > } > > That should accomplish what you're seeking. > > -- > -Jack Timmons > http://www.trotlc.com > Twitter: @codeacula > As a side note:

Re: [css-d] OT - Form in IE6

2009-11-15 Thread Jack Timmons
PHP only reacts differently based on the browser if you put code in the PHP to sniff the browser and react differently. It is more than likely an issue with your Javascript. Being that I'm rebuilding my desktop, I can't offer much more advice, but if you need help, you can e-mail me direc

Re: [css-d] Font Color Problem

2009-11-13 Thread Jack Timmons
s" in the nav. > TIA, > V >> >> -- >> -Jack Timmons >> http://www.trotlc.com >> Twitter: @codeacula That is because you're missing the "a" to specify for the anchor tag. Otherwise, the #menu a declaration overrides any color set in the li

Re: [css-d] Font Color Problem

2009-11-13 Thread Jack Timmons
On Fri, Nov 13, 2009 at 9:52 AM, Victor Subervi wrote: > But if I do that, I'll change more than just the fly-out menus! I don't want > to change the regular menu. Please advise. > V Being more specific with the CSS selector will allow you to do so: #menu ul ul li ul li a{col

Re: [css-d] Font Color Problem

2009-11-13 Thread Jack Timmons
idth: 100%; > } > > I want to change the font color of the fly-out menu. You can see it here: > http://angrynates.com/nrelectric.com/index.py > How do? > TIA, > Victor Change: #menu a { color: #000; text-decoration: none; } The color should be whatever you're looking fo

Re: [css-d] Background Color

2009-11-13 Thread Jack Timmons
d making sure their backgrounds aren't set, either. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -

Re: [css-d] Chrome browser

2009-06-16 Thread Jack Timmons
On Tue, Jun 16, 2009 at 4:13 PM, wrote: > Am I the only Chrome user who finds no Help-facility? > > Bruce > Help link in browser takes you here. http://www.google.com/support/chrome/?hl=en -- -Jack Timmons http://www.trotlc.com Twitter

[css-d] Fwd: re: Styling submit buttons with images

2009-04-22 Thread Jack Timmons
-- Forwarded message -- From: Jack Timmons Date: Wed, Apr 22, 2009 at 9:41 AM Subject: Re: [css-d] re: Styling submit buttons with images To: Tom Dell'Aringa On Wed, Apr 22, 2009 at 9:35 AM, Tom Dell'Aringa wrote: > On Wed, Apr 22, 2009 at 9:32 AM, Jack T

Re: [css-d] Styling submit buttons with images

2009-04-22 Thread Jack Timmons
On Wed, Apr 22, 2009 at 9:32 AM, Jack Timmons wrote: > On Wed, Apr 22, 2009 at 9:17 AM, Tom Dell'Aringa wrote: > > What "less capable browsers" can't handle an input type of image? > Because I can't think of one off the top of my head. > > -- > -

Re: [css-d] Styling submit buttons with images

2009-04-22 Thread Jack Timmons
nal >> A HREF? > > I don't really care what technique is used, so long as we can do the > rollover and > there is some kind of degradation to less capable browsers, if possible. > > Tom What "less capable browsers" can't handle an input type of image?

Re: [css-d] Vertically centering text in a paragraph

2009-04-13 Thread Jack Timmons
y be the more semantic way of doing it. By wrapping the text inside a span, you should be able to open yourself up to using the vertical-align property of CSS. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-dis

Re: [css-d] Background Images clickable links

2009-04-06 Thread Jack Timmons
chor. Position block to anchor. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incuti

Re: [css-d] [OT] CSS Problem with tags on IE 6\7

2009-04-03 Thread Jack Timmons
Live example I've used: I would offer advice on the CSS related questions, but I see plenty already has been. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-discuss [cs...@lists.css-discuss.org] htt

Re: [css-d] counter-reset and counters() in Opera and Konqueror

2009-03-30 Thread Jack Timmons
On Mon, Mar 30, 2009 at 11:13 AM, RommeDeSerieux wrote: > >first list, first item >first list, second item > > >second list, first item >second list, first item > > Maybe this is e-mail only, but try closing tags on your list elemen

Re: [css-d] 1px jog help

2009-03-11 Thread Jack Timmons
hts? > > Validate. http://jigsaw.w3.org/css-validator/validator?profile=css21&warning=0&uri=http%3A%2F%2Fwww.flexcomp.ca.php5-10.websitetestlink.com%2F -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula

Re: [css-d] User Style Sheets ?

2009-03-09 Thread Jack Timmons
s without accessibility issues won't use a "custom" stylesheet. -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d Li

Re: [css-d] Changing the color of a link makes another element vanish

2009-03-06 Thread Jack Timmons
o actually work. Move your semi-colons inside the braces on the HTML pages. Also, this is something that could be caught in the CSS validator. -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ css-discuss [cs...@l

Re: [css-d] CSS3

2009-03-03 Thread Jack Timmons
On Tue, Mar 3, 2009 at 1:43 PM, Jack Timmons wrote: > > > On Tue, Mar 3, 2009 at 1:34 PM, Atkinson, Sarah < > sarah.atkin...@cookmedical.com> wrote: > >> Does anyone know when Browsers will start supporting CSS3? >> >> > Also: http://www.css3.info

Re: [css-d] CSS3

2009-03-03 Thread Jack Timmons
using or not." Chart gratis from PPK http://www.quirksmode.org/css/contents.html -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailma

Re: [css-d] Refresh image in header...

2009-03-02 Thread Jack Timmons
On Mon, Mar 2, 2009 at 4:54 PM, Michael Beaudoin wrote: > Is it possible, through CSS, to have the image in a header change when > the user refreshes or re-enters the page? > > Thanks, > Michael > No. There's plenty of server-side alternatives. Check on The List.

Re: [css-d] how to get 3 's on the same line ?

2009-03-02 Thread Jack Timmons
same line" in what context? Viola! http://www.trotlc.com/sandbox/ Of course, I could bind the parent with a width large enough to hold them, but who cares? The picture is more of a statement about what I do all day than your question, and it's copied from my sandbox on the private intrane

Re: [css-d] other alphabets

2009-02-25 Thread Jack Timmons
e effect, and also take a look at the CSS and markup to make sure that's not the issue, we should be able to help. If it isn't a CSS related issue, though, I'm sure everyone will appreciate if the problem is taken off-list (either to direct e-mails or over on &q

Re: [css-d] other alphabets

2009-02-25 Thread Jack Timmons
t; You'll need to be more specific. Are you talking about making the font appear correctly on a webpage, or in the IDE you are using? -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ css-discuss [cs...@lists.css-d

Re: [css-d] IE divs drops and Vertically align text

2009-02-24 Thread Jack Timmons
On Tue, Feb 24, 2009 at 11:51 AM, Jack Timmons wrote: > > > On Tue, Feb 24, 2009 at 11:44 AM, trevor bayliss > wrote: > >> Thanks that works great. How do I align the text next to the arrow gifs >> (at the moment they are not verticallyt centred). Thanks again >&g

Re: [css-d] IE divs drops and Vertically align text

2009-02-24 Thread Jack Timmons
On Tue, Feb 24, 2009 at 11:44 AM, trevor bayliss wrote: > Thanks that works great. How do I align the text next to the arrow gifs (at > the moment they are not verticallyt centred). Thanks again > > Add vertical-align:middle; to your styling for the anchor tags. -- -Jack

Re: [css-d] IE divs drops and Vertically align text

2009-02-24 Thread Jack Timmons
ertically aligned, how can I > do that? Thank you > Seemed to work for me: #main{float:left:width:auto} Correct that in your styling (just remove the width set). -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim ___

Re: [css-d] CSS coded links not displaying quite right

2009-02-24 Thread Jack Timmons
(rough example) Font size = 20px; Parent -> .8em -> 20*.8 -> 16 Link -> .8em -> 16*.8 -> ~12.8 Thus the urging you hear to set font size in html/body, so browsers "get it right" across the board. (Simplified

Re: [css-d] CSS coded links not displaying quite right

2009-02-24 Thread Jack Timmons
ears somewhat smaller. > > Site in development is http://irishsetdances.net/09/ > CSS at http://irishsetdances.net/09/irishset09b.css > > I am presently viewing on a Mac, using Firefox 3 and Safari. > > Any idea as to what I have missed? Thanks, > > Amy P. > 403 on

Re: [css-d] Print version CSS

2009-02-24 Thread Jack Timmons
the user agent determine how it should be printed? After all, it makes it easier on you: all you have to do is remove all the styling from your pages (images, etc. that aren't being used for reference). A fluid width would more than likely suffice. User agents will put their own

Re: [css-d] What is this CSS?

2009-02-19 Thread Jack Timmons
On Thu, Feb 19, 2009 at 5:22 PM, Atkinson, Sarah < sarah.atkin...@cookmedical.com> wrote: > It's facebox not facebook > > Sent from my iPhone > > On Feb 19, 2009, at 6:01 PM, "Jack Timmons" wrote: > > > > On Thu, Feb 19, 2009 at 4:51 PM, Sara

Re: [css-d] What is this CSS?

2009-02-19 Thread Jack Timmons
On Thu, Feb 19, 2009 at 4:58 PM, Jack Timmons wrote: > > On Thu, Feb 19, 2009 at 4:51 PM, Sarah Atkinson < > sarah.atkin...@cookmedical.com> wrote: > >> Found this in one of the css files a co worker sent me with his design >> templete. What is it for? Anyone know?

Re: [css-d] importing text / html using CSS

2009-02-10 Thread Jack Timmons
and if each could call on a single file, I could update all files by > only updating the one external file. Thanks. > Nope. But you can use PHP: -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ css-discuss

Re: [css-d] draggable images - can it be stopped?

2009-01-27 Thread Jack Timmons
n issue > where the images are being dragged instead of 'clicked'. Is there a CSS > attribute (or any other way) to specify that images are not draggable? > > TIA, > Bill > Bill, Nope. All of that has nothing to do with styling itself: I'd be surprised if som

Re: [css-d] IE pushes up my sidebars

2009-01-13 Thread Jack Timmons
ethods of gaining layout are available, height: 0 in a conditional comment being one I sometimes you. You can always view the chart on havingLayout [1] as an example of other methods. -Jack [1] - http://onhavinglayout.fwpf-web

Re: [css-d] best practices

2009-01-12 Thread Jack Timmons
sheets, whereas @import can't. I used @import for a while (it was a phase, just like rolled pants legs and hair bands), but mostly just use link for semantic purposes. -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim _

Re: [css-d] Navigation Sidebar Problem:

2008-12-21 Thread Jack Timmons
ifference in elements off-hand, but the font itself is way too small for even my eyes, and I can see pretty darn well. -- -Jack Timmons http://www.trotlc.com __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mai

Re: [css-d] spry giving me grief

2008-12-17 Thread Jack Timmons
yMenuBarHorizontal.css > > -- > S c o t t T h i g p e n > Illustrative Designer > art: http://www.sthig.com > design: http://www.thigpendesigns.com > Phone: 770.527.3958 > > Off-hand: SpryMenu...ontal.css (line 64) ul.MenuBarHorizontal ul li { clear:both; }

Re: [css-d] Gap between divs in IE

2008-12-01 Thread Jack Timmons
Before troubleshooting your CSS, you should first make sure it's valid: http://jigsaw.w3.org/css-validator/validator?profile=css21&warning=0&uri=http%3A%2F%2Fwww.catalogntime.com%2F You might want to look into that first. There seem to be misplaced braces among other t

Re: [css-d] Hidden content makes div too tall in IE6

2008-11-28 Thread Jack Timmons
ference, being correct-to-standards aside. As always, others more qualified may have a better opinion than I, but that's how I currently do my styling until I'm shown a better, more practical way. Cheers, -Jack -- -Jack Timmons http://www.trotlc.com

Re: [css-d] downloading old browsers to test on

2008-11-26 Thread Jack Timmons
6 and > earlier. > > Thanks much. > > From a newbie, > > Anne Anne, A bit OT, but to answer your question: http://tredosoft.com/Multiple_IE That works best for me. Condition comments work correctly, also, which was a problem with some other versions. -Jack --

Re: [css-d] Ordered and Unordered Lists

2008-11-04 Thread Jack Timmons
reason why not. Others more qualified may have a different opinion, but I believe it matters in the markup: ul if you don't care, and ol if you do. -- -Jack Timmons http://www.trotlc.com __ css-discuss [EMAIL PROTECTED] http://w

Re: [css-d] Sliced Images within a question

2008-10-30 Thread Jack Timmons
reated and pasting it within a or is their a more effective and > better way to place a sliced image within a ? This isn't a topic you need to discuss on the CSS-D list. Try Webdesign-L http://css-discuss.incutio.com/?page=OffTopic -- -Jack Tim

Re: [css-d] Image Not Showing Up in IE

2008-10-21 Thread Jack Timmons
tag). BTW, > the height and width for the image isn't included because it's drawing > from a database of different sized images). > > Can anyone offer a clue as to why the image isn't showing up in IE? > > Thx. > -- Some other smarte

Re: [css-d] Photo Gallery list

2008-09-22 Thread Jack Timmons
r here, adjusting to: .imagelist li{margin: 0 9px 8px 0} Brings the element back up. I leave it up to you to find out how you want to fix it. That's just a quick patch, though. There may be other underlying things that someone

Re: [css-d] Aaargh! Img borders persist

2008-09-19 Thread Jack Timmons
, as always . . . > Kimi > > -- > This email sent by > Kimi Wei > http://thewei.com > 201-475-1854 > > Remove the border here: #wrap a:hover { /* Get rid of this */border-bottom:1px solid #00; } Believe that fixed

Re: [css-d] text-transform both lowercase AND capitalize?

2008-09-19 Thread Jack Timmons
bout: He offered a valid question which, unfortunately for what he wanted, was shot down. To get a bit more off topic, Chang, if you don't know JavaScript well, you can accomplish it using something like this: document.onload = function() { document.getElementById("YouIDNa

Re: [css-d] workaround to inherited opacity

2008-09-18 Thread Jack Timmons
till has an opacity of "1", but that is considered to be full opacity from what is inherited. I hope I made that sound right. -- -Jack Timmons http://www.trotlc.com __ css-discuss [EMAIL PROTECTED] http://www.css-discus

Re: [css-d] css beginner in search of great books and courses

2008-09-18 Thread Jack Timmons
k_management/ http://www.satzansatz.de/cssd/onhavinglayout.html -Jack -- -Jack Timmons http://www.trotlc.com __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.c

Re: [css-d] text-transform both lowercase AND capitalize?

2008-09-17 Thread Jack Timmons
choices are Capitalize, Uppercase, Lowercase, and None. You could have JavaScript perform the act, or PHP if it's parsing the data, but not with CSS. At least, that I've tested. -Jack -- -Jack Timmons http://www.trotlc.com __

[css-d] IE7/6, h3's, and divs

2008-09-10 Thread Jack Timmons
point to the bug, I'd appreciate it. I can easily make my own workaround for it without using hacks of any sort, I just wanted to share it. -- -Jack Timmons http://www.trotlc.com __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] List items in columns

2008-09-10 Thread Jack Timmons
laug.no/tos/moa_35.html> > > > > regards > >Georg > > -- > > http://www.gunlaug.no > > I use a format like that a lot when setting up forms. CPU: 2 x Xeon 5130 label{clear:both;float:left;width:xem}

Re: [css-d] Nested Lists, Rollovers

2008-09-09 Thread Jack Timmons
thing to act as a link. Something like: Outside of that, I'm sure someone far more clever than I might have a solution. -Jack -- -Jack Timmons http://www.trotlc.com __ css-discuss [EMAIL PROTECTED] http://www.css-di

Re: [css-d] Bacground URL not showing

2008-04-19 Thread Jack Timmons
9www.infoforce-services.com> > > It is impossible to rightly govern the world without God and the Bible. > George Washington > > Is it possible that it's because the stylesheet you linked us isn't the one being called on the page? Your link points the to folder

Re: [css-d] Suckerfish navigation Versus Slideshow JS images

2008-04-17 Thread Jack Timmons
someone can help me out on this one. > > Regards, > > -- > Krystian - Sunlust > Freelance on the side: Sunlust Designs - http://sunlust.net > Full time Website Designer at SME System Solutions Ltd > ______

Re: [css-d] Formatting Problem

2008-04-16 Thread Jack Timmons
ion:fixed enough to have noticed, but at least I can save the info in my head. Can't get them all right! -- -Jack Timmons http://www.trotlc.com __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailm

Re: [css-d] Formatting Problem

2008-04-16 Thread Jack Timmons
the culprit. I think that's all the changes I made. The tag was being left empty in Firefox, and therefore throwing in a margin area around nothing, which might be the diagnosis for the blank space. Please let me know if I got what you're looking for. Others, if you have something bette

Re: [css-d] Horizontial Nav wrapping in IE

2008-04-16 Thread Jack Timmons
On Wed, Apr 16, 2008 at 12:01 PM, Wade Smart <[EMAIL PROTECTED]> wrote: > 04162008 1200 GMT-6 > > Oh, Jack, sorry about that. That is my fault. I didnt copy and paste - I > wrote it direct into the email. That brace is a ) and not a } in the code. > > Wade > > >

Re: [css-d] Horizontial Nav wrapping in IE

2008-04-16 Thread Jack Timmons
The culprit might be the fact you have a closing brace instead of paranthesis. Try: background: url("graphics/ButtonBackground.png") no-repeat top left; Instead. Also, there might be more to it (the CSS coding isn't my style, so I feel shaky about it), but the Chinese food in front of my face di

Re: [css-d] Anchor color on an image with border="1"

2008-04-16 Thread Jack Timmons
m the image entirely. I think that would do the trick. Increase px/change unit of measurement as needed. -Jack Timmons __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discus

[css-d] Fwd: checkbox margins

2008-04-16 Thread Jack Timmons
Forwarded, because sometimes I'm a bit daft and didn't add the CSS list, and others might find the chart useful. -Jack -- Forwarded message ------ From: Jack Timmons <[EMAIL PROTECTED]> Date: Wed, Apr 16, 2008 at 9:49 AM Subject: Re: [css-d] checkbox margins To: Daniel

Re: [css-d] checkbox margins

2008-04-16 Thread Jack Timmons
with this: Checkboxes are of type "input" first of all. If your lists have classes, you can try something like: ul.classname input{} But that will go for any input. You can try aiming for atrribute selectors, too, although I believe that

Re: [css-d] CSS background image not showing up

2008-04-15 Thread Jack Timmons
I meant one of two things, in this case the likely candidate being "B". Sometimes I forget to express the full idea when I'm doing a quick site check amongst my own projects. -Jack Timmons On Tue, Apr 15, 2008 at 4:44 PM, Brian Ogden <[EMAIL PROTECTED]> wrote: > This is

Re: [css-d] CSS background image not showing up

2008-04-15 Thread Jack Timmons
Carol, On hand, my browser is unable to find the image, which is telling me two things: A: You haven't uploaded the image B: You are referencing the image incorrectly. I tried going straight to see if I could look in the directory, but it's disabled. -Jack Timmons On Tue, Apr 15, 20

Re: [css-d] Help with the "C" in "CSS"

2008-04-07 Thread Jack Timmons
John, >From my personal experience, I first always recommend others take a look over at HTMLDog (1) and get to know the tutorials going on there. Second thing I always aim for is consistent markup through your pages. If you're building each webpage with a different naming structure, you can't ful

Re: [css-d] Background color on menu

2008-03-26 Thread Jack Timmons
On Wed, Mar 26, 2008 at 3:34 PM, Phoebe Taylor <[EMAIL PROTECTED]> wrote: > I'm trying to build a vertical menu for a church site simply using > borders, changing background and font colors. > This is only my second CSS site. > > my CSS for the menu (so far) is this: > > /*Menu Navigation*/ > > ul

[css-d] Site Check Please

2008-03-18 Thread Jack Timmons
What I'm just hoping for is that the background looks like it's fading from a dark blue to a light blue and back. Thanks for your help. -Jack Timmons __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listin

Re: [css-d] Quickly Removing Formatting from an Element

2008-03-04 Thread Jack Timmons
ke that is erroneous, but because I try to be a good guy, I offered to ask you all, since to my knowledge there was no way. -Jack Timmons On Tue, Mar 4, 2008 at 11:04 AM, Jukka K. Korpela <[EMAIL PROTECTED]> wrote: > > That sounds odd and may cause rather unpredictable results (esp

[css-d] Quickly Removing Formatting from an Element

2008-03-04 Thread Jack Timmons
mit button that removes any of the previous formatting done. I can't think of a method to do so (namely because I use selective formatting and should never need to undo formatting like that). If any of you have an example, line etc I'd appreciate it. Maybe I'll learn

Re: [css-d] newbie

2008-03-01 Thread Jack Timmons
Greetings both. I recommend the tutorials over at HTMLDog.com <http://www.htmldog.com>. Helped me brush up on CSS way back when I was getting into table-less designs. -Jack Timmons On Sat, Mar 1, 2008 at 4:10 PM, Hakan K <[EMAIL PROTECTED]> wrote: > Tam, > > Welcome