Re: [css-d] H tags and style

2010-11-22 Thread Jack Timmons
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
. -- Jack Timmons @_Codeacula Trollfree: 8503290326 __ 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

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

2010-10-15 Thread Jack Timmons
. 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 __ css-discuss [cs...@lists.css-discuss.org] http://www.css

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

2010-08-26 Thread Jack Timmons
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://css

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 no-re...@dropbox.com 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

Re: [css-d] highlighting an input button

2010-04-10 Thread Jack Timmons
On Sat, Apr 10, 2010 at 1:40 AM, Philippe Wittenbergh e...@l-c-n.com 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
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 http://www.trotlc.com Twitter: @codeacula

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

2010-03-15 Thread Jack Timmons
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#specificity I would validate your CSS first and go from there. -- -Jack Timmons http

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

2010-03-02 Thread Jack Timmons
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 that way. -- -Jack Timmons http

Re: [css-d] FireFox/CSS Question

2009-11-19 Thread Jack Timmons
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-discuss [cs...@lists.css

Re: [css-d] FireFox/CSS Question

2009-11-18 Thread Jack Timmons
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/FAQ -- http://css-discuss.incutio.com/ List policies -- http

Re: [css-d] FireFox/CSS Question

2009-11-18 Thread Jack Timmons
On Wed, Nov 18, 2009 at 8:36 AM, tedd tedd.sperl...@gmail.com 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 choose CSS - Use Border Box

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 jorac...@gmail.com 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: A quick and dirty fix to making the link

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

2009-11-16 Thread Jack Timmons
{ 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.com Twitter: @codeacula __ css-discuss

Re: [css-d] FireFox/CSS Question

2009-11-16 Thread Jack Timmons
: border-box !important; --- This one right here. } -- -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] OT - Form in IE6

2009-11-15 Thread Jack Timmons
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 directly to keep the discussion off-list. -- -Jack Timmons http

Re: [css-d] Background Color

2009-11-13 Thread Jack Timmons
, 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 -- http://css-discuss.incutio.com/ List policies

Re: [css-d] Font Color Problem

2009-11-13 Thread Jack Timmons
a { color: #000; text-decoration: none; } The color should be whatever you're looking for. To change the color it is when you scroll over, change: #menu a:hover { color: #ff0; background: #000; } I believe that's what you are looking for. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula

Re: [css-d] Font Color Problem

2009-11-13 Thread Jack Timmons
a{color: red} -- -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.incutio.com/ List policies

Re: [css-d] Font Color Problem

2009-11-13 Thread Jack Timmons
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 element. #menu ul ul li ul li a { color: #fff; } -- -Jack Timmons http://www.trotlc.com Twitter

Re: [css-d] OT Chrome browser

2009-06-16 Thread Jack Timmons
On Tue, Jun 16, 2009 at 4:13 PM, bruce.som...@web.de 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: @codeacula

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

2009-04-22 Thread Jack Timmons
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? Because I can't think of one off the top of my head. -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula

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 jorac...@gmail.com wrote: On Wed, Apr 22, 2009 at 9:17 AM, Tom Dell'Aringa pixelm...@gmail.com 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. -- -Jack Timmons http

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

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

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

2009-04-13 Thread Jack Timmons
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-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org

Re: [css-d] Background Images clickable links

2009-04-06 Thread Jack Timmons
, and use spans to hide it. Place background on the anchor. 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

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

2009-04-03 Thread Jack Timmons
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] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ

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 ro...@tesall.ru wrote: ol lifirst list, first item lifirst list, second item /ol ol lisecond list, first item lisecond list, first item /ol Maybe this is e-mail only, but try closing tags on your list elements. -- -Jack

Re: [css-d] 1px jog help

2009-03-11 Thread Jack Timmons
? Validate. http://jigsaw.w3.org/css-validator/validator?profile=css21warning=0uri=http%3A%2F%2Fwww.flexcomp.ca.php5-10.websitetestlink.com%2F -- -Jack Timmons http://www.trotlc.com Twitter: @codeacula __ css-discuss [cs

Re: [css-d] User Style Sheets ?

2009-03-09 Thread Jack Timmons
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 List wiki/FAQ -- http

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

2009-03-06 Thread Jack Timmons
. -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ 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

Re: [css-d] CSS3

2009-03-03 Thread Jack Timmons
/contents.html -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ 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

Re: [css-d] CSS3

2009-03-03 Thread Jack Timmons
On Tue, Mar 3, 2009 at 1:43 PM, Jack Timmons jorac...@gmail.com 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 -- -Jack Timmons http://www.trotlc.com

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

2009-03-02 Thread Jack Timmons
than your question, and it's copied from my sandbox on the private intranet. It's often very, very apt. Of course, this is a very basic, foundation-only solution, more to give you an idea. -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim

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

2009-03-02 Thread Jack Timmons
On Mon, Mar 2, 2009 at 4:54 PM, Michael Beaudoin mich...@ba-doyn.comwrote: 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. -- -Jack Timmons

Re: [css-d] other alphabets

2009-02-25 Thread Jack Timmons
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-discuss.org

Re: [css-d] other alphabets

2009-02-25 Thread Jack Timmons
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 The List). -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim

Re: [css-d] Print version CSS

