Results 1 to 1 of 1

Thread: css? jquery? problem

  1. #1
    Join Date
    Nov 2009
    Location
    Sofia, Bulgaria
    Posts
    5

    Unhappy css? jquery? problem

    Hi there! I'm new in the forum, and i promise i will help others with everything i can, but now i need a help... it's about my portfolio page. The menu of the top seems to work perfect on latest firefox, but in IE when i click on a link it dissapears.. I don't know why.. is it from the CSS or the jquery(the <li> are animated when clicked)...
    Every advice is appreciated.. 10x in advance
    Soo here's the page and the code: http://admin.imi-teteven.com/

    CSS:
    Code:
    span.cv {color: #C3C;}
    span.work { color: #9C3;}
    #menubg {
    	background: url(images/menubg.jpg) no-repeat top center;
    	width: 936px;
    	height: 131px;
    }
    #menubg ul {
    	margin: 0px;
    	position: relative;
    	top: 26px;
    	list-style: none;
    }
    #menubg ul li {
    	font-family: Tahoma, Geneva, sans-serif;
    	font-weight: bolder;
    	font-size: 18px;
    	margin-left: 55px;
    	display: inline;	
    	text-decoration: none;
    	color: #FFF;
    	padding: 10px 22px;
    }
    #menubg ul li.first {
    	margin-left: -35px;
    	color: #FFF;
    }
    #menubg ul li.first:hover { border-bottom: #666 4px solid;}
    #menubg ul li.CV  {color: #C3C;}
    #menubg ul li.CV:hover { border-bottom: #9C3 4px solid; }
    #menubg ul li.WORK { color: #9C3;} 
    #menubg ul li.WORK:hover { border-bottom: #C3C 4px solid; }
    #menubg ul li.CONTACT { color: #FFF;}
    #menubg ul li.CONTACT:hover { border-bottom: #FFF 4px solid; }
    #menubg ul li.active {border-bottom: #FFF 4px solid;}
    Jquery:
    Code:
    $('#menubg ul li a').click(function(){
    	$('#menubg ul li').removeClass('active')
    	$(this).parent('li').hide().addClass('active').fadeIn('slow')
    	$(this).next('span').show();});
    });
    Last edited by kozzleto; 18 Nov 2009 at 12:41 PM.

Similar Threads

  1. slight problem with CSS code
    By webguy_dave in forum General Questions
    Replies: 1
    Last Post: 17 Dec 2005, 02:55 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •