On this site I am doing the template for:
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
On this site I am doing the template for:
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
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
There's a jQuery $(document).ready() function which does this:
$(".tabs li:eq(0) a").css("border-left", "none");