The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Home › Forums › CSS › [Solved] noob question(wordpress content, z-index)
hi guys! total noob here
i want the text to be on the image http://goo.gl/JptQwZ
like on here http://force4.dk/#projects
so i tried margin: -20px and it moves up, but it stays behind the image. i tried z-index, but doesn’t work…
any idea on how to move it up, so it’s on the image?
thx in advance!!
Try adding this to your CSS:
.portfolio-item { position:relative; } .portfolio-item .page-context { position: absolute; bottom: 35px; left: 15px; }
oh snap! thx!!