Re: [css-d] Rounded Corners -- Simplest Way

2008-07-10 Thread Richard Grevers
On 7/8/08, Sohail Aboobaker [EMAIL PROTECTED] wrote: Hi, What is the simplest way to create rounded corners using CSS. I saw a technique using 3 extra div tags for three corner images (left-bottom, right-bottom, left top) which seemed cumbersome and the posting was old. Are there any

Re: [css-d] EM based layout issue between Firefox and Safari on Mac

2008-07-10 Thread Jason Campbell
Alan, Thank you for your concern, I would point you to this link as a single example of where I am coming from. http://www.smashingmagazine.com/2007/04/14/designing-with-grid-based-approach/ Cheers, J. On Jul 10, 2008, at 12:38 AM, Alan Gresley wrote: Jason Campbell wrote: Of course, if

[css-d] Reference docs for Internet Explorer Mobile?

2008-07-10 Thread Darren Brierton
Hi, I'm working on slowly making an iPhone web application into a more generic cross-browser mobile web application. At the moment I am trying to get it to work and look nice on Internet Explorer Mobile Edition. I intend to initially target Windows Mobile 6.x, with a view to adding support

Re: [css-d] Width problems with IE7 FF (Content wider in FF)

2008-07-10 Thread Karl Bedingfield
Hi there, Many thanks for for your kind help. It was good to see what you removed and what was added :) To me, the initial typography is too big. But as you say, it's a personal thing. You have been very helpful. Thank you Kind regards Karl /After Philippe/, and with correction of the

Re: [css-d] Positioning PHP buttons

2008-07-10 Thread David Laakso
Hayden's Harness Attachment wrote: http://www.choroideremia.org/new/crf_header.php With Firefox 3.0. You get a page that I would like to see in every browser. If you downarrow twice everything moves over and I get my Font switcher buttons at the very top left of the screen. I am trying to

Re: [css-d] EM based layout issue between Firefox and Safari on Mac

2008-07-10 Thread Alan Gresley
Jason Campbell wrote: Alan, Thank you for your concern, I would point you to this link as a single example of where I am coming from. http://www.smashingmagazine.com/2007/04/14/designing-with-grid-based-approach/ Cheers, J. And bumping up the text size by 2 on any of those

[css-d] :: Highlight Dropdown Menu ::

2008-07-10 Thread Amrinder
Hi Everybody, I am having fun with pure CSS dropdowns since morning. I have already used dropdowns by tedd Sperling (thanks tedd) and now trying myself on Eric Meyer style. Everything is going good and I have successfully created dropdowns. Now there is one thing left which I want to

Re: [css-d] Link attribute syntax

