<div dir="ltr">I want to have a background image and then position text using page variables. Is this possible with PMWiki? Here is what I am doing with html and I am not sure it is possible with PMWiki:<br><br><!DOCTYPE html><br>
<html><br><head><br><style><br>plant<br>{<br>position:absolute;<br>left:0px;<br>top:0px;<br>background-color:transparent;<br>color:red;<br>}<br>plant:hover<br>{<br>
background-color:white;<br>color:red;<br>}<br></style><br></head><br><br><body><br><p>Example text goes here. A box is drawn below with the numbers 1 and 2 placed over the background image.</p><br>

<br><div style="background-image:url(<a href="http://www.tizag.com/pics/htmlT/background.jpg%29;padding:0px;width:150px;height:200px;border:1px" target="_blank">http://www.tizag.com/pics/htmlT/background.jpg);padding:0px;width:150px;height:200px;border:1px</a> solid black;"><br>

<p><br><plant style="position:relative; left:-2px; top:-20px">1</plant><br><plant style="position:relative; left:132px; top:165px">2</plant></p><br></div><br>
</body><br>
<br></html><br><br><br></div>