What is the term for the top bar? Sugarcane Twine 1.4.2

What's the term for the top bar so I can get rid of it. I thought it would be as simple as #topbar or #top-bar but apparently that was wishful thinking. It's just a giant block at the top that I can't get rid of from the default interface.

Comments

  • If you mean the 4em margin-top on the body element then you can remove it like so:
    body {
    	margin-top: 0;
    }
    
    ... there is also a 4em margin-bottom on the same element.
  • edited February 2017
    Okay, it is margin top. Okay then now my question is. How do I fill the black (view image) with the background so I can keep my text box where it is?
    http://imgur.com/a/fopoa

    I probably won't see the response till the morning, but thank you for all the help tonight greyelf.
  • Okay, it is margin top. Okay then now my question is. How do I fill the black (view image) with the background so I can keep my text box where it is?
    http://imgur.com/a/fopoa

    I probably won't see the response till the morning, but thank you for all the help tonight greyelf.

    Try
    body {
        margin-top: 0;
        padding-top: 4em;
    }
    
  • Perfect, thanks so much. Need to get this project done ASAP so I can get back to work on my portfolio.