I would like to remove (or make not visible) #tab4 from the end users view. I thought I could use something like
#tab4 {
visibilty: none;
:
}
However thats not working. Do I need to target the ID as well?
<div id="tabs-widget-wrap">
<ul id="tabs">
<li id=""><a href="#" name="#tab1" id="">Description</a></li>
<li id=""><a href="#" name="#tab2" id="">Features</a></li>
<li id="current"><a href="#" name="#tab3" id="current">Policies</a></li>
<li id=""><a href="#" name="#tab4" id="">Availability</a></li>
<li id=""><a href="#" name="#tab5" id="">Review (0) </a></li>
</ul>
noneisn't a valid value for thevisibilityproperty. Try eitherhiddenorvisibleid- what you have would be better as classes ...<li class="tab">and the active one<li class="tab active">. If you really want anidon each tab they must be unique. Sensible ones could beid="desc",id="features"etc. But many people use ids where classes would do a better job. e.g. If you had more than one tab-set a tab set might have an id, not the tabs.<div class="tabs-widget-wrap" id="tab-set-1">