Post by clemie on Jun 26, 2018 17:08:35 GMT -8
I've started from making a tabbed table from scratch with the help of a coding site for beginners however i've hit a road block and would greatly appreciate help. I'll start off with just saying my knowledge on coding if very low and anything i do know i am self taught.
This si the coding I have down so far.
I will be adding images to these. The roadblock I hit was when you click on a tab it doesnt switch tabs. It also doesnt show the content, I don't want the content to be hidden in the tabs i just want it to show the new ones as you click on each tab.
Thank you.
thewildside.boards.net/
This si the coding I have down so far.
<div class="tabbed-box">
<ul class="tabs">
<li><a href="#">Tab #1</a></li>
<li><a href="#">Tab #2</a></li>
<li><a href="#">Tab #3</a></li>
<li><a href="#">Tab #4</a></li>
</ul>
<div class="tabbed-content">
<p>Here's my content for tab 1</p>
</div>
<div class="tabbed-content">
<p>Here's my content for tab 2</p>
</div>
<div class="tabbed-content">
<p>Here's my content for tab 3</p>
</div>
</div>
/*Tabbed HP*/
.tabbed-box {
width: 632px;
background: #fff url(tabbed-body-bg.jpg) repeat-x bottom;
border: 1px solid #ddd; }
.tabbed-box .tabs li {
list-style: none;
float: left; }
.tabbed-box .tabs li a {
display: block;
width: 150px;
padding: 5px 0;
font-weight: bold;
text-align: center;
text-decoration: none;
color: #888;
background: #fff url(tabbed-tab-bg.jpg) repeat-x bottom;
border-left: 1px solid #ddd;
border-bottom: 1px solid #ddd;}
.tabbed-box .tabs li:first-child a {
border-left: none; }
.tabbed-box .tabs li a:hover {
color: #333; }
.tabbed-box .tabs li a:focus {
outline: none; }
.tabbed-box .tabs li a.active {
background: #fff;
color: #333;
border-bottom: 1px solid #fff; }
.tabbed-content {
padding: 3em 1em 1em 1em;
display: none; }
I will be adding images to these. The roadblock I hit was when you click on a tab it doesnt switch tabs. It also doesnt show the content, I don't want the content to be hidden in the tabs i just want it to show the new ones as you click on each tab.
Thank you.
thewildside.boards.net/