-
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moving text to border of screen #710
Comments
All of my slides are pretty customized, I use margins to move images around and position absolute when necessary. Not sure why yours isn't working, do you have class name specified and a height/width & top/left declared? Post a link of the problem maybe.
/* PAGE 4*/ #p4-img2 { #p4-img3 {
/* ---------------------------------- */ |
Thank you for your proposal, but I don't see how that solves my problem... I understand you can move the text around but my problem is to stick that black text background on the border of the screen (whatever the screen resolution is). All I can do right now is to move towards the bottom (how much depends on the resolution of the screen) |
I have my Nav setup to be fixed on every page which works perfect for me. Just add a position:fixed; bottom:0; left:0; and center your text within that
|
I think my problem is that my element is inside the |
Right, if you have content inside of a slide Fixed elements like a copyright notice you should be placed outside of the |
I'm struggling with this issue as well. I need to place some dynamic content in the header of my slides, so I can't put the element outside the section. I tried setting width and height of the presentation to 100% as suggested above and I set my header element to position:fixed; top: 0px; but the section element is still not filling the viewport. Here's a demo: https://dl.dropboxusercontent.com/u/706446/_linked%20stuff/reveal.js/index.html |
My solution #180 (comment) |
I am trying to devise CSS properties to move content to the border of the screen. Two use cases are :
I have tried
position:absolute
but this just moves the content inside the<section>
which does not fill the screen.Is that possible with the current HTML design of the page ? If so, could anybody point me in the right direction ? If not, would you please consider doing the necessary changes ?
The text was updated successfully, but these errors were encountered: