Is it possible to use margin:right in openlp

Hello

I would like to create an appointment slide in Openlp where the days of the week are all right flush, like this

     monday:           appointment 1

     tuesday             appointment 2

wednesday            appointment 3

etc.

It's very complicated with margin:left and margin:right doesn't seem to work, or am I just doing it wrong?

Here is my formatting tag code:

<span style="position:absolute; margin-right: -200px; margin-top: 40px; font-weight: normal;">

If margin:right doesn't work, would you have another solution suggestion for me

I use Openlp 3.0 Beta 2

Comments

  • Margins are just spaces around a block. You need to understand some basic HTML and CSS. For instance, you'd need to use a div rather than a span, because a div is a block (like a paragraph) whereas a span is inline (like a word).

    A good site to learn the basics is HTMLdog. Funny name, but a really good resource.

Sign In or Register to comment.