Delete Navbar

Hi,
I am using a third party plugin called shorthand (storytelling), to display on my website.
This plugin works a bit like a blog post and it’s working fine.

But I still have my Navbar displayed in those story pages, and I would like to know how can I take it out?
Also, there is a gap between the first row and the navbar (i think is the default 45px) but because I can use the editor on this pages, I cant take the navbar or delete the gap.

Can you help?

Thank you

Hi @PanInternational,

Thanks for writing in.

Use this code in your Theme Options > Custom CSS to remove the gap and header in your short story template:

.shorthand_story-template-default header{
    display:none;
}

.shorthand_story-template-default  .Theme-HeaderContainer{
    display:none;
}

.shorthand_story-template-default .Theme-Story{
    top: 0px;
}

Let us know how it goes.

Thanks.

Hi,

It did part of the job. It took the navbar out, which is good but I still have a gap.

Any other solution?

Thank you

Hi @PanInternational,

I have added !Important so that it would work. Please let us know how it goes.

Thanks.

Sorry for the late reply, but it worked! :slight_smile:

Thank you