float:left should do the trick
EDIT: You can put all your text in another div that is float:left make sure to set the width properly though
jmein
2009-10-21 11:46:11
float:left should do the trick
EDIT: You can put all your text in another div that is float:left make sure to set the width properly though
For your outer div
, try text-align:left;
and for your inner div
, try possibly float:left;
.
Others will post nicer, cleaner answers, but this will get you started.