Hey everyone, I have navbar from boostrap, I am trying to get the flags to append to the bottom/hang from the bottom of the nav on right side. Link to the site. The flags are just basic but i need to set the css style to "hang" from the navbar under the contact us section. Is there any way of doing this?

Thanks

Here is what i have tried so far jsfiddle

Here is what i have tried so far jsfiddle

got it resolved:

<div class="socialfb">
    <a href="#" target="_blank"><img id="fbimg" src="./img/icons/facebook.png"></a>
</div>
<div class="socialtw">
    <a href="#" target="_blank"><img id="twimg" src="./img/icons/twitter.png"></a>
</div>

 .socialfb {
    top:51px;
    right:100px;
    height:30;
    width:30;
    background-repeat:no-repeat;
    position:fixed;
    z-index: -1;
}
.socialtw {
    top:51px;
    right:50px;
    height:30;
    width:30;
    background-repeat:no-repeat;
    position:fixed;
    z-index: -1;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.