2009-02-24 Thread Jack Timmons
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 margins in for you. -- -Jack Timmons http

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

2009-02-24 Thread Jack Timmons
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 first link, 404 on second. -- -Jack Timmons http

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

2009-02-24 Thread Jack Timmons
; 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 argument). -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim

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

2009-02-24 Thread Jack Timmons
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 __ css-discuss [cs...@lists.css

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 bayliss_tre...@yahoo.comwrote: 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
On Tue, Feb 24, 2009 at 11:51 AM, Jack Timmons jorac...@gmail.com wrote: On Tue, Feb 24, 2009 at 11:44 AM, trevor bayliss bayliss_tre...@yahoo.com 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

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

2009-02-19 Thread Jack Timmons
On Thu, Feb 19, 2009 at 4:58 PM, Jack Timmons jorac...@gmail.com 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? Is it legal? And what

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 jorac...@gmail.com wrote: On Thu, Feb 19, 2009 at 4:51 PM, Sarah Atkinson sarah.atkin...@cookmedical.com

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: ? include(yourhtml.html); ? -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim

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

2009-01-27 Thread Jack Timmons
-- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ 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

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

2009-01-13 Thread Jack Timmons
sometimes you. You can always view the chart on havingLayout [1] as an example of other methods. -Jack [1] - http://onhavinglayout.fwpf-webdesign.de/hack_management/ -- -Jack Timmons http://www.trotlc.com Twitter: @jorachim __ css

Re: [css-d] best practices

2009-01-12 Thread Jack Timmons
(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 __ css-discuss [cs...@lists.css-discuss.org] http://www.css

Re: [css-d] Navigation Sidebar Problem:

2008-12-21 Thread Jack Timmons
see pretty darn well. -- -Jack Timmons http://www.trotlc.com __ 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

Re: [css-d] spry giving me grief

2008-12-17 Thread Jack Timmons
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; } Seemed to work...but I'm currently busy and couldn't test in more than FF. -- -Jack Timmons http

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

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

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

2008-11-28 Thread Jack Timmons
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 __ css-discuss [EMAIL PROTECTED] http://www.css

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

2008-11-26 Thread Jack Timmons
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 -- -Jack Timmons http://www.trotlc.com

Re: [css-d] Ordered and Unordered Lists

2008-11-04 Thread Jack Timmons
: ul if you don't care, and ol if you do. -- -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.com/ List policies

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

2008-10-30 Thread Jack Timmons
it within a div or is their a more effective and better way to place a sliced image within a div ? 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 Timmons http://www.trotlc.com

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

2008-10-21 Thread Jack Timmons
Thierry's answer of adding position: relative fixed it here. -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

Re: [css-d] Photo Gallery list

2008-09-22 Thread Jack Timmons
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 on the list will bring up. -Jack -- -Jack Timmons http://www.trotlc.com __ css

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

2008-09-19 Thread Jack Timmons
JavaScript well, you can accomplish it using something like this: document.onload = function() { document.getElementById(YouIDNameHere).toLowerCase(); } And then rely on the text-transform: capitalize to make it look decent. -Jack -- -Jack Timmons http://www.trotlc.com

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

2008-09-18 Thread Jack Timmons
-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.com/ List policies -- http://css-discuss.org/policies.html

Re: [css-d] workaround to inherited opacity

2008-09-18 Thread Jack Timmons
, this effect will fail in IE6, although the opacity would fail in the first place there, also. In short, it's behaving as intended (as far as I know). Every child element still 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

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

2008-09-17 Thread Jack Timmons
, 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-discuss [EMAIL PROTECTED] http

Re: [css-d] List items in columns

2008-09-10 Thread Jack Timmons
following elements down. I don't remember if I use clear:both or not, because I've been awake all of 15 minutes. I hope that helps, and that I haven't replied to a fixed issue. -- -Jack Timmons http://www.trotlc.com __ css-discuss

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

2008-09-10 Thread Jack Timmons
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-discuss.org/mailman/listinfo/css-d List

Re: [css-d] Bacground URL not showing

2008-04-19 Thread Jack Timmons
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 new, while the one linked in the page points to css. -Jack -- -Jack Timmons http://www.trotlc.com

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

2008-04-17 Thread Jack Timmons
Full time Website Designer at SME System Solutions Ltd __ I think z-index: 1 on myGallery and z-index 2 on the UL will fix it. -- -Jack Timmons http://www.trotlc.com

Re: [css-d] checkbox margins

2008-04-16 Thread Jack Timmons
: ul.classname input{} But that will go for any input. You can try aiming for atrribute selectors, too, although I believe that doesn't work in IE6 or : input[type=checkbox] Anyone correct me if I'm off here. -Jack Timmons __ css

[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 Kessler [EMAIL

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

2008-04-16 Thread Jack Timmons
of measurement as needed. -Jack Timmons __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html

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

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 Jack Timmons wrote: The culprit might

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 not true the image does exist

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

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#menu {

[css-d] Site Check Please

2008-03-18 Thread Jack Timmons
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/listinfo/css-d List wiki/FAQ -- http

[css-d] Quickly Removing Formatting from an Element

2008-03-04 Thread Jack Timmons
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 something new! -Jack Timmons

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

2008-03-04 Thread Jack Timmons
, 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 (especilly if you actually have border, not borders

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 to this listing group