Remove "bar/line" on home page of Anemone
-
So there is a little bar or line on the left side of my home page and I’m not sure how to remove it. I was told there is a way to remove it through a CSS code. Any ideas? Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, to remove that line, add the following to your custom CSS.
.home .hentry.page .entry-header::after { background: none; } -
-
So now that I removed that line, the content on my page starts a little too low. Is there a way to move the content of my page up to where that line used to be?
-
-
Hi there,
I don’t see the content on your site yet, so maybe you’re referring to the line that says “It seems we can’t find what you’re looking for. Perhaps searching can help.” If you want to move this upwards, then you can try this CSS:.sidebar-right .content-area {
margin-right: 0;
margin-left: 90px;
padding-top: initial;
} -
Ok i just made my site public. Can you see the content now?
I wasn’t talking about the sidebar on the right. I was referring to the middle of the page which I hope you can see now.
What’s the code for that part?
Thanks for your help
-
Give this a try, which will bring the content up to align with the top of the slideshow in the sidebar. The div for the page title is still there, even though you did not actually use a title for the page, so the following hides that page title div on the main page.
.home .entry-header { display: none; } -
-
- The topic ‘Remove "bar/line" on home page of Anemone’ is closed to new replies.