views:

7

answers:

2

On this site I am doing the template for:

http://questionlounge.com/

The "Latest Questions" menu tab has a strange element style added to it that is border-left:none;

I can't see how it gets there as the CSS and markup is fine.

Any ideas on this one?

Thanks

+1  A: 

you have a script in your page

$(document).ready(function() {
   $(".tabs li:eq(0) a").css("border-left", "none");
   .....
   }

i think this is the culprit

Vinay B R
+1 D'oh! You beat me to it! hehe
Andrew Barber
Lol I was looking at that code and because of the large gap between the top part and bottom part I never even scrolled down to see that. Guess I should have made more use of Ctrl+F. Thanks guys/gals.
Mark
mark as answer if it resolved the problem
Vinay B R
A: 

There's a jQuery $(document).ready() function which does this:

   $(".tabs li:eq(0) a").css("border-left", "none");
Andrew Barber