Re: [css-d] Links in Safari aren't clickable
I get the same issues in Mac Safari & Firefox, both the same links: Herbology & Kitchen, but both show up as sections when I type them in as a folder Issue: Your code when source is viewed is showing... http://www.blogickal.com/gods_goddesses/"; title="">Gods & Goddesses Herbology Kitchen http://www.blogickal.com/library/"; title="">Library Solution: Check the links in the blog (presumed MovableType) and make sure they're properly "linked" for the template. Jack Keller | cell7.org On Nov 2, 2005, at 8:30 PM, mary wrote: > I've had two other Mac users test for me and neither of them had any > problems - they were able to click the links. Unfortunately, the blog > owner is in another state, so there is no way for me to check out her > computer to see how it varies from my other testers. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
[css-d] How to validate quirky stuff
Okay, this is actually separate from my earlier question, and yes I researched the wiki and google for answers but nothing really addresses a solution. I am wanting a vertical and horizontal centered content area for a site I'm working on, this is just roughly laid out right now but you'll see what I mean from the two examples. I followed the methodology from quirksmode.org on obtaining the centered layout, but my problem is this, with doctype it will validate but not display correctly, without doctype it displays excellent, but will not obviously validate. http://www.cell7.org/leadership/dev/template.htm - with doctype/tentatively validates (haven't added meta data) http://www.cell7.org/leadership/dev/test.htm - without doctype/no validation I'm sure someone knows how to get this type of layout to both work, and validate, both files are using the same css file http://www.cell7.org/leadership/dev/site.css Jack __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
[css-d] positioning : classes vs id's
This is a question that I am curious about, I normally layout everything with #idname but I've noticed here and there different tutorials using div.classname instead for positioning. Both seem to work, the class system seems to work easier, can anyone explain the positives and/or negatives to either or both approaches? Jack Keller | cell7.org __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] consistent container height no matter the amount of content
I've seen the css attribute min-height work in some cases but then it just dies in IE and won't work correctly. A functioning, albeit goofy, workaround would be to just use a shim, but I'm sure somebody here knows of a more graceful solution. Jack Keller | cell7.org On Jun 8, 2005, at 8:00 PM, Bruce Gilbert wrote: Hello, I am working on setting up a personal web site and I am testing on a Mac in Mozilla. I have only tested briefly in other browsers, but one problem I am noticing is the height of my container div only extends to the amount of the content and not a fixed height. I want each page to be the same height. I tried using height:100% on both the body and container elements, but that doesn't work. How can I accomplish this? I know JS is sometimes used to keep columns all the same height and didn't know if that was also the only solution for this problem or not. Anyway, to see what I am referring to go to: http://www.inspired-evolution.com/Resume.php versus http://www.inspired-evolution.com/Contact.php I would want both these pages to have the exact same height... CSS is at "http://www.inspired-evolution.com/Gilbert.css the divs in question are : #wrapper_outer{/*wraps page*/ width:750px; height:100%; font-size:1em; border-right: 5px solid #036; border-left: 5px solid #036; min-height:100%; } and #wrapper_inner{/*creates wrapper div around textual content and footer*/ height:100%; background-color:#036; } TIA for any assistance with this! -- ::Bruce:: __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
[css-d] Fixed Divs in IE?
I like the effect of having fixed elements on a page in certain cases. A guy I chat with from time to time is working on a redesign for one of his sites and I suggested doing his navigation and header fixed and let the content only scroll. Here's what he came up with, works in Firefox but no good in IE, I then took a similar model and tried a mess of workarounds from tutorials I found, all with the same results, none. page: http://www.blackcampuz.com/testlook/ css: http://www.blackcampuz.com/testlook/styles/style.css This isn't urgent, but it somewhat vexed me that I couldn't get any of the stuff in the tutorials to work properly. Jack Keller __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] Line space
Arnie Shafer wrote: Some members have frowned on my use of the tag to create the desirable line spaces Sometimes one, sometimes two, or possibly three line spaces are desired. Simple question: What is a better way to accomplish this other than, ,br /> Thanks for your input. I would maybe make a special class for margins html: text and stuff that you want an extra space after next paragraph of text with no special spacing maybe? alternative could be to apply that to one but I'd probably just do the paragraph tags. css: .bottom3orwhatever { margin-bottom: 30px; /*adjust according to the spacing desired of course */ } Arnie Shafer Please visit the Shafer Family Web site at: http://abshafer.com __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] PHP and CSS
Sarah Atkinson wrote: Out of curiosity can you use PHP with in a CSS. Like maybe have a list of background images located in a DB and PHP select and insert on into the CSS. and possibly even have the user define things like font size, font color, background color, and typeface. Sarah You can actually do a style.php and format it like a document specific stylesheet but I think you then have trouble validating a stylesheet, well maybe not it would be included in a page like and it would just look like this in the page: <!-- .classofsomesorts {font-face: Geneva; etc} --> And when the php file is rendered the databased info and dynamic stuff is of course not viewable to sneaky source readers. Jack Keller | cell7.org __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] lack of padding when using a classname in a ASP variable
Gerrit Bakker wrote: Working with HTML+CSS+ASP, in ASP file using a class name as a variable see beneed this line: valign=top> the <%midyellow %> ia a ASP variable. In my CSS file there are two classes on witch could be into the ASP variable: Okay, starting off with the classes you've provided below, neither of them say <% midyellow %>, if this variable is defined in your asp file please let us know what it comes out to be, from the looks it's a color variable which wouldn't really be a class. Now, onto the padding issue, do you have anything in between the td tags? if it's like it should work out fine, but the class should call the css element unless the asp element references a css element like center_page or center_page_full td.center_page { width:346px; background-color:#FFDA03; height:100%; padding-left:20px; padding-right:10px; padding-top:10px; } td.center_page_full { width:526px; background-color:#FFDA03; height:100%; padding-left:20px; padding-right:10px; padding-top:10px; } __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] Site Check [pc users]
On May 10, 2005, at 12:37 AM, David Laakso wrote: XP_SP2 IE6.0/FF1.03/Opera8 IE has a little problem when zooming the fonts when you set the font-size on the body in em's. Try changing 1em to 100.01%. I'll give that a whirl Opera8 is doing a number on the green images. A few errors on the CSS file. Seems like a complex method of achieving a relatively simple layout. Or is it? Thanks for the notes, yes, in looking back on this (initially did the layout work a month ago) I could have done this much smoother and the CSS errors were IE hacks I believe when I ran it through the css validation site. I think I'm going to somewhat retool the layout divs to see if I can't eliminate at least a third of them. http://www.dlaakso.com/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
[css-d] Site Check [pc users]
I have been working on somewhat a faux company, the content is a work in progress so just be amused if you feel like it, but I am concerned on the nav and where I could clean up my css a tad possibly. site: www.mediaextra.net css's: www.mediaextra.net/styles/ (multiple css due to body bg/headline colors, will probably turn this into a dynamic php driven css file once everything goes live) Jack Keller | cell7.org __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] Site Check: especially Macs please
On May 9, 2005, at 3:30 PM, Justin wrote: Hello List, I am working on a site that combines a lot of new stuff for me, especially the drop-menus (thanks Eric), a image-replacement method for the logo, and an almost* completely table-free layout. I am working on a PC and at the moment don't have a Mac to test the layout. I haven't used any box-model hacks, so I'm interested to see how it looks on a Mac. Looks fine in Mac IE 5.2, Safari 1.3 & Firefox 1.0.3 even the sub-navigation on all, my only thought (and I could be off base and maybe you want it slightly more left of the center) in your CSS #wrapper {width: 690px; padding: 0;} by adding a margin: 0 auto; you should be able to have it perfectly centered, but then again maybe you were going for a slight bit more to the left approach, if so, you have accomplished. Jack Keller | cell7.org __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/