views:

25

answers:

1

I am using cforms plugin on a wordpress page.

Unfortunately "required" in Russian seems to be two words according to the translation office.

In Firefox it looks ok, in Safari it breaks to the bottom left of that line.

span.reqtxt,
span.emailreqtxt { 
 margin:2px 0 0 3px;
 font-size:0.9em;
  font-weight:bold;
  color:#0d5f99;
 display: -moz-inline-box; 
 vertical-align:top;
}

alt text

How to fix this? Thank you!

+1  A: 

Safari of course won't recognize "display: -moz-inline-box;". Both Firefox and Safari will accept "display: inline-box;" without a vendor prefix. That should fix it.

Daniel