Möchte ich in WordPress eine Textbox in einem Artikel erstellen, so geht das am einfachsten mittels HTML durch Erzeugung eines DIV Containers.
<div style="border-radius: 15px; -webkit-border-radius: 15px; -moz-border-radius: 15px; width: 95%; float: center; background-color: #c2c2d6; margin-left: 0; padding: 10px; text-align: center; ">Inhalt der Textbox</div>
Inhalt der Textbox
<div style="border: 1px solid red; padding: 5px; margin: 5px;">This is some text enclosed in a red box.</div>
This is some text enclosed in a red box.