2008-07-10 Thread Matijs
h3.titre a { color: #eef; } should do it... On Wed, Jul 9, 2008 at 6:20 PM, Colin Mcgarry [EMAIL PROTECTED] wrote: I'm sure my problem is ridiculously simple but it's driving me mad. Firefox tells me my link is div#contenuliste-articleul .somm-titrelih3.titrea What is the syntax for

Re: [css-d] image background question

2008-07-10 Thread Matijs
On Wed, Jul 9, 2008 at 10:47 PM, Kelly Moore [EMAIL PROTECTED] wrote: trying to figure out how to use a small image (such as a fat arrow) as a background. want to be able to re use the arrow and place different numbers over it. I've tried the following, but the arrow does not display: h3

[css-d] Opera sees content and draws a scrollbar, others ok

2008-07-10 Thread Rick Lecoat
Hi. I've got a site with a fixed (em-based) height (I know, but the client insisted). It makes use of overflow: auto to cope with long passages of text. On some of my text links I've included supplemental information that becomes visible only on :focus (the mouse users generally get

[css-d] li:hover for IE6

2008-07-10 Thread Sohail Aboobaker
Hi, It must a really newbie question but is li:hover doesn't behave correctly in IE. The following in the stylesheet does not change the background color in IE where it works fine with firefox. #secnavul li.hover { background-color:#B5761C; text-decoration: none; } The color doesn't

Re: [css-d] :: Highlight Dropdown Menu ::

2008-07-10 Thread tedd
At 10:34 PM +0530 7/10/08, Amrinder wrote: Goal: I want the parent menu item *wardle co.* text color WHITE when I hover at its dropdown list items i.e. Item-1 etc. I'm not sure what you're asking. Do you want the parent menu background to stay white? If so, that's in the section entitled /*

Re: [css-d] li:hover for IE6

2008-07-10 Thread Adam Ducker
Sohail Aboobaker wrote: Hi, It must a really newbie question but is li:hover doesn't behave correctly in IE. The following in the stylesheet does not change the background color in IE where it works fine with firefox. #secnavul li.hover { background-color:#B5761C;

Re: [css-d] li:hover for IE6

2008-07-10 Thread Adam Ducker
Sohail Aboobaker wrote: Hi, It must a really newbie question but is li:hover doesn't behave correctly in IE. The following in the stylesheet does not change the background color in IE where it works fine with firefox. #secnavul li.hover { background-color:#B5761C;

Re: [css-d] li:hover for IE6

2008-07-10 Thread Sohail Aboobaker
Hi, I tried that but it only changes the background for the length of the text of the a tag. I tried display:block. Am I missing something? Regards, Sohail On Thu, Jul 10, 2008 at 5:23 PM, Adam Ducker [EMAIL PROTECTED] wrote: Sohail Aboobaker wrote: Hi, It must a really newbie question

Re: [css-d] Opera sees content and draws a scrollbar, others ok

2008-07-10 Thread Ingo Chao
Rick Lecoat wrote: ... CSS: a .onfocustext {position: absolute; left: -px;} a .onfocustext:focus {position: relative; left: 0;} ... http://novatest.sharkattack.co.uk/development.php Did you mean this is typeStyle.css ? a .extraLinktext { position: absolute; left:

Re: [css-d] Opera sees content and draws a scrollbar, others ok

2008-07-10 Thread David Laakso
Rick Lecoat wrote: On some of my text links I've included supplemental information that becomes visible only on :focus (the mouse users generally get similarly-worded tooltips instead). An example markup would be: This works fine in browsers including (for a change) IE. Except opera.

[css-d] centering navigation tabs in a header section

2008-07-10 Thread Kelly Moore
I'm trying to center navigation tabs, within a header section. Somehow the tabs are still stuck to the left. I'm using the following CSS: width: 600px; margin-left:auto; margin-right:auto; float:left; Any ideas of what i'm doing wrong? Here is a sample page:

Re: [css-d] li:hover for IE6

2008-07-10 Thread Bill Brown
Sohail Aboobaker wrote: Hi, I tried that but it only changes the background for the length of the text of the a tag. I tried display:block. Am I missing something? Hi Sohail, I would guess that you have padding on the LI tag or margining on the A if the whole background of the A isn't

Re: [css-d] centering navigation tabs in a header section

2008-07-10 Thread Alan K Baker
Hi Kelly. Remove the float:left Regards, Alan. www.theatreorgans.co.uk www.virtualtheatreorgans.com Admin: ConnArtistes, UKShopsmiths, 2nd Touch A-P groups Shopsmith 520 + bits Flatulus Antiquitus - Original Message - From: Kelly Moore To: css-d@lists.css-discuss.org

Re: [css-d] centering navigation tabs in a header section

2008-07-10 Thread Ingo Chao
Kelly Moore wrote: I'm trying to center navigation tabs, within a header section. Somehow the tabs are still stuck to the left. I'm using the following CSS: width: 600px; margin-left:auto; margin-right:auto; float:left; Any ideas of what i'm doing wrong? A floated

Re: [css-d] Opera sees content and draws a scrollbar, others ok

2008-07-10 Thread Rick Lecoat
On 10 Jul 2008, at 23:02, David Laakso wrote: Coping with the obvious first will /sometimes/ yield clues Ack. Typical, the page I use as an example is the one page (I hope/ think) on the site with validation errors. Pesky, slippery closing slashes reinstated and validation fixed, but the

Re: [css-d] Opera sees content and draws a scrollbar, others ok

2008-07-10 Thread Rick Lecoat
On 10 Jul 2008, at 22:42, Ingo Chao wrote: http://novatest.sharkattack.co.uk/development.php Did you mean this is typeStyle.css ? a .extraLinktext { position: absolute; left: -999em; } a:focus .extraLinktext { position: relative; left: 0; } Yes,

[css-d] div height problem

2008-07-10 Thread Kelly Moore
I have a sub-section to my navigation tabs which looks fine in FF, but is waaay to tall in IE. any ideas? am I doing something weird with my divs? here is a sample: http://yakmaster.net/test/faq.html __ css-discuss [EMAIL

[css-d] Nav Bar Stacked in IE7

2008-07-10 Thread Carol Huddleston
This is my first page that I've designed using CSS, so I'm sure I've made a lot of mistakes here. I am using a Mac and primarily used Safari and FF 3.0 to check my work. The page looks okay on my screen, except in Safari it looks like the red border around the left navigation links doesn't

Re: [css-d] Nav Bar Stacked in IE7

2008-07-10 Thread Peter Hyde-Smith
- Original Message - From: Carol Huddleston [EMAIL PROTECTED] To: css-d@lists.css-discuss.org Sent: Thursday, July 10, 2008 8:09 PM Subject: [css-d] Nav Bar Stacked in IE7 This is my first page that I've designed using CSS, so I'm sure I've made a lot of mistakes here. I am using a

Re: [css-d] div height problem

2008-07-10 Thread Adam Ducker
Kelly Moore wrote: I have a sub-section to my navigation tabs which looks fine in FF, but is waaay to tall in IE. any ideas? am I doing something weird with my divs? here is a sample: http://yakmaster.net/test/faq.html