Re: [css-d] Menu hover bleeding 1px on FF

2016-03-13 Thread Philip TAYLOR
J.C. Berry wrote: Hi everyone, could you help with an issue I am having with a menu hover background color in Firefox? http://www.xifin.com/pronet/partners You will notice that the hover bleeds about 1px on the bottom. Any ideas? Thanks! Can't help with that, I am afraid, but I can tell you t

Re: [css-d] Menu hover bleeding 1px on FF

2016-03-10 Thread Dave Chiu
if you want to do CSS only, you could take advantage of keyframes, which works on most browsers these days http://caniuse.com/#search=css-animation add a simple CSS animation: @keyframes showSubnav { 0% { opacity: 0; } 100% { opacity: 1; } } add the animation elements to your :hover ul class #pro

Re: [css-d] Menu hover bleeding 1px on FF

2016-03-10 Thread J.C. Berry
Thanks again, everyone. Now I have an issue that is more of a usability one with that menu. We need: 1. The submenus to delay opening until after the main menu animation/bkgd color (0.4s). 2. And for the main menu item to stay highlighted while the mouse is over the submenu. I just didn't know if

Re: [css-d] Menu hover bleeding 1px on FF

2016-03-10 Thread J.C. Berry
Works great! Beautiful Dave. Thanks to Karl as well. On Thu, Mar 10, 2016 at 2:57 PM, Dave Chiu wrote: > adding vertical-align: top will at least get FF and Chrome to act the same > #pronet_topnav_wrapper #pronet_nav_container #pronet_nav ul#subnav > li a { > [...] > vertical-align: top;

Re: [css-d] Menu hover bleeding 1px on FF

2016-03-10 Thread Dave Chiu
adding vertical-align: top will at least get FF and Chrome to act the same #pronet_topnav_wrapper #pronet_nav_container #pronet_nav ul#subnav > li a { [...] vertical-align: top; } then adjust the margin-top on the list item from 6 to 7 #pronet_topnav_wrapper #pronet_nav_container #pronet_n

Re: [css-d] Menu hover bleeding 1px on FF

2016-03-10 Thread Karl DeSaulniers
Hi J.C., I noticed that #pronet_topnav_wrapper #pronet_nav_container #pronet_nav { height: 41px; ... } The rest of your nav containers are height: 40px; Might be the culprit. Also, you should not need to use !important for your nav. Check your floats and/or display: block vs. dis

[css-d] Menu hover bleeding 1px on FF

2016-03-10 Thread J.C. Berry
Hi everyone, could you help with an issue I am having with a menu hover background color in Firefox? http://www.xifin.com/pronet/partners You will notice that the hover bleeds about 1px on the bottom. Any ideas? Thanks! -- J.C. Berry, M.A. UI Developer 619.306.1712(m) jcharlesbe...@gmail.com h

Re: [css-d] menu item color question on submenu hover

2014-06-06 Thread Debbie Campbell
I sincerely apologize - the site's on maintenance mode per the client until launch. Sorry for wasting anyone's time here - on Monday I'll repost my question after the site goes public. -- Debbie On 6/6/2014 7:38 PM, JAY TANNA wrote: Website Under Construction Check back by June 1! I'm mo

Re: [css-d] menu item color question on submenu hover

2014-06-06 Thread JAY TANNA
Website Under Construction Check back by June 1! I'm modifying a commercial WordPress theme for a client and am having trouble with the main menu subitems: http://www.thingjiggy.com/about/qualifications/ If you mouse over Pet Services > Pet Sitting > Overnight Stays you'll see my problem -

[css-d] menu item color question on submenu hover

