Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

website tabs/pills

strawbs89

Active Coder
hi all hope someone can help

basically i am trying to create a schedule with the days of these week
using tabs now when you click

mon tue wed different text shows up? but thurs fri sat sun don't

see here

[CODE title="Website Tabs"] <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">


<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#home">Mon</a></li>
<li><a data-toggle="tab" href="#menu1">Tue</a></li>
<li><a data-toggle="tab" href="#menu2">Wed</a></li>
<li><a data-toggle="tab" href="#menu3">Thu</a></li>
<li><a data-toggle="tab" href="#menu3">Fri</a></li>
<li><a data-toggle="tab" href="#menu3">Sat</a></li>
<li><a data-toggle="tab" href="#menu3">Sun</a></li>
</ul>

<div class="tab-content">
<div id="home" class="tab-pane fade in active">
<h3></h3>
<p></p>
</div>
<div id="menu1" class="tab-pane fade">
<h3>Space</h3>
<p>10pm - 12am</p>
</div>
<div id="menu2" class="tab-pane fade">
<h3>NO DJ</h3>
<p></p>
</div>
<div id="menu3" class="tab-pane fade">
<h3>hi</h3>
<p></p>
</div>
<div id="menu3" class="tab-pane fade">
<h3>ted</h3>
<p></p>
</div>
</div>
</div>
</body>
</html>[/CODE]
 
If you can't access it than how do you update or change it. If you have access to your domain setting than you should better change the hosting company.
 
Back
Top Bottom