I have a JSFiddle with the code for the footer for my website. There are three containers. I need to remove the spaces between those containers. How can I do this?

Recommended Answers

All 5 Replies

u need to find and edit in bootstrap-combined.min.css find the

div{}

or u can specify by ur self, but should give a id or class for ur div and add this

div{
    margin-bottom:-10px;
}

Okay. Thanks. I'll try this. But can you please specify which DIV exactly should I use?

add this in ur css file,

div .span4{
    margin-bottom:-10px;
}

the .span4 is ur div class name, to avoid clash, dont use span4 as class name for other div

Okay. I did this. But it didn't work. I've changed "bottom" to "right" and instead of 10px, I did 20 px. And it worked. Thank you very much! I'm new to this, so thanks!

mark as solved if solved ya.

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.