Dear @Grisid
can you post a link to your website?
Best!
Marius
PS: Probably you need to create 4 HTML boxes. each one gets a own class like, top, bottom, left, right… Then you place them with position: fixed.
Dear @Grisid
basically:
Button
a div with the class called button
Popup
a div with the class called popup
CSS
.popup {
display: none;
}
.popup.active {
display: block !important;
}
Javascript
jQuery(document).on("click", ".button", function(event) {
jQuery('.popup').toggleClass('active');
});
I did not test it, but that is the way to go!
Best!
Marius
I don't see my image as a background image, I see them as the size I put, like little image.
I want to achive just like this website:
http://nadinegoepfert.com/press
images as background image with texts in the bottom left.
How to add the project title or description on the bottom left? I tried some css without exit.
Dear @Grisid
you are using the fullscreen slider.
Sou you best have a text-element which you give a CUSTOM CLASS. Then in CUSTOM CSS you tell this element to be fixed.
I hope that works!
Best!
Marius