Hopefully there\'s a quick and dirty way to remove the \"Ask Question\" (or hide it) from a page where I can only add CSS and Javascript:
If you want to do it via javascript rather than CSS you can use:
var link = document.getElementById('nav-ask'); link.style.display = 'none'; //or link.style.visibility = 'hidden';
depending on what you want to do.