Linking Pages in Bootstrap

n4te

zzz
Oct 27, 2014
669
293
Hi. I know this may seem like a stupid question, but how would I go about linking pages in a bootstrap theme?

<li>
<a href="#">Rank Upgrades</a>
</li>
<li>
<a href="#">Badges</a>
</li>
<li>
<a href="#">Currency</a>
</li>
<li>
<a href="#">Custom Items</a>
</li>
 

Proximity

IDK?
Feb 13, 2014
673
56
Hi. I know this may seem like a stupid question, but how would I go about linking pages in a bootstrap theme?

<li>
<a href="#">Rank Upgrades</a>
</li>
<li>
<a href="#">Badges</a>
</li>
<li>
<a href="#">Currency</a>
</li>
<li>
<a href="#">Custom Items</a>
</li>

What do you mean link a page?

Like have it go to that php?

<li>
<a href="rank.php">Rank Upgrades</a>
</li>
<li>
<a href=" ">Badges</a>
</li>
<li>
<a href="currency">Currency</a>
</li>
<li>
<a href="custom.html">Custom Items</a>
</li>

Like that..
 

n4te

zzz
Oct 27, 2014
669
293
What do you mean link a page?

Like have it go to that php?

<li>
<a href="rank.php">Rank Upgrades</a>
</li>
<li>
<a href=" ">Badges</a>
</li>
<li>
<a href="currency">Currency</a>
</li>
<li>
<a href="custom.html">Custom Items</a>
</li>

Like that..
Thanks man. Don't know why I couldn't figure that out myself.
 

Users who are viewing this thread

Top