I have a text block made whith sIFR and I want to indent the first line.

Look at this image to see what I want:

http://alltutorials.hi2.ro/testimonial.jpg

I want the word WOW to be after the big quotes.

I searched the sIFR documention I used text-indent but it seems it doesn't work.

Thank's for the help,

Andrei

Paste the link because, it does not work directly.

link|improve this question

77% accept rate
the image shows a 403 Forbidden error... – Alexander Gyoshev Nov 27 '09 at 18:06
Paste the url, I cant link to images directly on that server. – andreeib Nov 27 '09 at 18:19
feedback

3 Answers

up vote 1 down vote accepted

I'm not that familiar with sIFR, but maybe a simple padding-left will do the trick? If it is treated as an inline element, it should not be repeated in the next few lines.

link|improve this answer
Yes this will work whith CSS but sIFR it's flash based. – andreeib Nov 27 '09 at 20:52
I know, but it might still work. sIFR listens to low-level CSS quite well. – Pekka Nov 27 '09 at 21:15
Thank's I used text-indent and it worked. – andreeib Dec 4 '09 at 18:49
feedback

You can try styling it within sIFR, as Pekka said, something like this :

function sIFR_h1() 
{
  sIFR.replace(grau, {
  selector: 'h1, div.h1',
  css: 
      '.sIFR-root { letter-spacing:-1.66; font-size:42px; color: #36313d; [...]}'
    ,transparent: true	
	,selectable: false		
  });
}
link|improve this answer
feedback

Don't think you can do this through CSS, though perhaps you could use the modifyContentString() callback to insert a few spaces?

link|improve this answer
It worked using text-indent, but this will be usefull to. Thank's – andreeib Dec 4 '09 at 18:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.