OK, it was my mistake – already placing donkey ears on my head. ??
And your reply was very helpful, the sentence “That CSS should work”, coming from the theme author was enough to turn me towards finding out what I did wrong, not looking for other solutions. Thank you. ??
The apostrophe signs I copy-pasted were not the correct ASCII characters. I had used these: ‘
Instead of these: ‘
OK – with the forum font, they look exactly the same, but a copy/paste to a different text editor shows the difference.
I case anyone else has a similar problem, the final working solution (viewed source code of the theme that allows in-theme background image setting and positioning) is the following, Additional CSS within GeneratePress appearance settings:
body {
background-image: url( ‘https://www.example.com/wp-content/uploads/2018/10/background_image.jpg’ );
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
First line gives the image address, while the rest is formatting. This setup is a fixed background with no background image scrolling with text scroll.
Fixed the website logo icon to stay in-line with the website name, not below it, again, using Additional CSS:
.site-branding{
display: inline-grid;
}
.site-logo{
float: left;
margin-right: 20px;
}
-
This reply was modified 6 years ago by Relja. Reason: marked as resolved - thanks! :)
-
This reply was modified 6 years ago by Relja.