[css-d] ATTN: People with Nifty Corners experience

2007-01-31 Thread Jonathan Carter
So I've decided to implement Nifty Corners into a project and it's working great. The only problem I keep running into is that sometimes when I apply the edges to an element, the corners aren't positioned in the correct place. For example: http://www.staticsolution.com/screenshot.gif You can

Re: [css-d] ATTN: People with Nifty Corners experience

2007-01-31 Thread Jonathan Carter
necessary. From: Jeroen [EMAIL PROTECTED] Sent: Wednesday, January 31, 2007 2:38 PM To: [EMAIL PROTECTED] Subject: Re: [css-d] ATTN: People with Nifty Corners experience On 1/31/07, Jonathan Carter wrote: So I've decided

[css-d] Rounded corners

2007-01-30 Thread Jonathan Carter
I have to implement rounded corners throughout an entire site which includes many different size containers and elements. I'm looking to find the best/cleanest/easiest solution that I can easily implement site wide. I've looked at numerous examples/solutions and am confused as to which one is

[css-d] Horizontal list issue

2006-06-01 Thread Jonathan Carter
I'm trying to create a horizontal navigation menu where each list item contains an image and descriptive text. I want the image to be centered within the item and also be block so that the text is below it. I haven't been able to get this to work perfectly between IE/FF and I haven't found a

[css-d] Columns height issue

2006-05-10 Thread Jonathan Carter
I've got a simple fixed-width two-column layout, with a footer. I need to the two columns to span the height of the viewport regardless of their content, but also grow when their contents exceed the viewport's height. I also need the footer to always be at the bottom of the page regardless of

[css-d] File input question

2006-04-05 Thread Jonathan Carter
I recently added a file input element to a test page and wanted to resize the width of the textbox. In IE this works easily, but Firefox doesn't seem to allow any styling at all. Is this a known issue or am I missing something? Any help would be appreciated. Thanks, Jonathan

[css-d] Horizontally centered menu list

2006-02-27 Thread Jonathan Carter
://epiphanize.com/Test.htm Any help and suggestions would be appreciated. - Jonathan Carter __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7

Re: [css-d] Horizontally centered menu list

2006-02-27 Thread Jonathan Carter
Jochem Maas wrote: Jonathan Carter wrote: I want to create a menu list that will expand/shrink with the browser and also be horizontally centered. I setup a test case with a simple ul with a long list of items, and put together the CSS to style it the way I want. It's pretty close

Re: [css-d] Can div be wider than viewport without horizontal scoll bar?

2006-02-06 Thread Jonathan Carter
James Eaton wrote: Is there a way to have a div wider than the viewport without causing the browser to display a horizontal scroll bar? __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

[css-d] Layout question

2006-02-02 Thread Jonathan Carter
I was trying to do a simple test layout with: 1) A fixed height header 2) An absolutely position body that will fill all remaining content. It works perfectly in FF but the absolutely positioned body doesn't fill the area as desired. Could anyone tell me what I'm doing wrong or tell me a

[css-d] CSS list question

2006-01-29 Thread Jonathan Carter
I've got a simple 2 level CSS navigation menu that is giving me an odd issue, that is probably my fault. When you hover over one of the items in the top level, it displays the second level but pushes the adjacent top level items to the right. If anyone could point out what's being done wrong

[css-d] Having a width and min-width in IE

2006-01-18 Thread Jonathan Carter
I've seen people use the IE min-width hack, but I'm wondering if it's possible to have a percentage width, and a static min-width: #Container { width: 70%; min-width: 600px; } That way when the user's browser grows the container will grow, but when the browser shortens, the container

Re: [css-d] Browser Incompatibility

2006-01-04 Thread Jonathan Carter
: 5px 5px 0px 10px; text-decoration: none; color: #000; } I'd imagine you'd want the anchor to encompass the entire list item, and since it's a block element it will consume all available width by default. - Jonathan Carter CSS Vic wrote: I knew there were differences between

[css-d] Font-size keywords

2005-12-23 Thread Jonathan Carter
would or wouldn't use these over ems or any other unit. Thanks. - Jonathan Carter __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported

[css-d] Line-height question

2005-12-11 Thread Jonathan Carter
seems to work pretty well)? Any help is appreciated, thanks. - Jonathan Carter __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported

Re: [css-d] Line-height question

2005-12-11 Thread Jonathan Carter
David Dorward wrote: On 11/12/05, Jonathan Carter [EMAIL PROTECTED] wrote: 1) When you set a line-height on an element, is every line of text contained inside it vertically centered within a box whose height is equal to the container's line-height? Inline content is vertically aligned

[css-d] Layout question

2005-12-09 Thread Jonathan Carter
positioning, please let me know, it just was the best way I could think of to achieve the fixed height header, fixed width left, and fluid width content. - Jonathan Carter __ css-discuss [EMAIL PROTECTED] http://www.css

[css-d] Layout question

2005-12-08 Thread Jonathan Carter
help. - Jonathan Carter __ 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] Vertically scrollable and fluid container

2005-12-08 Thread Jonathan Carter
let me know if there's a better approach. Any help would be appreciated. Here is my CSS: div#Content { bottom: 0; left: 240px; overflow: auto; position: absolute; right: 0; top: 10px; } - Jonathan Carter

[css-d] Fixed positioning workaround

2005-12-07 Thread Jonathan Carter
Any help with making this work in IE would be greatly appreciated. -- Jonathan Carter __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com

[css-d] Semantic table question

2005-12-05 Thread Jonathan Carter
a row has multiple labels like the above image does? Any suggestion are appreciated, thanks a lot. - Jonathan Carter __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http

[css-d] footerStickyAlt implementation problem

2005-12-03 Thread Jonathan Carter
sure I'm doing something wrong here, any help would be appreciated. The test page I was trying it out can be found here: http://www.epiphanize.com/Test.htm - Jonathan Carter __ css-discuss [EMAIL PROTECTED] http://www.css

[css-d] Expanding container question

2005-12-01 Thread Jonathan Carter
What is the best solution for implementing a div container that will be at least 100% of the page's viewport height regardless of how much contents it contains, but will also expand as needed. Any articles or comments would be appreciated. Thanks a lot.

Re: [css-d] validation question

2005-11-20 Thread Jonathan Carter
Patrick Roane wrote: Hey folks, I ran my site through the validator: http://validator.w3.org/check?verbose=1uri=http%3A//www.cpcconstruction.net/1/homes.html%23nogo I don't understand why it says that the ul id=... does not belong in the context ... I thought it was fine to include unordered

[css-d] List question

2005-11-11 Thread Jonathan Carter
I have an unordered list where each list item has it's width set to 50% and is floated left to acheive a two-column effect, which works good. There is also a second level list inside each of the main list items that I want to display in a typical list fashion. The problem I'm having is when a

Re: [css-d] creating fluid layout with footer

2005-11-09 Thread Jonathan Carter
Shelley Simpson wrote: Hi all I am creating a layout with a header, two columns (a side menu and a content area) and a footer. The side menu is longer than the content on some pages, and on other pages the content is longer than the side menu. The footer needs to clear both these columns.

Re: [css-d] Is a browser compatibility in .asp question okay? :)

2005-11-08 Thread Jonathan Carter
Catherine Post wrote: Hi Everyone, I'm just learning CSS but have an .asp question. I'm kind of hoping that someone here may know the answer, and be willing to possibly just send me your thoughts or advice offlist. I apologize if this is not okay to ask. :) Anyway, here is my question, and

[css-d] Rounded edges

2005-11-08 Thread Jonathan Carter
Does anyone have a good article on the best/easiest way to implement rounded edges on a div? I'm aware of multiple ways of how to do it, but I'd like to see some other viewpoints on it. -- Jonathan Carter Writer/Developer/Music Fanatic * Lambgoat (http://www.lambgoat.com) * Skratch Magazine

Re: [css-d] SPAM: Re: List item hover issue

2005-11-07 Thread Jonathan Carter
Gunlaug Sørtun wrote: Jonathan Carter wrote: http://www.epiphanize.com/ Those buggy browsers ;-) Change width on 'div#Header ul#Navigation li' from percent to 100px, and it will work in Firefox too. BTW: you use XML syntax in there. That requires an XML declaration, according to HTML

[css-d] Two questions

2005-11-05 Thread Jonathan Carter
I'm trying to add a drop shadow effect to the body of my site and as simple as it should be I can't seem to get it to work. I've got the outer div with a background color set and then an inner div that is positioned a few pixels over, but it's not working for me. Any help here would be

[css-d] List item hover issue

2005-11-04 Thread Jonathan Carter
I'm designing a test page right now and have run into an odd issue with my top navigation. It's implemented as an unordered list and works fine until you mouse over one of the list items in which each item seems to convert into block elements and ruin the layout. I'm not very strong in CSS