- This topic has 11 replies, 2 voices, and was last updated 7 years ago by
Tom.
-
AuthorPosts
-
July 30, 2015 at 2:35 am #124803
Marko
Hi Tom. How can a space at the top and bottom of the template added?
thx
MarkoJuly 30, 2015 at 7:56 am #124884Tom
Lead DeveloperLead DeveloperOf the entire site?
.site-header { margin-top: 30px; } .site-footer { margin-bottom: 30px; }
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentJuly 31, 2015 at 12:01 am #125090Marko
Hi Tom. Could you please take a look http://dev.webseite-online.de because there is now a shadow in the new space at the top and bottom.
This are my current css code for the shadow.
.full-container {
box-shadow: 0 10px 10px #555;
}The shadow should now be begin after the top space and end before the bottom space.
Thx for your great support.
Marko
July 31, 2015 at 12:35 am #125092Tom
Lead DeveloperLead DeveloperAh, in that case you want to do this:
.full-container { margin-top: 30px; margin-bottom: 30px; }
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentJuly 31, 2015 at 9:07 pm #125429Marko
Hi Tom. There is now at the bottom after the site info a class which should be not displayed. Is it be poosible?
Thank you
Marko
August 1, 2015 at 12:47 am #125451Tom
Lead DeveloperLead DeveloperCan you show me what you have in the
wp_footer
hook? Be sure to highlight the code and click the “code” button above in the editor.Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentAugust 1, 2015 at 8:58 pm #125638Marko
Hi Tom. This is the code of the wp_footer.
<div class="full-container grid-container grid-parent">
August 1, 2015 at 11:57 pm #125648Tom
Lead DeveloperLead DeveloperTake that out and add:
</div>
That should fix it.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentAugust 2, 2015 at 11:26 pm #125875Marko
Hi Tom. Hm not really.
This is my wp_head:
<div class="full-container grid-container grid-parent">
and this is now the wp_footer:<div class="full-container grid-container grid-parent"></div>
When i set the div end tag also in the wp_head. The display error at the bottom are solved, but the shadow doesn’t be display.
This are the current css setting for the shadow.
.full-container {
box-shadow: 0px 10px 10px #555;
}Do you know to solve it?
thx
MarkoAugust 2, 2015 at 11:30 pm #125876Tom
Lead DeveloperLead DeveloperThis should be in wp_head:
<div class="full-container grid-container grid-parent">
And this should be in wp_footer:
</div>
The idea is that you’re starting the container before any content, and then ending it after all of the content.
Let me know if that does the trick or not ๐
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentAugust 3, 2015 at 12:32 am #125883Marko
Thanks a lot Tom. It works now fine. Solved.
August 3, 2015 at 9:40 am #125994Tom
Lead DeveloperLead DeveloperAwesome! ๐
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development -
AuthorPosts
- You must be logged in to reply to this topic.