Hi @jefferssons.
The parallax has position absolute, and ‘floats in front of the text’ meaning it takes up no space on the page. If you want the sidebar to be positioned below the parallax image, you’ll have to give the sidebar on that page some margin between the two. If you show me the actual page, I can probably show you some CSS to fix it.
Ok my friend see http://bit.ly/parallax-wp =). thx.
Ok. So this is not really the fault of the plugin, as it doesn’t account for sidebar, the sidebar will just display over the parallax section (since it doesn’t actually take up vertical space.
So my solution isn’t solving an issue with the plugin, as it’s behaving as expected, but my solution is a friendly helper to make your page work…
To push down your sidebar, you could add this to your CSS. This will only bump down the sidebar on this specific page:
.postid-298 aside#recent-posts-2 {
margin-top: 900px;
}
This is a little bit of a brute force solution, and you’ll have to probably tweak for mobile.
like this:
@media (max-width:1000px){
.postid-298 aside#recent-posts-2 {
margin-top: 0;}
}
-
This reply was modified 8 years, 11 months ago by
thehowarde.
Hello, it helped a lot. I just made a change. Now it’s like putting in the general css without affecting the position of posts that will not have parallax? I thank you!
I’ll test on mobile to see if it’s working, too.
Ok… no problem. I’m marking as resolved. Feel free to leave a review of the plugin if you like it.
Thanks.