Page adaptation
- The topic ‘Page adaptation’ is closed to new replies.
Need help? Check out our Support site, then
Hi !
I’ve got som questions about pages and how to adapt as I want :
– For every page, I would like to use the full width ok the page (from the left side of the logo to the right side of the search)
– For pages, is it possible to remove the large space under the navigation ? Or, at least, reduce it ?
I’m using the online WordPress so I can’t do modifications into the HTML.
Thanks a lot for your help.
The blog I need help with is: (visible only to logged in users)
Hello,
Thank you for using my theme.
“For every page, I would like to use the full width ok the page (from the left side of the logo to the right side of the search)”
– I am assuming you are talking about the single-page views content are ( example: http://leblender.fr/2015/10/23/emerger/ ), so if yes then you can do it by adding a custom css ( https://en.support.wordpress.com/custom-css/ ) :
.single .hentry-bottom .hentry-bottom-inner,
.single .hentry-inner,
.page .hentry-bottom .hentry-bottom-inner,
.page .hentry-inner {
max-width: 100%;
}
“For pages, is it possible to remove the large space under the navigation ? Or, at least, reduce it ?”
– Only by adding this custom css:
#single-featured-img-container .single-featured-img-inner {
padding: 60px 0 80px;
}
Thanks a lot for the tips !
You are welcome :)