.ui-tabs-hide {
display: none;
}
fixed this problem. How do add this?
The template causing problems:
{% extends "base.tpl" %}
{% block title %} testing tabs {% endblock %}
{% block content %}
{% tabs id="tabs" %}
<div id="tabs">
<ul>
<li><a href="#tabs-1">About</a></li>
<li><a href="#tabs-2">Questions</a></li>
<li><a href="#tabs-3">Answers</a></li>
<li><a href="#tabs-4">Matches</a></li>
</ul>
<div id="tabs-1">
<p>
<h1> Place Holder </h1>
</p>
</div>
<div id="tabs-2">
<p>The meaning of Life the Universe and Everything</p>
</div>
<div id="tabs-3">
<p>42</p>
</div>
<div id="tabs-4">
<p>Dolphins</p>
</div>
</div>
{% endblock %}
Jeff.
{% extends "base.tpl" %}
{% block title %} testing tabs {% endblock %}
{% block html_head_extra %}
<style type="text/css">
.ui-tabs-hide {
display: none;
}
</style>
Jeff.
- Marc