Archived topic
Questions concerning Marketer
5 replies · Started by Former User on December 11, 2018
Hi there,
Could you please help me with the following questions? I am using Marketer from the Site Library.
1. How can I place the tagline under the logo? By following the instructions on https://generatepress.com/forums/topic/moving-site-tagline-below-logo/#post-51054 I managed to place the tagline under the header but not directly under the logo.
2. How can I remove the "Powered by GeneratePress" at the bottom of my website? The instructions on https://generatepress.com/forums/topic/disable-copyright-footer/ are not working for me.
3. How can I change the color and text format of the widget in the right side bar? And is there a way to set this to ‘full’ instead of ‘contained’ just like you can do with the header and primary navigation?
4. Is there a way to remove the website box that visitors can fill in when leaving a comment?
Thanks!
Martijn
Hi there,
1. The best solution (for the responsive purpose) we usually recommend is to add the tagline to the logo image. Or try this CSS:
.inside-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.site-logo {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.site-branding {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
2. What about this? https://docs.generatepress.com/article/changing-the-copyright-message/
3. Have you tried the customizer options? Or you are trying to change something specific and not globally?
https://docs.generatepress.com/article/typography-overview/
https://docs.generatepress.com/article/colors-overview/
https://docs.generatepress.com/article/widget-padding/
4. This should help: https://docs.generatepress.com/article/remove-e-mail-and-url-field-from-comment-form/
Hi Leo,
Thanks for your help! For the desktop version, I have been able to get the tagline underneath the logo. However, on the mobile version the tagline is shown above the logo. Could you please let me know how to fix this? For SEO purposes I would prefer to have the tagline seperate from the logo instead of combined in a picture.
Martijn
Looks like you've wrapped my CSS above with media query @media (min-width: 769px) { which makes it desktop only.
Can you try removing that?
That works! Thank you.
No problem :)