2014-06-06 Thread Debbie Campbell
I'm modifying a commercial WordPress theme for a client and am having trouble with the main menu subitems: http://www.thingjiggy.com/about/qualifications/ If you mouse over Pet Services > Pet Sitting > Overnight Stays you'll see my problem - the text color of the Pet Sitting item turns brown.

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-09-19 Thread Philippe Wittenbergh
Le 20 sept. 2013 à 10:06, John a écrit : > Philippe: why can nav ul li be simplified to nav li? (in addition to what Chris Rockwell mentioned) Both selectors basically target the same element; 'nav li' has some advantages, such as less work to type (and thus slightly reduce the bloat in a sty

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-09-19 Thread Chris Rockwell
When you use a space, it is a descendant/child selector, which means any child that matches. Therefore, "nav li" will target any li element that is a child of nav (regardless of whether or not it is a child of a ul). Unless the nav element has several child ul's that need to be styled differently

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-09-19 Thread John
On Aug 30, 2013, at 6:53 PM, Philippe Wittenbergh wrote: > Without seeing your html structure and the rest of your stylesheet: > > nav ul li { display: inline-block; vertical-align: top; width 50%; /* rest of > styles */ } > > PS - you could simplify that selector to: nav li {} > > Philippe

Re: [css-d] Menu falls behind video

2013-09-12 Thread Karl DeSaulniers
Opps.. /* Older than Firefox 0.01 */ -moz-opacity:0.08; should be /* Older than Firefox 0.01 */ -moz-opacity:0.01; Best, Karl DeSaulniers Design Drumm http://designdrumm.com On Sep 12, 2013, at 2:09 AM, Karl DeSaulniers wrote: > .transparent { > /* Required for IE 5,

Re: [css-d] Menu falls behind video

2013-09-12 Thread Karl DeSaulniers
.transparent { /* Required for IE 5, 6, 7 */ /* ...or something to trigger hasLayout, like zoom: 1; or width: 100%; */ zoom: 1; /* Theoretically for IE 8 & 9 (more valid) */ /* ...but not required as filter works too */ /* should

[css-d] Menu falls behind video

2013-09-11 Thread J.C. Berry
Hello all, A friend was asking me to help him with a CSS issue for this site: http://greaterdallasmovementday.com/ He wants to create transparent backgrounds to the flyout menu on the left, but when the background color is removed the menus fall behind the video. Any ideas? I hope this is enough

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-08-31 Thread russ
uot; To: "CSS-Discuss" Sent: Friday, August 30, 2013 7:58 PM Subject: [css-d] Menu: from inline to 2 columns of buttons I have a 6-item menu which is inline at desktop sizes, but block at mobile sizes. it works great, but at mobile, I'd like to have 2 columns of 3 buttons to

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-08-30 Thread Chris Rockwell
Sorry - forgot to reset the ul padding, I've just updated the pen On Fri, Aug 30, 2013 at 10:04 PM, Chris Rockwell wrote: > In the past I have done a couple different routes - 1 server side, 1 > client side. Both involved calculating the number of items and breaking it > into separate unordered

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-08-30 Thread Chris Rockwell
In the past I have done a couple different routes - 1 server side, 1 client side. Both involved calculating the number of items and breaking it into separate unordered lists. The css for doing is is pretty straight forward. The good news, is that multi-column layout ( http://www.w3.org/TR/css3-m

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-08-30 Thread Philippe Wittenbergh
Le 31 août 2013 à 09:58, "John A. Johnson" a écrit : > I have a 6-item menu which is inline at desktop sizes, but block at mobile > sizes. it works great, but at mobile, I'd like to have 2 columns of 3 buttons > to make better use of my vertical space. is there an easy way to do this? > can

Re: [css-d] Menu: from inline to 2 columns of buttons

2013-08-30 Thread Chris Rockwell
Hey John, can you post your HTML? Are you open to adding wrappers or no? On Fri, Aug 30, 2013 at 8:58 PM, John A. Johnson wrote: > I have a 6-item menu which is inline at desktop sizes, but block at mobile > sizes. it works great, but at mobile, I'd like to have 2 columns of 3 > buttons to make

[css-d] Menu: from inline to 2 columns of buttons

2013-08-30 Thread John A. Johnson
I have a 6-item menu which is inline at desktop sizes, but block at mobile sizes. it works great, but at mobile, I'd like to have 2 columns of 3 buttons to make better use of my vertical space. is there an easy way to do this? can it even be done with css? thank you! John existing desktop cs

Re: [css-d] menu floating away from me

2013-05-29 Thread Philippe Wittenbergh
Le 30 mai 2013 à 02:54, Dan McCullough a écrit : > I have a test site where the top nav should be lining up however it has > shifted off an to the right and I have looked at the code several times and > now my eyes are crossed and I am pulling whats left of my hair out. > > Can someone take a l

Re: [css-d] menu floating away from me

2013-05-29 Thread Greg Gamble
alf Of Dan McCullough Sent: Wednesday, May 29, 2013 10:55 AM To: css-d@lists.css-discuss.org Subject: [css-d] menu floating away from me I have a test site where the top nav should be lining up however it has shifted off an to the right and I have looked at the code several times and now my eyes are c

Re: [css-d] menu floating away from me

2013-05-29 Thread Philip Taylor
Dan McCullough wrote: > thats all fixed and valid however there is no change .. not that I thought > it would ... was hoping however :( Sadly whilst the HTML is now valid, that discloses that there are 19 errors in the CSS : http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2

Re: [css-d] menu floating away from me

2013-05-29 Thread Dan McCullough
thats all fixed and valid however there is no change .. not that I thought it would ... was hoping however :( On Wed, May 29, 2013 at 2:01 PM, Philip Taylor wrote: > > > Dan McCullough wrote: > > > I have a test site where the top nav should be lining up however it has > > shifted off an to the

Re: [css-d] menu floating away from me

2013-05-29 Thread Philip Taylor
Dan McCullough wrote: > I have a test site where the top nav should be lining up however it has > shifted off an to the right and I have looked at the code several times and > now my eyes are crossed and I am pulling whats left of my hair out. > > Can someone take a look and tell me what I cann

[css-d] menu floating away from me

2013-05-29 Thread Dan McCullough
I have a test site where the top nav should be lining up however it has shifted off an to the right and I have looked at the code several times and now my eyes are crossed and I am pulling whats left of my hair out. Can someone take a look and tell me what I cannot see .. its normally something si

Re: [css-d] Menu centering

2012-08-24 Thread Ursula Pieper
Thanks David and Al for the pointers. Especially Al for calling me on the excessive css! Most of the css for the site is provided by the drupal theming layer, but I certainly had too much redundant stuff in the file(s) that I added myself. After removing all statements that were not necessary, it w

Re: [css-d] Menu centering

2012-08-24 Thread David Hucklesby
On 8/24/12 1:20 PM, Ursula Pieper wrote: Greetings, I can't figure out how to center the top menu in: http://salilab.org/salilab_drupal/ I have tried to add: margin-left: auto; margin-right: auto; width: 100%; I aded this to a number of places in the stylesheet, and can't figure out why it's

Re: [css-d] Menu centering

2012-08-24 Thread Al Sparber
On 8/24/2012 4:20 PM, Ursula Pieper wrote: Greetings, I can't figure out how to center the top menu in: http://salilab.org/salilab_drupal/ I have tried to add: margin-left: auto; margin-right: auto; width: 100%; I aded this to a number of places in the stylesheet, and can't figure out why it

[css-d] Menu centering

2012-08-24 Thread Ursula Pieper
Greetings, I can't figure out how to center the top menu in: http://salilab.org/salilab_drupal/ I have tried to add: margin-left: auto; margin-right: auto; width: 100%; I aded this to a number of places in the stylesheet, and can't figure out why it's not working. I'd greatly appreciate, if s

Re: [css-d] Menu Hovering Issue

2012-03-05 Thread csslist
> On Tue, Mar 6, 2012 at 10:08 AM, wrote: >> Was wondering if anyone could help me figure out why my sub menu has a >> delay when hovering from the original menu.  Sometimes it works but most >> times it takes about 3-5 hovers before sub menu stays visible.  Link is >> here: http://www.fnfsportsf

Re: [css-d] Menu Hovering Issue

2012-03-05 Thread Ghodmode
On Tue, Mar 6, 2012 at 10:08 AM, wrote: > Was wondering if anyone could help me figure out why my sub menu has a > delay when hovering from the original menu.  Sometimes it works but most > times it takes about 3-5 hovers before sub menu stays visible.  Link is > here: http://www.fnfsportsfishing

[css-d] Menu Hovering Issue

2012-03-05 Thread csslist
Was wondering if anyone could help me figure out why my sub menu has a delay when hovering from the original menu. Sometimes it works but most times it takes about 3-5 hovers before sub menu stays visible. Link is here: http://www.fnfsportsfishing.com. By the way, I created it using a css3 gener

Re: [css-d] Menu bar

2012-02-04 Thread Emeka
David , Thanks so much! Regards, \Emeka On Fri, Feb 3, 2012 at 11:55 PM, David Laakso wrote: > On Fri, Feb 3, 2012 at 8:53 AM, Emeka wrote: > > David, >> >> Thanks. But what I want is not only having tag a in my menu, I want to >> include textfield and submit types, each time I add those tags

Re: [css-d] Menu bar

2012-02-03 Thread David Laakso
On Fri, Feb 3, 2012 at 8:53 AM, Emeka wrote: David, > > Thanks. But what I want is not only having tag a in my menu, I want to > include textfield and submit types, each time I add those tags ... I would > have something that is not properly aligned. > > Regards, > Emeka > > Have you tried setti

Re: [css-d] Menu bar

2012-02-03 Thread Emeka
David, Thanks. But what I want is not only having tag a in my menu, I want to include textfield and submit types, each time I add those tags ... I would have something that is not properly aligned. Regards, Emeka On Fri, Feb 3, 2012 at 1:21 PM, David Laakso wrote: > > On Fri, Feb 3, 2012 at 6:

Re: [css-d] Menu bar

2012-02-03 Thread David Laakso
On Fri, Feb 3, 2012 at 6:56 AM, Emeka wrote: David, > > Thanks. But that didn't do the magic. It is still not aligned horizontal. > > Emeka > > > Ooops. Sorry, I was looking at the content blocks. Short on time here, but I think this simple tutorial will point the way toward a solution for the

Re: [css-d] Menu bar

2012-02-03 Thread Emeka
David, Thanks. But that didn't do the magic. It is still not aligned horizontal. Emeka On Fri, Feb 3, 2012 at 12:42 PM, David Laakso wrote: > On Fri, Feb 3, 2012 at 6:19 AM, Emeka wrote: > > Hello All, >> >> Why can't I get the menu bar aligned horizontal? Please I need help. >> >> >> > > Emek

Re: [css-d] Menu bar

2012-02-03 Thread David Laakso
On Fri, Feb 3, 2012 at 6:19 AM, Emeka wrote: Hello All, > > Why can't I get the menu bar aligned horizontal? Please I need help. > > > Emeka, In order to align the menu bar, you'll need to clear the footer... #footer{ clear:both; /*<-add*/ height: 29px; width: 1025px; backgroun

[css-d] Menu bar

2012-02-03 Thread Emeka
Hello All, Why can't I get the menu bar aligned horizontal? Please I need help. JOOP HEADER Home Back LEFT CENTER RIGHT FOOTER body, div,h1,h2,h3{margin:0px; padding: 0px;list-style: none; width:1025px;} #base { background-color: AC23DE; } #header { height: 97px; width: 1025

Re: [css-d] menu in separate page?

2012-02-02 Thread Michael Stevens
s-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of john Sent: Thursday, February 02, 2012 12:34 PM To: css-d@lists.css-discuss.org Subject: [css-d] menu in separate page? Can somebody point me to a tutorial that shows how to put a menu i

Re: [css-d] menu in separate page?

2012-02-02 Thread David Laakso
On Thu, Feb 2, 2012 at 3:19 PM, John wrote: thank you for the responses...I apologize for asking about what clearly isn't a CSS issue...my bad! John --- Before you consider taking a coil of rope to the woods, please see this "plain English" SSI tutorial...

Re: [css-d] menu in separate page?

2012-02-02 Thread Eric Heitz
On 2/2/12 2:38 PM, Philip TAYLOR wrote: john wrote: Can somebody point me to a tutorial that shows how to put a menu into it's own page, the advantage that you edit/adjust once, and all pages are updated, rather than editing the menu on each page. Tutorial ? Sorry, no. Suggestions ? A few

Re: [css-d] menu in separate page?

2012-02-02 Thread John
thank you for the responses...I apologize for asking about what clearly isn't a CSS issue...my bad! John __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-

Re: [css-d] menu in separate page?

2012-02-02 Thread Paceaux
h just HTML. > > Mike > > -Original Message- > From: css-d-boun...@lists.css-discuss.org > [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of john > Sent: Thursday, February 02, 2012 12:34 PM > To: css-d@lists.css-discuss.org > Subject: [css-d] menu in s

Re: [css-d] menu in separate page?

2012-02-02 Thread Chris Morton
I put my menu in a HTML page. Each of my real pages are .SHTML, indicating they are server side includes. The code within each .SHTML page looks like this: Sample page: www.eigen.com __ css-discuss [css-d@lists.css-discus

Re: [css-d] menu in separate page?

2012-02-02 Thread Michael Stevens
ssage- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of john Sent: Thursday, February 02, 2012 12:34 PM To: css-d@lists.css-discuss.org Subject: [css-d] menu in separate page? Can somebody point me to a tutorial that shows how to put a menu into

Re: [css-d] menu in separate page?

2012-02-02 Thread David Laakso
On Thu, Feb 2, 2012 at 2:34 PM, john wrote: Can somebody point me to a tutorial that shows how to put a menu into it's own page, the advantage that you edit/adjust once, and all pages are updated, rather than editing the menu on each page. John John, you are probably seeking SSI [server s

Re: [css-d] menu in separate page?

2012-02-02 Thread Ted Rolle Jr.
Write it as PHP and include the PHP file is how I do it. You can have this: whatever.php: Boilerplate code In the calling module: . . . . . . There's probably more elegant solutions. I'm looking forward to seeing them. On Thu, Feb 2, 2012 at 14:34, john wrote: > Can somebody point me to

Re: [css-d] menu in separate page?

2012-02-02 Thread Philip TAYLOR
john wrote: Can somebody point me to a tutorial that shows how to put a menu into it's own page, the advantage that you edit/adjust once, and all pages are updated, rather than editing the menu on each page. Tutorial ? Sorry, no. Suggestions ? A few :: Dreamweaver templates and library

[css-d] menu in separate page?

2012-02-02 Thread john
Can somebody point me to a tutorial that shows how to put a menu into it's own page, the advantage that you edit/adjust once, and all pages are updated, rather than editing the menu on each page. I am googling for this, but not finding anything that exactly deals with this, at least doesn't lo

Re: [css-d] Menu: where to place in markup?

2011-10-12 Thread John
On Oct 10, 2011, at 10:23 AM, G.Sørtun wrote: > On 10.10.2011 18:06, John wrote: > >> Link: http://www.coffeeonmars.com/testing/index.html > > You have a missing ' " ' in there... > > http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List polici

Re: [css-d] Menu: where to place in markup?

2011-10-10 Thread G.Sørtun
On 10.10.2011 18:06, John wrote: Link: http://www.coffeeonmars.com/testing/index.html You have a missing ' " ' in there... Something like this will do... #content { color: #111311; width: 727px; float: right; margin-right: 150px; } regards Georg __

Re: [css-d] Menu: where to place in markup?

2011-10-10 Thread John
On Oct 10, 2011, at 10:01 AM, David Laakso wrote: > 1/ Do you want the menu to be adjacent to the left of the wpr.org image? > 2/ Do you want the menu to be adjacent to the right of the wpr.org image? > 3/ Do you want the wpr.org image centered with the menu centered beneath the > wpr.org? > 4/

Re: [css-d] Menu: where to place in markup?

2011-10-10 Thread David Laakso
On 10/10/11 12:34 PM, John wrote: Yes, Tom, I have styles I brought in from an earlier version of this page, and on that earlier version, I could position them, however, the structure of that document is different than the current one. So, in the new document: http://www.coffeeonmars.com/tes

Re: [css-d] Menu: where to place in markup?

2011-10-10 Thread John
On Oct 10, 2011, at 9:20 AM, Tom Livingston wrote: > One solution would be to wrap the menu and it's head in a div and > absolutely position it left within the content div. Are you saying you > HAVE styles for it, but it's not effecting the menu? Yes, Tom, I have styles I brought in from an ear

[css-d] Menu: where to place in markup?

2011-10-10 Thread John
I have a side menu on the page in the link below..it is meant to be flush left within the beige center area, and to top-align with the head "Feature UX Project: Wisconsin Public Radio Link: http://www.coffeeonmars.com/testing/index.html I can not gain control over the positioning of this menu.

[css-d] menu hover issue

2011-01-20 Thread Debbie Campbell
When trying to fix an issue with z-index and IE7, I seem to have done something else. When you hover over the dropdown menus in this page in IE7, they close unless you're actually over a link: http://www.redkitecreative.com/projects/team/contact-us/ Can someone help? -- Debbie Campbell www.

Re: [css-d] menu test

2010-12-11 Thread David Laakso
On 12/11/10 6:45 AM, Erik Visser wrote: Please give me your remarks. And how this menu behaves in the different browsers and/or pplatforms you use. Thanks, Erik http://beta.ottermeerhoeve.nl/index.php Always a pleasure to land on a page with primary content set at default:-) . O.K.

Re: [css-d] menu test

2010-12-11 Thread Erik Visser
David Laakso schreef op 12/11/10 12:49 PM: On 12/11/10 6:45 AM, Erik Visser wrote: Please give me your remarks. And how this menu behaves in the different browsers and/or pplatforms you use. Thanks, Erik uri, Erik? eeehhh.. http://beta.ottermeerhoeve.nl/index.php __

Re: [css-d] menu test

2010-12-11 Thread David Laakso
On 12/11/10 6:45 AM, Erik Visser wrote: Please give me your remarks. And how this menu behaves in the different browsers and/or pplatforms you use. Thanks, Erik uri, Erik? -- :: desktop and mobile :: http://chelseacreekstudio.com/ ___

[css-d] menu test

2010-12-11 Thread Erik Visser
A client wants elliptical menu buttons with Comic Sans font, Please give me your remarks. And how this menu behaves in the different browsers and/or pplatforms you use. Thanks, Erik __ css-discuss [cs...@lists.css-discuss.org

Re: [css-d] menu text/image buttons not working in IE7

2010-10-12 Thread Thierry Koblentz
> On this page (this VirtueMart cart, actually), the menu buttons are > screwy in IE7: > > > http://beverlylanzetta.net/retablos.html > > If you check in a modern browser you'll see they're wide-ish image > backgrounds. Can someone tell me how to fix them? I'd not float the UL (nor the LIs), I'd

Re: [css-d] menu text/image buttons not working in IE7

2010-10-11 Thread David Laakso
On 10/11/10 7:52 PM, Debbie Campbell wrote: On this page (this VirtueMart cart, actually), the menu buttons are screwy in IE7: http://beverlylanzetta.net/retablos.html If you check in a modern browser you'll see they're wide-ish image backgrounds. Can someone tell me how to fix them?

[css-d] menu text/image buttons not working in IE7

2010-10-11 Thread Debbie Campbell
On this page (this VirtueMart cart, actually), the menu buttons are screwy in IE7: http://beverlylanzetta.net/retablos.html If you check in a modern browser you'll see they're wide-ish image backgrounds. Can someone tell me how to fix them? -- Debbie www.redkitecreative.com ___

Re: [css-d] Menu items expanding with browser window

2010-09-01 Thread Duncan Hill
On Tue, 31 Aug 2010 22:43:45 +0100, Ellen Heitman wrote: Please take a look at the following test page: http://www.pottersignal.com/sales_test.aspx Notice that if you expand or contract the page the horizontal menu at the top of the page expands and contracts with it. How can I fix this? A

Re: [css-d] Menu items expanding with browser window

2010-08-31 Thread Ann Randall
On Tue, Aug 31, 2010 at 3:43 PM, Ellen Heitman wrote: > Please take a look at the following test page: > > http://www.pottersignal.com/sales_test.aspx > > Notice that if you expand or contract the page the horizontal menu at the > top of the page expands and contracts with it. How can I fix this

Re: [css-d] Menu items expanding with browser window

2010-08-31 Thread Julaine Scott
Have you tried assigned a width to #menu? On Tue, Aug 31, 2010 at 3:43 PM, Ellen Heitman wrote: > Please take a look at the following test page: > > http://www.pottersignal.com/sales_test.aspx > > Notice that if you expand or contract the page the horizontal menu at the > top of the page expand

[css-d] Menu items expanding with browser window

2010-08-31 Thread Ellen Heitman
Please take a look at the following test page: http://www.pottersignal.com/sales_test.aspx Notice that if you expand or contract the page the horizontal menu at the top of the page expands and contracts with it. How can I fix this? Also, please ignore the tabulated structure of the website overa

[css-d] menu with two in ie6 compatible

2010-08-29 Thread Čistý design
Hello everyone I need to create a menu that contains two links in each li. First link is an arrow which after clicking it will open a submenu (with a help of javascript) and the other is the actual link to a particular page (like a normal menu). The arrow logically needs to be in front of the

[css-d] Menu Problem

2010-07-31 Thread William Gates
Hi Dipesh, Your pages don't validate - there are some markup problems - ie unclosed divs, duplicate ids etc. It's always best to validate first before dealing with CSS. There is a validator at: http://validator.w3.org Regards William _

[css-d] Menu problem

2010-07-31 Thread Dipesh Parmar
I'm creating a simple thumbnail portfolio in html/css, but i've come across a strange problem which i cant fix. I've created the css so all the pages function the same, but on the gallery pages (gallery/gallerytwo/gallerythree.html) the top menu moves up another 10pixels or so. It appears on sa

Re: [css-d] Menu problems in IE7

2010-04-02 Thread David Laakso
Matt Fielding wrote: > However, in IE7 the > menu on the left hand side floats over > the content area. > > Matt Fielding > *:first-child+html #sidelinks {position: relative; float: left; } Best, ~d -- desktop http://chelseacreekstudio.com/ mobi

Re: [css-d] Menu problems in IE7

2010-04-02 Thread Claude Needham
On Fri, Apr 2, 2010 at 6:20 PM, Matt Fielding wrote: > Hello all, > > I am almost 100% done writing the code for a client, but they have > discovered an issue and despite my efforts I cannot figure out what it is. > In Firefox, Chrome, Safari, and IE8, everything works fine. However, in IE7 > the

Re: [css-d] Menu problems in IE7

2010-04-02 Thread Chris F.A. Johnson
On Fri, 2 Apr 2010, Chris F.A. Johnson wrote: > On Fri, 2 Apr 2010, Matt Fielding wrote: > > > Hello all, > > > > I am almost 100% done writing the code for a client, but they have > > discovered an issue and despite my efforts I cannot figure out what it is. > > In Firefox, Chrome, Safari, and

Re: [css-d] Menu problems in IE7

2010-04-02 Thread Chris F.A. Johnson
On Fri, 2 Apr 2010, Matt Fielding wrote: > Hello all, > > I am almost 100% done writing the code for a client, but they have > discovered an issue and despite my efforts I cannot figure out what it is. > In Firefox, Chrome, Safari, and IE8, everything works fine. However, in IE7 > the > menu

[css-d] Menu problems in IE7

2010-04-02 Thread Matt Fielding
Hello all, I am almost 100% done writing the code for a client, but they have discovered an issue and despite my efforts I cannot figure out what it is. In Firefox, Chrome, Safari, and IE8, everything works fine. However, in IE7 the menu on the left hand side flo

[css-d] Menu

2010-02-22 Thread Ragnar Ragnarsson
I need a little help with an Eric Meyer project I'm working on, below is the current code and below that I'll put the instructions. [code] http://www.w3.org/TR/html4/strict.dtd";> Project 6 body {background: #EEE; color: #000; behavior: url(csshover.htc);} /* WinIE behavior call */ h1 {color

[css-d] menu oddity on IE6

2010-01-31 Thread Giuseppe Craparotta
Hi, my problem is viewable at this address: www.cooltester.com/doubts/menu-bgimgs-IE6/monopage-about.html I've used the pixy method for rollover effect on the menu button but this is badly handled in IE6, which shows part of the rollover imgs in the default status too (when the pointer doesn't h

Re: [css-d] menu flashes and disappears in IE6

2009-08-06 Thread David Laakso
Debbie Campbell wrote: > In this site, in IE6 only, > > >> http://www.redkitecreative.com/projects/horse/ >> > > my navigation menu (just a simple CSS text-based menu) flashes for a > second, then disappears. Can someone shed some light on this issue? > Debbie, Your URL is fine on m

[css-d] menu flashes and disappears in IE6

2009-08-06 Thread Debbie Campbell
In this site, in IE6 only, > http://www.redkitecreative.com/projects/horse/ my navigation menu (just a simple CSS text-based menu) flashes for a second, then disappears. Can someone shed some light on this issue? -- Debbie Campbell __

Re: [css-d] Menu bar in Safari hides content

2009-08-03 Thread David Laakso
Timothy Burgin wrote: > David, > > Thank you! Taking the overflow out helped get the content back but > now I'm seeing the last menu item "Philosophy" not being formatted by > the css in Safari, and in IE 6 the last two are not formatted with the > css. Weird! Any suggestions on a fix? > >

Re: [css-d] Menu bar in Safari hides content

2009-08-03 Thread Tim Snadden
On 4/08/2009, at 6:09 AM, Timothy Burgin wrote: > David, > > Thank you! Taking the overflow out helped get the content back but > now I'm seeing the last menu item "Philosophy" not being formatted by > the css in Safari, and in IE 6 the last two are not formatted with the > css. Weird! Any sug

Re: [css-d] Menu bar in Safari hides content

2009-08-03 Thread Timothy Burgin
David, Thank you! Taking the overflow out helped get the content back but now I'm seeing the last menu item "Philosophy" not being formatted by the css in Safari, and in IE 6 the last two are not formatted with the css. Weird! Any suggestions on a fix? http://westashevilleyoga.com/yoga/

Re: [css-d] Menu bar in Safari hides content

2009-08-03 Thread David Laakso
Timothy Burgin wrote: > Having a weird issue in Safari with a menu bar that is broken into 2 > ULs separated by a graphic. Looks fine in Firefox, but in Safari the > content after the menubar is hidden, even though I can see it if I > view source of page. The CSS validates fine. > > http://

[css-d] Menu bar in Safari hides content

2009-08-03 Thread Timothy Burgin
Having a weird issue in Safari with a menu bar that is broken into 2 ULs separated by a graphic. Looks fine in Firefox, but in Safari the content after the menubar is hidden, even though I can see it if I view source of page. The CSS validates fine. http://westashevilleyoga.com/yoga/ Here

Re: [css-d] Menu bacground and width

2009-07-13 Thread Andzia
> > It's the entire list that you are trying to center, not the individual list > items (I think). Give the UL a width, then the auto left/right margins on > the UL will center it. > [...] I wrote: .nav ul { width: 80%; margin-left: auto; margin-right: auto; } but the browser ignored it. Firebug

Re: [css-d] Menu bacground and width

2009-07-13 Thread David Hucklesby
Andzia wrote: >> To center an element using "auto" left/right margins, the element must >> have a width - either specified or intrinsic (as in the case of a >> "shrink-to-fit" property like an inline-block). > > > Now the list elements have "auto" width. Should it be fixed? But then they > wouldn

[css-d] Menu bacground and width

2009-07-13 Thread Andzia
> > To center an element using "auto" left/right margins, the element must > have a width - either specified or intrinsic (as in the case of a > "shrink-to-fit" property like an inline-block). Now the list elements have "auto" width. Should it be fixed? But then they wouldn't look good with diffe

Re: [css-d] Menu bacground and width

2009-07-12 Thread David Hucklesby
Andzia wrote: > > Hi Ania, and welcome. There are some coding errors that make it > difficult to diagnose. > > Correct those and ask again if that does not work. > > > You mean this? > http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fklikerlab.pl%2Fwordpress%2F > > >

Re: [css-d] Menu bacground and width

2009-07-11 Thread David Hucklesby
Andzia wrote: > Hello, > this is my first post to this list. I am creating this website: > http://klikerlab.pl/wordpress/ > using WP Framework. I made a jpg image to illustrate what I want to achieve: > http://klikerlab.pl/wordpress/wp-content/uploads/2009/07/klikerlab_glowna.jpg > and now I'm work

[css-d] Menu bacground and width

2009-07-11 Thread Andzia
Hello, this is my first post to this list. I am creating this website: http://klikerlab.pl/wordpress/ using WP Framework. I made a jpg image to illustrate what I want to achieve: http://klikerlab.pl/wordpress/wp-content/uploads/2009/07/klikerlab_glowna.jpg and now I'm working on the menu, which wil

Re: [css-d] Menu shift IE8/FFox3

2009-06-29 Thread Tony Lush
> Tony Lush wrote: > > In IE8 and Firefox 3 I have a twelve pixel shift downwards on the > > horizontal > > menu at http://dev.fastertechnology.com/index.php that does not appear at > > http://dev.fastertechnology.com/store.html (that's when additional > > stylesheets for an ecommerce integrati

Re: [css-d] Menu shift IE8/FFox3

2009-06-29 Thread David Laakso
Tony Lush wrote: > In IE8 and Firefox 3 I have a twelve pixel shift downwards on the horizontal > menu at http://dev.fastertechnology.com/index.php that does not appear at > http://dev.fastertechnology.com/store.html (that's when additional > stylesheets for an ecommerce integration come into pl

[css-d] Menu shift IE8/FFox3

2009-06-29 Thread Tony Lush
In IE8 and Firefox 3 I have a twelve pixel shift downwards on the horizontal menu at http://dev.fastertechnology.com/index.php that does not appear at http://dev.fastertechnology.com/store.html (that's when additional stylesheets for an ecommerce integration come into play). I have not been abl

Re: [css-d] Menu in IE 6

2009-05-30 Thread Chris Blake
Hi, In case it is of interest to you, the website is blocked in China. "The Great Firewall" in Beijing. cb On 31/05/2009, at 4:04 AM, Todd Richards wrote: > Hi everyone - > > Just launched a new site a few days ago and one person is reporting > that the > CSS menu on the left doesn't work

[css-d] Menu in IE 6

2009-05-30 Thread Todd Richards
Hi everyone - Just launched a new site a few days ago and one person is reporting that the CSS menu on the left doesn't work right in IE 6. I just loaded MS Virtual machine with XP SP3 and IE 6, and confirmed that it shows fine while the page is loading, then it goes away. The site validates, an

Re: [css-d] Menu items

2009-04-24 Thread Mario Rizzi
Il giorno 24/apr/09, alle ore 18:04, David Hucklesby ha scritto: > If you were using HTML I'd suggest leaving off the closing . > But I notice you use an XHTML 1.1 DOCTYPE, which is only supposed to > be used for documents delivered as XML. So I have to ask why? David, your question is beyond

  1   2   3   4   >