[css-d] Navagation list issue

2011-07-23 Thread Christopher Wicklander
http://www.intuidiv.com/raw/index.html I was wondering if someone could help? Why does the ;hover image cut out the background image when in the hover state? Any help would be greatly appreciated, thanks. All motion is perpetual, he moved away by standing still.   In the Land of the Blind,

Re: [css-d] Navagation list issue

2011-07-23 Thread Ville Viklund
Your :hover image is too short. It is only 100px and some of the navigation links are much longer. You should also change the :hover from li to a if you want to support older versions of IE. Ville. 2011/7/23 Christopher Wicklander elgueromer...@yahoo.com http://www.intuidiv.com/raw/index.html

Re: [css-d] Navagation list issue

2011-07-23 Thread Chetan Crasta
Comment out the following declarations like this: .nav ul li { /* background-image: url(images/header_bg.jpg); background-repeat: repeat-x; */ ... and add this .nav ul { background: url(images/header_bg.jpg) repeat-x; overflow:hidden; } Regards, Chetan Crasta

[css-d] nav bar: how to move one item all the way to the right?

2011-07-23 Thread Koen van der Drift
Hi, I have a working nab bar and want to move the right most item all the way to the right. I tried the following: nav ul li…. [insert links here] lia href=../rightlink.html class=rightitemallright/a/li /ul /nav nav ul { margin: 0;

Re: [css-d] nav bar: how to move one item all the way to the right?

2011-07-23 Thread Chetan Crasta
Try nav { position:relative; padding-right: 30px;} nav a.rightitem { postition: absolute; right: 0; } Make sure the padding-right on nav is sufficient. Regards, Chetan Crasta On Sat, Jul 23, 2011 at 6:29 PM, Koen van der Drift koenvanderdr...@gmail.com wrote: Hi, I have a working nab bar