Archived topic
Few questions
5 replies · Started by kiant123 on April 27, 2019
Hi,
I have a few issues i have come across when trying to customise generate press:
1. I am having a problem with the tagline where it is appearing above my logo rather than to the right side of it. Is there a way to move it to the side of the logo (so that it looks like the image i here https://www.dropbox.com/s/1ywkvkz457olu2u/Screenshot%202019-04-27%20at%2011.51.07.png?dl=0) ?
2. On my desktop i have a header which is light blue and a primary navigation underneath which is dark blue, however on mobile the header is picking up the dark blue colour of the primary navigation rather than the light blue of the header. How do i change this?
thanks
Hi there,
1. This might help: https://docs.generatepress.com/article/putting-site-title-next-logo/
2. Try this CSS:
#mobile-header {
background: #1c75bc;
}
Let me know :)
Hi,
The colour code worked great!
I put in the code for the tagline to go next to the logo and it worked however the tagline sits a bit too high and not in line like the image. Anyway to lower it slightly?
Thanks!
Hi there,
in the first part of the CSS that Tom provided ie:
.site-branding {
display: inline-block;
}
Make it this:
.site-branding {
display: inline-block;
margin-top: 1em;
}
Super!
Glad we could be of help