Tagged: x
-
AuthorPosts
-
November 25, 2016 at 6:25 am #1270442
I can’t seem to find a way to disable the post title in single entries.
Here’s an example: https://momenta.es/?p=76
I can’t hide the “Alejandra” header.
I’ve tried the following codes in customizer:
.x-header-landmark { display: none; }
.x-header-landmark { display: none; }
.x-header-landmark { display: none; }
.x-header-landmark { display: none; }
Any help on this?
November 25, 2016 at 6:48 am #1270461Hi,
You can try this instead.
.single-post .entry-header { display:none; }
Hope that helps
November 25, 2016 at 8:54 am #1270589Nice! It seemed to work I forgot to put a “}” and after the last code I entered and after that it worked.
Just a question, how can I reduce the spacing between the menus and the content in posts? I already deleted the padding and margin in the section, column and row, but it’s still bigger that other pages.
Any advice?
Thank you!
November 25, 2016 at 9:11 am #1270621Hi There,
Please add
.single .hentry .entry-wrap { padding: 0; }
Thanks
Joao
November 25, 2016 at 10:18 am #1270673Solved.
Thanks!
November 25, 2016 at 10:20 am #1270676Glad we were able to help 🙂
November 25, 2016 at 11:48 am #1270746Hey! I got another question for you 😀
1. Is there a way to reduce it a little bit more?
2. Is there a way to reduce it too also in pages? Not only in posts.THANKS <3
November 25, 2016 at 11:50 am #1270748Hi There,
Please add the following code instead:
.entry-content { margin-top: 1%; } .entry-wrap { padding: 0; }
Thanks
Joao
November 25, 2016 at 11:54 am #1270749Hi there,
Please add this code:
.page .hentry .entry-wrap:last-child { padding-top: 20px; } .single-post .entry-content { margin-top: 20px; }
Hope this helps.
December 1, 2016 at 9:52 am #1277534Is there a way to make any of this changes only visible in the mobile view?
Thanks a lot, the code in the last post was the one which worked out!
December 1, 2016 at 10:23 am #1277575Hi there,
If you want to apply the code for mobile you can place them within media query like this :
@media only screen and (max-width: 767px) { .page .hentry .entry-wrap:last-child { padding-top: 20px; } .single-post .entry-content { margin-top: 20px; } }
Hope this helps.
-
AuthorPosts