Can u please help me ?

Im new here, how to remove this "orange space" between contents How to remove that orange space

image; http://imgur.com/a/U8ibp

It seems very standard for CSS debug coloring for the following propertyies

  • padding is represented by green color
  • margin is represented by orange color

So in the BSS app, the element you have your mouse hovering on in the HTML pane when that orange bar comes up is the element you need to modify in your custom CSS code.

I'd venture to say it's the navbar element so try adding this CSS to your custom CSS file.

.navbar {
  margin-bottom:0;
}

Saj