- This topic has 14 replies, 4 voices, and was last updated 4 years ago by
David.
-
AuthorPosts
-
March 11, 2019 at 10:17 am #835806
Santa
Hi!
1. How to add another logo file only to posts? Currently have made custom page header element to posts and would like to add different logo instead of default one that I have added in Primary navigation.
2. Is there also a way to change the footer background & text color only for homepage?
3. How to hide categories from post right sidebar?
Thank you.
GP Premium 1.7.8March 11, 2019 at 11:21 am #835853Leo
StaffCustomer SupportHi there,
1. Have you tried the Navigation Logo option in the header element you created?
https://docs.generatepress.com/article/header-element-overview/#site-header2. Try this CSS:
.home .site-info { color: #000; background-color: #fff; }
Adding CSS: https://docs.generatepress.com/article/adding-css/
3. Try this CSS:
.single .sidebar #categories-7 { display: none; }
Adding CSS: https://docs.generatepress.com/article/adding-css/
You can also consider using a plugin like this to set conditional sidebar:
https://wordpress.org/plugins/content-aware-sidebars/Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/March 11, 2019 at 10:35 pm #836202Santa
Hello Leo!
Thank you for your help! Everything now is working just as I wanted.
Thanks!
March 12, 2019 at 5:50 am #836500Leo
StaffCustomer SupportNo problem ๐
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/March 12, 2019 at 6:48 am #836571Santa
Could you answer, if there is a way to choose an area of featured photo that is displayed in post header element?
March 12, 2019 at 2:11 pm #837087Tom
Lead DeveloperLead DeveloperHi there,
What do you mean by an area? Like a specific portion of the image to show up?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentMarch 12, 2019 at 10:25 pm #837299Santa
Hi!
Yes, a specific portion of the photo to display in the header element, because the actual photo most of the times is a larger size.
March 12, 2019 at 10:28 pm #837303Santa
Maybe someone can also suggest how to change where the post title is located when going in blog and then choosing category- because it now is in the middle below the image with a large padding on the left side.
March 13, 2019 at 8:42 am #837875Tom
Lead DeveloperLead DeveloperThe “Background Position” option allows you to specify which portion of the image to show.
The position of the content inside the hero element is determined by the padding. For example, if you add lots of left padding, the content will be pushed to the right.
Let me know if you need more info ๐
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentMarch 13, 2019 at 10:19 am #837987Santa
Hi! Thanks, found the post header options.
But how to regulate the title padding for the blog categories page? For example categories/category1 and there are all the posts, but for me the titles for the posts are way too to the right.
March 13, 2019 at 1:23 pm #838131David
StaffCustomer SupportHi there,
you have 60px of left padding on the Customizer > Layout > Container. You can reduce this to correct that issue. Don’t worry it will still be there for your single posts as we included that in the CSS for the sticky social icons.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/March 15, 2019 at 12:42 am #839444Santa
Thank you for the help!
Is there a way to add left padding to footer widgets only on computers, to align them in one line with only the home page content?
March 15, 2019 at 4:39 am #839585David
StaffCustomer SupportYou can adjust the Customizer > Layout > Footer > Footer Padding – currently you have 100px left padding which can be reduced to align with the content.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/March 15, 2019 at 5:54 am #839681Santa
Hi David!
Thanks, but I wanted to do something different.
I wanted to change footer widget padding for home page only. I am okey with the footer padding, as the icons are in line with page content and I would like to have the footer widgets the same, but only in homepage, as in other pages the padding I have now is okey.March 15, 2019 at 6:06 am #839690David
StaffCustomer SupportAah ok – try this:
@media (min-width: 769px) { .home .footer-widgets-container { max-width: 1120px; } }
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/ -
AuthorPosts
- You must be logged in to reply to this topic.