How can I create independent scrolling posts from the background?
-
I came across a blog that is the way I want to design my blog.
https://neurofanatic.wordpress.com/I selected the Theme called “Parament” but it the background still scrolls up with the posts. How can I change to be line the above example?
Regards,
JohnThe blog I need help with is: (visible only to logged in users)
-
Showing the background image only once is specified by the background-repeat property. The CSS looks something like this:
body
{
background-image:url('exampleimg.png');
background-repeat:no-repeat;
}
- The topic ‘How can I create independent scrolling posts from the background?’ is closed to new replies.