Page 1 of 1

background picture tinymc

Posted: Tue Nov 15, 2011 6:37 pm
by jjjmedia
Is there anybody who knows if I can place a picture behind text in tinymc?

Re: background picture tinymc

Posted: Tue Nov 15, 2011 9:19 pm
by Wishbone
You can wrap your text in a DIV, then style the DIV with CSS.

Re: background picture tinymc

Posted: Thu Nov 17, 2011 3:42 pm
by spike
as Wishbone says - your tag could look something like this:

<div style="background-image: url(uploads/images/backgroundpic.jpg); background-repeat: no-repeat;">
<h1>any kind of headline</h1>
<p>lots of text, content and stuff</p>
</div>

N.B. add the tag in html code mode, If it's just a one off, you don't really need to add the styles to the stylesheet.

you may need to add other parameters like width, height etc. or whatever, just plain old basic html.

gruss - spike