Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
16
rated 0 times [  21] [ 5]  / answers: 1 / hits: 159611  / 15 Years ago, wed, march 10, 2010, 12:00:00

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:



  <div class=nav style=float: right;>
<ul>
<li style=margin-right: 0px; >
<a id=nav-ask href=/questions/ask>Ask Question</a>
</li>
</ul>
</div>


I can't hide the nav class because other page elements use it.



Can I hide the link element via the nav-ask id?


More From » html

 Answers
22
<style type=text/css>
#nav-ask{ display:none; }
</style>

[#97374] Monday, March 8, 2010, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
skyler

Total Points: 646
Total Questions: 119
Total Answers: 96

Location: Bonaire
Member since Wed, Mar 29, 2023
1 Year ago
;