Help with Website

Status
This thread has been locked.

tiehm

Developer
Supreme
Feedback score
7
Posts
698
Reactions
455
Resources
0
Do you have jQuery installed? And it has to be col-md-4.
 

tiehm

Developer
Supreme
Feedback score
7
Posts
698
Reactions
455
Resources
0
I don't have a col-md-4 class so it can't be that.
No I don't have Jquery installed
I meant that you need to change col-md-3 to col-md-4 first. And you need jQuery for bootstrap. No jQuery = No Bootstrap.
 

Kuchy

Web Developing Cake
Support
Feedback score
14
Posts
662
Reactions
504
Resources
2
I meant that you need to change col-md-3 to col-md-4 first. And you need jQuery for bootstrap. No jQuery = No Bootstrap.
Ah, lol k just a sec[DOUBLEPOST=1466444893][/DOUBLEPOST]
I meant that you need to change col-md-3 to col-md-4 first. And you need jQuery for bootstrap. No jQuery = No Bootstrap.
My Main problem is just getting the icon/buttons on the same level. display: inline-block isn't working for some reason
 

Guusz

Full-Stack Web Developer
Premium
Feedback score
0
Posts
249
Reactions
138
Resources
0
try and use an unordered list with class 'list-inline' and put m all in a li (requires bootstrap)
 

TheLightDev

User Interface Designer
Supreme
Feedback score
4
Posts
326
Reactions
182
Resources
2
Kuchy hope this helps.
HTML:
.col-md-4 {
    display: inline-block;
    margin: 20px;
}

ul {
    text-align: center;
}

^^ CSS NEEDED TO BE ADDED
HTML:
<nav id="nav">
<div class="container">
<div class="row">
  <ul>
<li class="col-md-4" id="forum-link"><a href="http://novalmc.enjin.com/home"><span>Home</span></a></li>
<li class="col-md-4" id="vote-link"><a href="http://novalmc.enjin.com/Forum"><span>Forums</span></a></li>
<li class="col-md-4" id="shop-link"><a href="http://novalegionmc.buycraft.net/"><span>Shop</span></a></li>
    </ul>
</div>
</div>
</nav>

^^ HTML NEEDED TO CHANGE!

JQUERY IS NOT REQUIRED, JQUERY IS FOR THE RESPONSIVE SIDE OF BOOTSTRAP.

Kind Regards // TheLightDev
 
Status
This thread has been locked.
Top